hi guys
well started with controllers for the first time , seem to be having a issues with connection and receiving the following error..
symbol LED = C.0 ' LED on output C.0 (pin 7)
^
Error: Unknown symbol - C.0
i am using a picaxe 08m2 and the following program
' =============== HelloWorld.bas ===============
' This program runs on a PICAXE-08M2.
' It blinks an LED to say "Hello World!
' === Constants ===
symbol abit = 500 ' used to adjust blink rate
symbol LED = C.0 ' LED on output C.0 (pin 7)
' === Directives ===
#com95 ' specify serial port
#picaxe 08M2 ' specify processor
' ============= Begin Main Program =============
do
high LED ' LED on
pause abit ' slow it down
low LED ' LED off
pause abit ' slow it down
loop
cheers
spark 8217
well started with controllers for the first time , seem to be having a issues with connection and receiving the following error..
symbol LED = C.0 ' LED on output C.0 (pin 7)
^
Error: Unknown symbol - C.0
i am using a picaxe 08m2 and the following program
' =============== HelloWorld.bas ===============
' This program runs on a PICAXE-08M2.
' It blinks an LED to say "Hello World!
' === Constants ===
symbol abit = 500 ' used to adjust blink rate
symbol LED = C.0 ' LED on output C.0 (pin 7)
' === Directives ===
#com95 ' specify serial port
#picaxe 08M2 ' specify processor
' ============= Begin Main Program =============
do
high LED ' LED on
pause abit ' slow it down
low LED ' LED off
pause abit ' slow it down
loop
cheers
spark 8217