Just tried that, didn't seem to make much difference...It toggled a bit smoother though.
My guess is somehow the program is causing the EEPROM value to switch at startup or shutdown. No clue how though.
Thank you,
Matt
Just tried that, didn't seem to make much difference...It toggled a bit smoother though.
My guess is somehow the program is causing the EEPROM value to switch at startup or shutdown. No clue how though.
Thank you,
Matt
Have you tried switching this;
To this;Code:SWITCH: IF setting=1 THEN 'if setting is 1, write 2 to EEPROM WRITE 1,%00000010 ENDIF IF setting=2 THEN 'if setting is 2, write 1 to EEPROM WRITE 1,%00000001 ENDIF
Code:SWITCH: IF setting=1 THEN 'if setting is 1, write 1 to EEPROM WRITE 1,%00000001 ENDIF IF setting=2 THEN 'if setting is 2, write 2 to EEPROM WRITE 1,%00000010 ENDIF
Bookmarks