Search found 46 matches

by mzincali
Tue May 02, 2023 9:24 pm
Forum: General Discussion
Topic: Switching from SSL/TLS to mTLS
Replies: 4
Views: 3410

Re: Switching from SSL/TLS to mTLS

Thank you. I'm currently using WifiSecure and: WiFiClientSecure* client = new WiFiClientSecure; if (client) { client->setCACert(rootCACertificate); HTTPClient https; if (https.begin(*client, checkinURL)) { int httpCode = https.GET(); I was told that the back-end needs to use mTLS: "I can do some res...
by mzincali
Mon May 01, 2023 8:19 pm
Forum: General Discussion
Topic: Switching from SSL/TLS to mTLS
Replies: 4
Views: 3410

Switching from SSL/TLS to mTLS

Hi. I am just starting to research what it would take to have my ESP32 program which uses WiFiClientSecure, to use mTLS instead. I'm not sure where to start. I looked at https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/protocols/esp_tls.html , but that looks like what is sup...
by mzincali
Tue Feb 21, 2023 8:26 am
Forum: Hardware
Topic: How to add 5G/LTE to a ESP32C3 custom board
Replies: 2
Views: 4652

Re: How to add 5G/LTE to a ESP32C3 custom board

Thank you. My research has identified two good (or great) options: LTE-M and NB-IoT. They both seem to have some penetration and network coverage, and they're both low power, and not too complex to add to a board (compared to other cellular). My bandwidth needs are relatively simple:periodically I w...
by mzincali
Wed Feb 15, 2023 9:08 pm
Forum: Hardware
Topic: How to add 5G/LTE to a ESP32C3 custom board
Replies: 2
Views: 4652

How to add 5G/LTE to a ESP32C3 custom board

I've got a working circuit using ESP32C3. I now need to provide network access for those situations where WiFi isn't available. What's the best place to start? I am not opposed to replace the ESP32C3, but would rather not. I do realize that LTE/5G will have monthly access fees and more complexity. I...
by mzincali
Mon Jan 30, 2023 9:35 pm
Forum: Hardware
Topic: Any injection molding companies you recommend?
Replies: 0
Views: 955

Any injection molding companies you recommend?

I hope this isn't too off-topic. I've got a small enclosure for my ESP32 project, and I want to injection mold 2000 or so. I've been working with ProtoLabs, but they're really dragging their feet, so I am looking for alternatives to injection mold the two pieces(top and bottom, 2x matchbox sized). A...
by mzincali
Mon Dec 05, 2022 4:14 am
Forum: General Discussion
Topic: Using esp-idf instead of Arduino
Replies: 1
Views: 1332

Using esp-idf instead of Arduino

I see a lot of you are using esp-idf instead of Arduino. What hss kept me from moving to esp-idf are all the libraries I use with my ESP32 projects. Libraries from Adafruit for their LEDs and sensors, libraries for networking and many others. I am assuming that none of those "arduino" libraries are ...
by mzincali
Mon Dec 05, 2022 1:04 am
Forum: General Discussion
Topic: Chip details are visible when chip is getting connected to Wi-FI
Replies: 8
Views: 4792

Re: Chip details are visible when chip is getting connected to Wi-FI

config LWIP_LOCAL_HOSTNAME string "Local netif hostname" default 'espressif' help The default name this device will report to other devices on the network. Could be updated at runtime with esp_netif_set_hostname() I didn't realize there was a query/response that did this. Can you tell me what kind ...
by mzincali
Sat Dec 03, 2022 10:48 am
Forum: General Discussion
Topic: Chip details are visible when chip is getting connected to Wi-FI
Replies: 8
Views: 4792

Re: Chip details are visible when chip is getting connected to Wi-FI

In general, the name of the manufacturer is mapped from the MAC address, by the system that is displaying the clients connected. It is not a string that the ESP32 is passing to the network. The ESP32 is only sending its MAC address. The access point is then making that MAC to the manufacturer name t...
by mzincali
Sat Dec 03, 2022 10:45 am
Forum: General Discussion
Topic: Is there a WiFi library that supports captive portals?
Replies: 0
Views: 1126

Is there a WiFi library that supports captive portals?

I'm looking for a library that allows a new user to log into the SSID of the ESP32, set the SSID and password of the captive network, and then provides the same challenge that the captive network provides to the user so that they can complete the login to the captive network. For example, some hotel...
by mzincali
Sat Dec 03, 2022 9:43 am
Forum: General Discussion
Topic: How do I program a version number into my firmware?
Replies: 3
Views: 2337

Re: How do I program a version number into my firmware?

Simply add one file in your project with version you want:
Would that work for Platformio? Or is that only for esp-idf?