why no pin0 on 08M?

viza

New Member
Hi all,

If "high 1" is equivalent to "let pin1=1", and "high 0" is allowed on the 08M part (pin 0 can be used as output) then why is is "pin0" undefined on this part?

If my premises are wrong please let me know, otherwise I think this might be a bug of omission in the program editor.

TIA
viza
 

Technical

Technical Support
Staff member
'high 1' is equivalent to 'let outpin1 = 1'

'pin0' is not a name of a pin, it is the name of a bit variable - a variable containing the value 0 or 1 depending on whether input 0 is high or low.

There is no input 0 on the 08, so no variable 'pin0' either
 
Top