enable the reader
How can i enable the reader? The reader enters its active state when the Enable pin is pulled low. would this work?
CPU.writePin(CPU.pins[noparse][[/noparse]0],false);
Thanks
CPU.writePin(CPU.pins[noparse][[/noparse]0],false);
Thanks
Comments
You can also use
CPU.writePin(CPU.pin0,false);
which takes less code because CPU.pin0 is a constant
regards peter
·