lemmingDev

Results 118 comments of lemmingDev

Well, I could add it to both For now, I'll add it to battery Once done, I'm then going to add Nordic UART Service

Well, I'm going to try to make a NuS to COM port redirection app that will pipe info to/from a virtual com port so that it's as if the gamepad...

Oh, and temp would come from some type of temp sensor I guess. Didn't they disable the ESP32 internal temp reading functionality ages ago?

Actually, seems doable - though it is reading a little high. Could probably do with taking 20deg off the value It does however respond to temp increases/decreases at an expected...

Oh - and seems the S3 and C3 have actual support ``` #include "driver/temp_sensor.h" void initTempSensor(){ temp_sensor_config_t temp_sensor = TSENS_CONFIG_DEFAULT(); temp_sensor.dac_offset = TSENS_DAC_L2; // TSENS_DAC_L2 is default; L4(-40°C ~ 20°C),...

Apparently, the response can be used, as well (which effectively doubles the size), as I did for adding Nordic UART Service. https://github.com/h2zero/NimBLE-Arduino/issues/135 ``` // Can't add Nordic UART Service UUID...

One way to find out... It may do, but will come up as unsupported due to `architectures=esp32` in the library.properties file Give it a go and let us know if...

Did you try it? Any update?

There is a legacy version of this library that is compatible with creating both the BLE Gamepad and the classic Bt serial port (and USB serial too if needed) Here...