Search found 1 match
- Thu Feb 01, 2024 9:20 am
- Forum: General Discussion
- Topic: esp32 bloetooth mouse
- Replies: 1
- Views: 6519
esp32 bloetooth mouse
hello everyone... I want to make a bluetooth mouse with ESP32. only I'm still confused about creating GPIO parameters to activate the buttons on each board. can anyone help? this is the code I use #include <BleMouse.h> BleMouse bleMouse; #define Back 25 void setup() { pinMode(Back,INPUT_PULLUP); dig...