Skip to content

Commit

Permalink
Merge pull request #13 from particle-iot:feature/new-message
Browse files Browse the repository at this point in the history
Implement new message
  • Loading branch information
laupow committed Jun 16, 2023
2 parents a4739c9 + 4675e49 commit 8539873
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions product-firmware/src/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,17 @@ void setup() {
}

void loop() {
tm1637.point(POINT_ON);

tm1637.display(0, 12);
delay(200);
tm1637.display(1, 1);
delay(200);
tm1637.display(2, 12);
delay(200);
tm1637.display(3, 13);

delay(3000);
tm1637.clearDisplay();
delay(1000);
}

0 comments on commit 8539873

Please sign in to comment.