Search found 28 matches

by lannocm
Mon Oct 24, 2022 8:47 pm
Forum: ESP32 Arduino
Topic: I2C interrupts
Replies: 0
Views: 1096

I2C interrupts

Hi, I'm trying to connect two I2C devices (VL53L0X) to my ESP32 using interrupts but I can't find any examples with the combination of Arduino/ ESP32/I2C/interrupts. I've found every other combination but not the one I need. Can anyone help with code or a description or an alternative way to do this...
by lannocm
Tue Sep 27, 2022 8:26 pm
Forum: ESP32 Arduino
Topic: countdown timer using interrupts
Replies: 5
Views: 4626

Re: countdown timer using interrupts

Hi, Thanks for the extra information. I think I now have a version of it working that (so far) meets my needs: #include "TickTwo.h" int BTN_SELECT = 18; long int modeLastChanged = 0; int iTime = 10; void timeMessage() { Serial.println(iTime); if (iTime && --iTime == 0) Serial.println("timer done"); ...
by lannocm
Mon Sep 26, 2022 7:04 pm
Forum: ESP32 Arduino
Topic: countdown timer using interrupts
Replies: 5
Views: 4626

Re: countdown timer using interrupts

Thanks, both. A few more questions, then... @felmue. You suggest a 10 second timer: does that mean setting timerWrite to 10,000,000? I think I understand why no interrupt is required but could you just spell it out for me, please? @lbernstone. I'm happy not to use interrupts but I thought there was ...
by lannocm
Mon Sep 26, 2022 2:41 pm
Forum: ESP32 Arduino
Topic: countdown timer using interrupts
Replies: 5
Views: 4626

countdown timer using interrupts

Hi, I thought this would be a simple matter but I have spent DAYS trying to resolve it for myself with no luck. I simply want to create a countdown timer using hardware interrupts (because there a number of other things going on) and that the countdown appear on a display, counting down seconds to z...
by lannocm
Fri Apr 16, 2021 9:36 pm
Forum: Hardware
Topic: Esp32 camera performance
Replies: 1
Views: 3805

Esp32 camera performance

Can anyone point me in the direction of any performance data for streaming video from esp32 over wifi? I'd like to understand which combination will give me the best resolution/frame rate with factors such as psram, camera type, config, protocol, etc. It has a direct bearing on a project I am workin...
by lannocm
Tue Apr 13, 2021 8:39 pm
Forum: ESP-IDF
Topic: New ESP32 Board Bootloader
Replies: 44
Views: 23714

Re: New ESP32 Board Bootloader

Hi, You may remember I was having issues with the designer. I finally got my money back but I want to use the design as the basis of version 2, if possible. The first design didn't have flash, so, I guess I have a couple of options. a) add external flash b) use an ESP chip that includes flash. Optio...
by lannocm
Wed Mar 10, 2021 8:13 pm
Forum: ESP-IDF
Topic: New ESP32 Board Bootloader
Replies: 44
Views: 23714

Re: New ESP32 Board Bootloader

So, should I be using the same clock or the separate clock for the flash? Does it matter?

And does anyone know what /CS and /HOLD etc is?
by lannocm
Mon Mar 08, 2021 7:55 pm
Forum: ESP-IDF
Topic: New ESP32 Board Bootloader
Replies: 44
Views: 23714

Re: New ESP32 Board Bootloader

Ah! So, I think I have the pins correct but the wrong labels on them. I'll double check that shortly. As for the clk pin, according to the hardware guidelines, psram and flash can share the same clock, though there is a separate clock on the esp32. At least, that's my understanding. Also, can you te...
by lannocm
Mon Mar 08, 2021 12:25 pm
Forum: ESP-IDF
Topic: New ESP32 Board Bootloader
Replies: 44
Views: 23714

Re: New ESP32 Board Bootloader

Here is the table:

I have marked, in red circles, where I think the soldering should be done but I'd be grateful for any thoughts anyone has on what I have said and shown.

Thanks.

Soldering points - part 2.png
Soldering points - part 2.png (167.4 KiB) Viewed 4922 times
Soldering points - part 1.png
Soldering points - part 1.png (369.55 KiB) Viewed 4922 times
by lannocm
Mon Mar 08, 2021 12:20 pm
Forum: ESP-IDF
Topic: New ESP32 Board Bootloader
Replies: 44
Views: 23714

Re: New ESP32 Board Bootloader

Hi, I'm waiting for a new design from the designer, who has admitted that he missed the flash chip of the first design. I'm still keen to have a go at fixing the original board and I have more information now about the flash chip to use. I've also done a bit of research and I believe that I now know...