Pushing a button to trigger an update? #10551
-
Howdy. Coming back to the ESP32-S3-BOX LITE. Such a great little unit. I am trying to implement a 'update' button whereby a user can push one of the 3 buttons on the front and the device would use I have 2 questions.
I looked at the PDFs/docs and the schematics but was not able to figure that out. I also tried pushing a button while looping through:
to see if I could reveal the location. Hopefully it's actually available to micropython?
My device grabs data from a server and displays it on a screen, then sleeps. Thanks much in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
As far as I can tell from the schematics at https://github.com/espressif/esp-box, they are connected all together for a button_adc input, with different resistors to GND. So you can tell by the value read form ADC which button is pressed, The adc input is GPIO1, the pull-up resistor is 10k, downlink resistors at the buttons are 3.3k, 15k and 27k. |
Beta Was this translation helpful? Give feedback.
As far as I can tell from the schematics at https://github.com/espressif/esp-box, they are connected all together for a button_adc input, with different resistors to GND. So you can tell by the value read form ADC which button is pressed, The adc input is GPIO1, the pull-up resistor is 10k, downlink resistors at the buttons are 3.3k, 15k and 27k.