lbernstone
lbernstone
There's a lot of variables in WiFi connection that are outside of the control of the ESP device. Looking at verbose logs will let you see some of them, but...
scan related parameters? I don't see any scanning in your code. I ran the simplest connection code possible with verbose logging ``` #include void setup() { Serial.begin(115200); WiFi.begin("ssid","pass"); WiFi.waitForConnectResult(); }...
You would need to wireshark (or have logs on the DHCPd) to see exactly what is going on in the dhcp negotiation. But, it seems like the slowdown is not...
> That library is known to not work with recent versions of ESP-IDF because of change in enumerating the SPI ports for S3 ad C3 (and probably more). We had...
The [security aspects of BT](https://github.com/espressif/arduino-esp32/tree/master/libraries/BluetoothSerial#bluetooth-serial-library) have changed significantly between 2.x and 3.x. Make sure you are using the example sketches from the appropriate version.
The copyright may not have changed, but the examples certainly have been updated to reflect the changes with SSP. Look at the blame on the files. The link I posted...
Name resolution appears to not be working. Can @P-R-O-C-H-Y or @me-no-dev take a look? Works fine when given an address.
If you set core debug level to verbose, do you get any additional logging about what fails?
> Too, i would like to have a ping library (icmp echo) to work with framework arduino, the actual avaliable libraries from github are old, don't work with ethernet and...
Those certificates are not valid pem files. It's OK to obscure the contents of the private key & cert, but you should be posting a valid AWS CA. Does this...