Picaxe simulation window

johnrelph

New Member
picaxe.jpg
what do the YELLOW connections mean on the simulation, I believe green is source, dark grey is sink and light grey is input is this correct ?.
edit
it would seem that if you change a high output to an input it turns yellow but why ? !!
 
Last edited:

lbenson

Senior Member
Yellow means an input pin is high (for instance, it's an input and you have clicked it). If you single step through your program in simulation, you will see exactly which commands do what to each pin.
 

hippy

Technical Support
Staff member
Simulating a PICAXE 14M may make it clearer, because that has inputs on the left, outputs on the right -

Light Grey : Input Low
Yellow : Input High

Dark Grey : Output Low
Green : Output High

Code:
#Picaxe 14M
Do
  Toggle 0
  outpin1 = pin4
  outpin2 = pin3
  outpin3 = pin2
  outpin4 = pin1
  outpin5 = pin0
Loop
 
Top