adc and symbols

jinx

Senior Member
hi,
Am forgetting something here but when a use symbol the picaxe aint returning a value to debug window,

code that work:
Code:
#picaxe28x2
#NO_data
#NO_table


symbol analogvalue = a.0

do
readadc a.0,b1
debug 
loop
code that doesn't
Code:
#picaxe28x2
#NO_data
#NO_table


symbol analogvalue = a.0

do
readadc analogvalue,b1
debug 
loop
 
Top