Josep Comas

Results 7 comments of Josep Comas

Tested. I have Samsung S8 phone, you need uninstall Samsung drivers and with Zadig reinstall WinUSB driver. The issue can be closed.

This message "No device available, or it is in the wrong configuration." appears when you don't have WinUSB driver installed. Then, you can use Zadig to install. ![WinUSB with Samsung...

Using WiFiClient with LilyGo T-Watch 2020 V3: Works: .- connected = client.connect(host, 80); .- connected = client.connect(host, 80, 1000); Connection time is below 100ms. But using timeout 100 or 500...

> Are you using arduino-esp32 v2.0.7? Older versions of WiFiClient rounded the connection time to the nearest whole second. 2.0.6

Suggestions for a temperature sensor: `sensor.getTemperatureRaw()` `sensor.getTemperatureCelsius()` `sensor.getTemperatureFahrenheit()` `sensor.getTemperatureKelvin()`

Thanks for the example. I have "SoftwareSerial" in example https://github.com/jcomas/S8_UART/blob/main/examples/co2/co2.cpp but maybe not valid for ESP32. I'll review it for the next release.

Can you try adding "yield" instead of delay in S8_UART::serial_read_bytes ? ``` while (((end_t - start_t) available()) { nb = mySerial->readBytes(buf_msg, max_bytes); readed = true; } end_t = millis(); }...