Search found 163 matches

by jgustavoam
Fri Sep 13, 2024 2:27 am
Forum: ESP32 Arduino
Topic: Best Frequency Meter ever made with ESP32 - awesome!
Replies: 96
Views: 130168

Re: Best Frequency Meter ever made with ESP32 - awesome!

Hi Davyboy, The ESP32 frequency counter takes approximately 1 second (1 million microseconds) to make one measurement. uint32_t sample_time = 1000000; // Sample time of 1 second to count pulses To modify the program for frequency measurements up to 50 KHz, make the following changes: uint32_t sample...
by jgustavoam
Tue Sep 10, 2024 12:21 pm
Forum: ESP32 Arduino
Topic: Best Frequency Meter ever made with ESP32 - awesome!
Replies: 96
Views: 130168

Re: Best Frequency Meter ever made with ESP32 - awesome!

Hi DavyBoy, First of all, this frequency meter only accepts digital signals up to 3.3V. Do not use analog signals directly. You will have to use a circuit to adapt analog signals. I may implement this in the future. "Now I am trying to increase the sampling rate because I want to use this device for...
by jgustavoam
Tue Aug 27, 2024 3:51 pm
Forum: ESP32 Arduino
Topic: Best Frequency Meter ever made with ESP32 - awesome!
Replies: 96
Views: 130168

Re: Best Frequency Meter ever made with ESP32 - awesome!

Hi OSCPUDEV,

We hadn't thought of this alternative of using the MCPWM peripheral in our project. Maybe at the time of the project's development, there wasn't much documentation available. But thanks for the tips!
by jgustavoam
Sun Aug 04, 2024 2:42 am
Forum: ESP32 Arduino
Topic: Best Frequency Meter ever made with ESP32 - awesome!
Replies: 96
Views: 130168

Re: Best Frequency Meter ever made with ESP32 - awesome!

ESP32 FREQUENCY METER - 2 CHANNELS - Version 3 - Checking out Testing my old Crystal Oscillators - 20.000 MHz and 14.318180 MHz. Very Good! Breadboards and long wires are susceptible to noise and can interfere with measurements. The ideal is to assemble the entire circuit on a printed circuit board...
by jgustavoam
Sun Aug 04, 2024 1:34 am
Forum: ESP32 Arduino
Topic: Best Frequency Meter ever made with ESP32 - awesome!
Replies: 96
Views: 130168

Re: Best Frequency Meter ever made with ESP32 - awesome!

ESP32 FREQUENCY METER - 2 CHANNELS - WORKING !! As promised, I managed to fix the interference problem between the interrupts of the two Pulse Counters 0 and 1. The solution was to disable the Pulse Counter interrupt right after the complete count using the " pcnt_isr_unregister " function. After p...
by jgustavoam
Fri Aug 02, 2024 1:15 am
Forum: Hardware
Topic: External FLASH Not Working
Replies: 1
Views: 885

Re: External FLASH Not Working

There may be many differences. I suggest you compare the datasheets. MX25V16066M2I02 from Macronix - Datasheet: https://br.mouser.com/datasheet/2/819/MX25V16066_2c_2_5V_2c_16Mb_2c_v1_5-3401199.pdf W25Q16JVSNIQ from Winbond - Datashhet: https://br.mouser.com/datasheet/2/949/w25q16jv_spi_revg_03222018...
by jgustavoam
Fri Aug 02, 2024 1:00 am
Forum: Hardware
Topic: ESP32-S3 + ILI_9488
Replies: 1
Views: 796

Re: ESP32-S3 + ILI_9488

You may not be able to understand, but I suggest you start studying your display module.

ILI 9488 Datasheet:
https://www.hpinfotech.ro/ILI9488.pdf

https://forums.adafruit.com/viewtopic.php?t=205250

Some Code:
https://github.com/search?q=ili9488&type=repositories
by jgustavoam
Fri Aug 02, 2024 12:45 am
Forum: Hardware
Topic: Mismatched RX and TX pins
Replies: 3
Views: 1197

Re: Mismatched RX and TX pins

Please inform the name or model of your ESP32 S3 board. See what is written on your board - TX and RX on the top right side. These are the UART pins. In the case of the ESP32 S3 DevKit, these pins are used to UART: ESP32S3 TXD RXD.JPG https://dl.espressif.com/dl/schematics/SCH_ESP32-S3-DevKitC-1_V1....
by jgustavoam
Fri Aug 02, 2024 12:27 am
Forum: Hardware
Topic: Please check my esp32-s3 pins
Replies: 4
Views: 1486

Re: Please check my esp32-s3 pins

Recommended reading: https://www.espressif.com/sites/default/files/documentation/esp32-s3_technical_reference_manual_en.pdf Chapter 30 - SPI Controller (SPI) And : https://docs.espressif.com/projects/esp-idf/en/stable/esp32s3/api-reference/network/index.html#ethernet https://docs.espressif.com/proj...