Search found 3 matches

by Bmillier
Wed Jul 24, 2019 5:36 pm
Forum: General Discussion
Topic: ESP32-EYE- starting/stopping video stream using a switch on ESP32 board
Replies: 0
Views: 2479

ESP32-EYE- starting/stopping video stream using a switch on ESP32 board

I have downloaded the camera webserver example code via the Arduino IDE and it works fine. I would like to start/stop the video stream from the ESP32 code itself (demo uses a button on the web page) using a switch on a ESP32 GPIO pin. Nowhere in the code can I see where the video stream is turned on...
by Bmillier
Mon Sep 25, 2017 6:32 pm
Forum: General Discussion
Topic: RMT in loop mode results in crash, and no looping for 64+ items
Replies: 2
Views: 4637

Re: RMT in loop mode results in crash, and no looping for 64+ ite

I experienced same issue when using RMT transmit , but from Arduino IDE code. The NECSend example from Espressif, I was following used malloc to allocate the item array, but did not include a free(Item) after the call to rmt_write_items. After I added this, the crashing stopped. You have to use the ...
by Bmillier
Mon Sep 25, 2017 5:34 pm
Forum: Sample Code
Topic: Alternative to ESP_ERROR_CHECK
Replies: 5
Views: 11276

Re: Alternative to ESP_ERROR_CHECK

Hi Neil This is off topic: I love your book. Have used it on several projects, the latest being a learning IR remote/ wifi blaster using RMT peripheral. I note on page 255 you show max values of 65535 for the 15- bit timing value saved by the RMT peripheral. This should be 32767. Using the Arduino I...