-
• #2
Hi! Since you're using a Puck, the pin names are a bit different (starting with
D...
and notAx/Bx/etc
) but yes what you're suggesting is fine apart from that.I'd say just connect a button between maybe pin
D1
and the3v
pin (this means you don't needdigitalWrite(A6, 1);
/similar because the pin is already at a voltage).Then it's just:
pinMode(D1, 'input_pulldown'); setWatch(function(e) { controls.playpause(); // or whatever else you want to do }, D1, { repeat: true, edge: 'rising', debounce: 50 }); // your other HID code here...
-
• #3
Wow Gordon, thank you so much! I bought you a coffee with the donate button. Much appreciated.
-
• #4
Thank you! Did it work ok?
-
• #5
Perfectly! Thank you so much!!! 🙏
Hello Gordon,
I have successfully set up the puck.js to control Music player via BLE as your cool project available at
https://www.espruino.com/BLE+Music+Control
I would like to now do the same thing with an external button attached to the puck.
In another forum post, you said this was possible using the methods here:
http://www.espruino.com/Button
I see that I can connect the external switch between to io buttons (e.g. A6 and B1) and that I dont need to use an external resistor for this.
I am unsure of the code to use. Do I just paste your two sets of code together (as I have done below - is it correct)? Or do I need to change some of the BTN lines?
Thanks very much for your help...
Gene