fixed Example 3

This commit is contained in:
JP
2014-02-07 14:15:49 +11:00
parent 8c12a660e6
commit 684a5dc5c8

View File

@@ -62,7 +62,7 @@ void setup() {
}
void loop() {
for(int i=0; i&lt=100;i++) {
for(int i=0; i<=100;i++) {
widget->setValue(i); // give a value to widget
uView.display(); // display current page buffer
}