Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/utility/Provisioning_2.0/Provisioning_2.0.ino
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void setup() {
OptaFactoryTest.begin();
OptaFactoryTest.optaIDTest();
uint32_t start = millis();
while(millis() - start < 2000){
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this literal value can become a constant

while(millis() - start < 500){
if(OptaFactoryTest.poll() == true){
pinMode(LEDG, OUTPUT);
ResetInput::getInstance().begin();
Expand Down
Loading