Search found 7 matches

by Anton_Dru
Mon Nov 01, 2021 2:04 pm
Forum: General Discussion
Topic: Uploading files to HTTP server
Replies: 0
Views: 3447

Uploading files to HTTP server

Hi! There is a task to upload images and audio to the HTTP server. I need to do this using AT commands on ESP32-C3. For this I use the AT command AT + HTTPCPOST https://docs.espressif.com/projects/esp-at/en/release-v2.2.0.0_esp32c3/AT_Command_Set/HTTP_AT_Commands.html#cmd-httpcpost As it turns out, ...
by Anton_Dru
Wed Sep 29, 2021 8:48 am
Forum: ESP-AT
Topic: Question on command AT + MQTTUSERCFG
Replies: 2
Views: 14185

Question on command AT + MQTTUSERCFG

Hello guys. I need to connect to the AWS cloud over MQTT protocol. I should use this command to do it: AT+MQTTUSERCFG=<LinkID>,<scheme>,<"client_id">,<"username">,<"password">,<cert_key_ID>,<CA_ID>,<"path"> where: LinkID - 0 scheme - 5 client_id - "" username - "" password - "" My question is: if yo...
by Anton_Dru
Fri Sep 10, 2021 8:57 am
Forum: ESP-AT
Topic: AT+BLEINIT=2 ERROR
Replies: 2
Views: 15230

Re: AT+BLEINIT=2 ERROR

This issue was resolved by updating the firmware. More details here: https://github.com/espressif/esp-at/issues/563
by Anton_Dru
Thu Sep 09, 2021 4:40 pm
Forum: ESP-AT
Topic: AT+BLEINIT=2 ERROR
Replies: 2
Views: 15230

AT+BLEINIT=2 ERROR

Hey! I am using ESP32-C3 on DevKitC-02 board. I am trying to initialize BLE via AT + BLEINIT = 2 and I get this response AT + BLEINIT = 2 AT + BLEINIT = 2 ERROR At the same time, the following message appears on the UART as a channel for the logs: "Config struct mismatch: magic = 5a5aa5a5, ver = 021...
by Anton_Dru
Wed Dec 30, 2020 9:17 pm
Forum: General Discussion
Topic: Incorrect operation of the external interrupt
Replies: 4
Views: 5340

Re: Incorrect operation of the external interrupt

IIRC edge interrupts have some issues if the rise time is not fast enough. This github issue has a description: https://github.com/espressif/arduino-esp32/issues/4172 Thanks for the answer! This article fully confirms my observations made with the oscilloscope when I checked if there is any bounce ...
by Anton_Dru
Mon Dec 28, 2020 6:58 pm
Forum: General Discussion
Topic: Incorrect operation of the external interrupt
Replies: 4
Views: 5340

Re: Incorrect operation of the external interrupt

Can you put an oscilloscope on the signal, just to be sure you're debouncing it correctly? I watched the signal on the oscilloscope, no bounce is observed. In general, the problem is not like bouncing, since if bouncing, there would be repeated operation either when pressed or released. And in this...
by Anton_Dru
Sun Dec 27, 2020 8:04 pm
Forum: General Discussion
Topic: Incorrect operation of the external interrupt
Replies: 4
Views: 5340

Incorrect operation of the external interrupt

Hi! Faced a problem while handling a button click with an external interrupt. I initialized the pin on which the button is located as a falling edge interrupt. However, when the button is pressed, the interrupt is triggered both on the falling edge and on the rising edge. The button is pulled up to ...