I'm driving a relay via a FET with protection diode from Pico which energises when I run save() from the IDE or from power-on. Not what I want or expected
// main sort of ..
pinMode(B15,'output');
digitalWrite(B15,0);
I get an odd voltage about 2.43v from B15
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
What does repeat: true do? repeat after debounce has expired?
I'm driving a relay via a FET with protection diode from Pico which energises when I run save() from the IDE or from power-on. Not what I want or expected
To fix it I add pinMode def to
What am I missing?