LittleNyanCat

Results 8 comments of LittleNyanCat

The main reason WI-FI hasn't been implemented yet is that using it on the ESP32 disables ADC2, leaving us with only 6 pins available for analog input, making tracking all...

For the Esp side I've used this one for websockets in one of my projects before: https://github.com/me-no-dev/ESPAsyncWebServer

Uhh, the Arduino side stuff is also C++ though? I'd help right now if I didn't find setting stuff up to build the driver to be such a chore I...

If the firmware was successfully flashed, then that means the CH340C worked without any issue. Bluetooth is completely independent of the hardware serial interface so it has nothing to do...

That is a probably cause for the Bluetooth issue, however you should still be able to test it in serial mode (via USB cable)

You could just not add the potentiometers and leave those pins floating on the ESP32, then ignore the garbled finger data the gloves will put out in your app. If...

You can easily automatically reconnected by checking the socket status and attempting to connect if it is equal to WebSocketState.Closed in a loop. (Eg. in the Update() method or with...

+1, I'm using an Arduino controlling an ATX PSU connected via USB and a Python script to tell it to turn on/off. Will probably just implement it myself soon and...