Search found 16 matches

by hellraise007
Sun Oct 04, 2020 9:58 am
Forum: Hardware
Topic: [ESP-AT] Uploading certificates using AT Commands
Replies: 3
Views: 4906

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 ...
by hellraise007
Sat Oct 03, 2020 9:43 am
Forum: Hardware
Topic: [ESP-AT] Uploading certificates using AT Commands
Replies: 3
Views: 4906

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.
by hellraise007
Fri Oct 02, 2020 3:44 pm
Forum: Hardware
Topic: [ESP-AT] Uploading certificates using AT Commands
Replies: 3
Views: 4906

[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><...
by hellraise007
Wed Dec 18, 2019 7:57 am
Forum: ESP32 Arduino
Topic: ESP32 MTDI Pin consideration.
Replies: 1
Views: 3991

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...
by hellraise007
Fri Nov 01, 2019 1:03 pm
Forum: ESP32 Arduino
Topic: Ext1 Wake up using input only pins
Replies: 0
Views: 2818

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.
by hellraise007
Sun Oct 27, 2019 1:22 pm
Forum: ESP32 Arduino
Topic: WiFi RSSI to percentage
Replies: 2
Views: 9838

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...
by hellraise007
Sat Oct 26, 2019 11:11 am
Forum: ESP32 Arduino
Topic: WiFi RSSI to percentage
Replies: 2
Views: 9838

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.
by hellraise007
Sat Oct 19, 2019 6:02 am
Forum: ESP32 Arduino
Topic: How to get current WiFi Status
Replies: 3
Views: 8254

Re: How to get current WiFi Status

lbernstone wrote:
Sat Oct 19, 2019 3:59 am
WiFi.getMode();

https://docs.espressif.com/projects/esp ... ifi_mode_t
What is WIFI_MODE_MAX & WIFI_MODE_NULL difference?
by hellraise007
Sat Oct 19, 2019 3:24 am
Forum: ESP32 Arduino
Topic: How to get current WiFi Status
Replies: 3
Views: 8254

How to get current WiFi Status

How do I ascertain what mode WiFi is on: OFF, AP, AP-STA or STA
by hellraise007
Wed Sep 04, 2019 7:02 pm
Forum: ESP32 Arduino
Topic: SSID and PASSWORD read from SPIFFS file contain newline
Replies: 2
Views: 6300

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...