fix group to less 1

master
IoTcat 5 years ago
parent ac7cd0309a
commit 6900a75996
  1. 2
      digital-screen.h

@ -89,7 +89,7 @@ public:
void core(){
setInterval([&](){
this->digital_show(this->_cnt % this->_group);
this->digital_show(this->_cnt % (this->_group + 1));
this->_cnt++;
}, INTERVAL_TIME);
}

Loading…
Cancel
Save