Search found 165 matches
- Sun Nov 10, 2024 10:57 am
- Forum: ESP32 Arduino
- Topic: Best Frequency Meter ever made with ESP32 - awesome!
- Replies: 100
- Views: 150828
Re: Best Frequency Meter ever made with ESP32 - awesome!
Henrik, I know that this topic has many posts. But in this post from July 21, 2024, I provided all the recommendations for carrying out the project. I recommend that you follow these recommendations so that your project works. Best regards. ESP32 FREQUENCY METER - NEW VERSION: https://www.esp32.com/...
- Tue Oct 15, 2024 1:33 pm
- Forum: ESP32 Arduino
- Topic: Best Frequency Meter ever made with ESP32 - awesome!
- Replies: 100
- Views: 150828
Re: Best Frequency Meter ever made with ESP32 - awesome!
Hi Wukon, In this project the minimum resolution of the oscillator is 1. A floating value is not allowed. if (resolution < 1) resolution = 1; // set min resolution //---------------------------------------------------------------------------- void init_osc_freq() // Initialize Oscillator to test Fre...
- Fri Sep 13, 2024 2:27 am
- Forum: ESP32 Arduino
- Topic: Best Frequency Meter ever made with ESP32 - awesome!
- Replies: 100
- Views: 150828
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...
- Tue Sep 10, 2024 12:21 pm
- Forum: ESP32 Arduino
- Topic: Best Frequency Meter ever made with ESP32 - awesome!
- Replies: 100
- Views: 150828
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...
- Tue Aug 27, 2024 3:51 pm
- Forum: ESP32 Arduino
- Topic: Best Frequency Meter ever made with ESP32 - awesome!
- Replies: 100
- Views: 150828
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!
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!
- Fri Aug 09, 2024 3:28 am
- Forum: ESP32 Arduino
- Topic: Help with A/D and photosensors.
- Replies: 2
- Views: 1131
Re: Help with A/D and photosensors.
Take a look to this tutorial:
https://tronixstuff.com/2013/08/05/part ... ltiplexer/
HC4067 Datsheet:
https://www.ti.com/lit/ds/symlink/cd74hc4067.pdf
https://tronixstuff.com/2013/08/05/part ... ltiplexer/
HC4067 Datsheet:
https://www.ti.com/lit/ds/symlink/cd74hc4067.pdf
- Sun Aug 04, 2024 2:42 am
- Forum: ESP32 Arduino
- Topic: Best Frequency Meter ever made with ESP32 - awesome!
- Replies: 100
- Views: 150828
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...
- Sun Aug 04, 2024 1:34 am
- Forum: ESP32 Arduino
- Topic: Best Frequency Meter ever made with ESP32 - awesome!
- Replies: 100
- Views: 150828
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...
- Fri Aug 02, 2024 1:15 am
- Forum: Hardware
- Topic: External FLASH Not Working
- Replies: 1
- Views: 1148
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...
- Fri Aug 02, 2024 1:00 am
- Forum: Hardware
- Topic: ESP32-S3 + ILI_9488
- Replies: 1
- Views: 1013
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
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