Search found 7 matches
- Mon Nov 01, 2021 2:04 pm
- Forum: General Discussion
- Topic: Uploading files to HTTP server
- Replies: 0
- Views: 3567
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, ...
- Wed Sep 29, 2021 8:48 am
- Forum: ESP-AT
- Topic: Question on command AT + MQTTUSERCFG
- Replies: 2
- Views: 14452
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...
- Fri Sep 10, 2021 8:57 am
- Forum: ESP-AT
- Topic: AT+BLEINIT=2 ERROR
- Replies: 2
- Views: 15438
Re: AT+BLEINIT=2 ERROR
This issue was resolved by updating the firmware. More details here: https://github.com/espressif/esp-at/issues/563
- Thu Sep 09, 2021 4:40 pm
- Forum: ESP-AT
- Topic: AT+BLEINIT=2 ERROR
- Replies: 2
- Views: 15438
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...
- Wed Dec 30, 2020 9:17 pm
- Forum: General Discussion
- Topic: Incorrect operation of the external interrupt
- Replies: 4
- Views: 5507
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 ...
- Mon Dec 28, 2020 6:58 pm
- Forum: General Discussion
- Topic: Incorrect operation of the external interrupt
- Replies: 4
- Views: 5507
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...
- Sun Dec 27, 2020 8:04 pm
- Forum: General Discussion
- Topic: Incorrect operation of the external interrupt
- Replies: 4
- Views: 5507
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 ...