File size: 263 Bytes
a2a15a2 |
1 2 3 4 5 6 7 8 9 10 |
10 REM "Dimmer from Arduino examples"
20 REL "L is the LED pin"
30 L=9
100 REM "setup() put your setup code here, to run once:"
110 PINM L, 1
200 REM "loop() put your main code here, to run repeatedly:"
210 FOR I
220 IF AVAIL(1) THEN GET B : AWRITE L, B
230 NEXT
|