Has anyone else seen this problem?
int h = 0;
void loop(){
genieWriteObject(GENIE_OBJ_LED_DIGITS, 0X07, h);
delay(1000);
h = h+1;
}
The digits are set to 8 characters long but counts 111 at a time.
00000000 +1 = 00000111
tried long, short, float, double
even tried hex and binary
int h = 0;
void loop(){
genieWriteObject(GENIE_OBJ_LED_DIGITS, 0X07, h);
delay(1000);
h = h+1;
}
The digits are set to 8 characters long but counts 111 at a time.
00000000 +1 = 00000111
tried long, short, float, double
even tried hex and binary
Comment