Search found 8 matches

by tyethgundry
Tue Apr 16, 2024 11:10 pm
Forum: Report Bugs
Topic: SSL cert invalid
Replies: 2
Views: 4178

Re: SSL cert invalid

Just realised the main site is the esp32.com domain now, and forum.esp32.com should probably just redirect to esp32.com, but maybe things would break. :shrug:
by tyethgundry
Tue Apr 16, 2024 11:02 pm
Forum: Report Bugs
Topic: SSL cert invalid
Replies: 2
Views: 4178

SSL cert invalid

The site is getting an SSL invalid message. Wonder if it's related to https://blog.cloudflare.com/shortening-lets-encrypt-change-of-trust-no-impact-to-cloudflare-customers I should probably check my server too :roll: I'm going to report this post to flag some attention Screenshot 2024-04-16 235829.p...
by tyethgundry
Mon Apr 15, 2024 1:19 pm
Forum: ESP32 Arduino
Topic: 3.0.0-rc1 WiFi not found
Replies: 2
Views: 891

Re: 3.0.0-rc1 WiFi not found

Also we do not initialise the wifi interface before requesting it's MAC address

Code: Select all

wifi.macAddress()
so now we have to either access the NetworkManager

Code: Select all

Network.macAddress()
or begin one of the interfaces first.

See https://github.com/espressif/arduino-esp32/issues/9509
by tyethgundry
Fri Apr 12, 2024 1:05 pm
Forum: ESP32 Arduino
Topic: 3.0.0-rc1 WiFi not found
Replies: 2
Views: 891

Re: 3.0.0-rc1 WiFi not found

It's expected: Me No Dev: "There will be docs. Reason is that WiFiClientSecure can now work on chips without WiFi, so it is not included by default. The whole network interface layer has changed to support H2 (and P4) and to also equalize all network interfaces (with PPP also on the way)" https://gi...
by tyethgundry
Fri Apr 12, 2024 12:24 pm
Forum: ESP32 Arduino
Topic: 3.0.0-rc1 WiFi not found
Replies: 2
Views: 891

3.0.0-rc1 WiFi not found

Hey, we used to get WiFi included by including #include <WiFiClientSecure.h> but since RC1 (we were using alpha3) there are CI errors. Adding #include "WiFi.h" resolves it, but is this necessary, or a regression? https://github.com/adafruit/Adafruit_Wippersnapper_Arduino/actions/runs/8646785163/job/...
by tyethgundry
Wed Mar 10, 2021 5:09 pm
Forum: ESP RainMaker
Topic: CEC1702
Replies: 2
Views: 5747

Re: CEC1702

Thanks Piyush! That claiming link in the docs was particularly helpful :ugeek:
by tyethgundry
Sun Dec 13, 2020 10:53 pm
Forum: ESP-IDF
Topic: Undefined reference to f_gets/f_puts error
Replies: 3
Views: 5592

Re: Undefined reference to f_gets/f_puts error

Thanks from a troubled Keil + nordic semiconductor nrf52840-dk / nrf5 sdk user, and esp32 customer :D
by tyethgundry
Sat Nov 07, 2020 10:32 pm
Forum: ESP RainMaker
Topic: CEC1702
Replies: 2
Views: 5747

CEC1702

Hi, I need to setup the Microchip CEC1702 (DM990013 development board) with the cloud, and it has no connectivity so I was planning to use the esp32 in slave mode, then I thought maybe the ESP32 has something (like Rainmaker) that does everything I need, so here I am. My Question is whether I can us...