Search found 16 matches
- Sun Oct 04, 2020 9:58 am
- Forum: Hardware
- Topic: [ESP-AT] Uploading certificates using AT Commands
- Replies: 3
- Views: 5795
Re: [ESP-AT] Uploading certificates using AT Commands
I create a bin file using the AtPKI.py too and uploaded it to the module using AT+SYSFLASH command. I am using the factory image so the command I used was AT+SYSFLASH=1,"client_cert",0,1040 AT+SYSFLASH=2,"client_key",0,1744 AT+SYSFLASH=2,"client_ca",0,1040 But it seems AT+CIPSSLCCONF=2,0,0 gives NO ...
- Sat Oct 03, 2020 9:43 am
- Forum: Hardware
- Topic: [ESP-AT] Uploading certificates using AT Commands
- Replies: 3
- Views: 5795
Re: [ESP-AT] Uploading certificates using AT Commands
I am trying to use ESP32/8266 purely in slave mode and I am required to update the certificates on site, It would be helpful if there was a detailed tutorial on this.
- Fri Oct 02, 2020 3:44 pm
- Forum: Hardware
- Topic: [ESP-AT] Uploading certificates using AT Commands
- Replies: 3
- Views: 5795
[ESP-AT] Uploading certificates using AT Commands
Hello, Is it possible to upload SSL certificates to the flash using AT commands? There is AT+SYSFLASH command to view and modify partitions, how do I wirte certificates into the flash using this command safely? A simple AT+SYSFLASH=2,"client_ca",0x00,0x2000 gave me +SYSFLASH:8192,<0xf1><0xf1><0x02><...
- Wed Dec 18, 2019 7:57 am
- Forum: ESP32 Arduino
- Topic: ESP32 MTDI Pin consideration.
- Replies: 1
- Views: 4607
ESP32 MTDI Pin consideration.
I have an ESP32D0WDQ5 (revision 1). I have been reading up on the strapping pins but I cant find a reliable documentation for this part of this chipset. 1) Can I use MTDI pin as an input (Deep sleep Wakeup). 2) If not can I use it as output? 3) Should I consider keeping it pulled up? Any advantage/d...
- Fri Nov 01, 2019 1:03 pm
- Forum: ESP32 Arduino
- Topic: Ext1 Wake up using input only pins
- Replies: 0
- Views: 3119
Ext1 Wake up using input only pins
Hi,
Is it possible to use the input only pins, 34 to 39 as ext1 wake up sources and be able to detect which pin was used to wake up? esp_sleep_get_ext1_wakeup_status(); seem to return 0 for these pins.
Is it possible to use the input only pins, 34 to 39 as ext1 wake up sources and be able to detect which pin was used to wake up? esp_sleep_get_ext1_wakeup_status(); seem to return 0 for these pins.
- Sun Oct 27, 2019 1:22 pm
- Forum: ESP32 Arduino
- Topic: WiFi RSSI to percentage
- Replies: 2
- Views: 10892
Re: WiFi RSSI to percentage
Using a percentage is misleading, most people recognize the "bars" for signal strength better than a number. https://www.netspotapp.com/what-is-rssi-level.html It is better to send the strength as collected, and let the server (or consumer) on the other end do the conversion. Raw data is more accur...
- Sat Oct 26, 2019 11:11 am
- Forum: ESP32 Arduino
- Topic: WiFi RSSI to percentage
- Replies: 2
- Views: 10892
WiFi RSSI to percentage
I would like to send the WiFi signal strength as percentage via mqtt. What is the conversion factor of RSSI value to percentage?
Please correct me if I am using a wrong method.
Please correct me if I am using a wrong method.
- Sat Oct 19, 2019 6:02 am
- Forum: ESP32 Arduino
- Topic: How to get current WiFi Status
- Replies: 3
- Views: 9137
Re: How to get current WiFi Status
What is WIFI_MODE_MAX & WIFI_MODE_NULL difference?lbernstone wrote: ↑Sat Oct 19, 2019 3:59 amWiFi.getMode();
https://docs.espressif.com/projects/esp ... ifi_mode_t
- Sat Oct 19, 2019 3:24 am
- Forum: ESP32 Arduino
- Topic: How to get current WiFi Status
- Replies: 3
- Views: 9137
How to get current WiFi Status
How do I ascertain what mode WiFi is on: OFF, AP, AP-STA or STA
- Wed Sep 04, 2019 7:02 pm
- Forum: ESP32 Arduino
- Topic: SSID and PASSWORD read from SPIFFS file contain newline
- Replies: 2
- Views: 6888
SSID and PASSWORD read from SPIFFS file contain newline
#include "SPIFFS.h" #include <WiFi.h> void setup(){ File file; Serial.begin(115200); if(!SPIFFS.begin(true)){ Serial.println("An Error has occurred while mounting SPIFFS"); return; } file = SPIFFS.open("/test.txt", FILE_WRITE); if(!file){ Serial.println("There was an error opening the file for writ...