Search found 5 matches

by prathode
Fri Mar 04, 2022 7:12 am
Forum: ESP32 boards
Topic: Example of Nested Timers in ESP-32
Replies: 0
Views: 11922

Example of Nested Timers in ESP-32

Hi all, I am looking for a practical example of using nested hardware timers in ESP32. I have initialized Timer0 in a function and in its call back I am initializing Timer1 and again in its callback it does some task and calls function where Timer0 is defined. It actually makes an loop which results...
by prathode
Wed Mar 02, 2022 5:47 am
Forum: General Discussion and Questions
Topic: Build firmware v1.14 with IDF 4.2 problems
Replies: 3
Views: 9244

Re: Build firmware v1.14 with IDF 4.2 problems

I think you need to install cmake version 3.12 or greater. Which version of cmake do you currently have? Hi @Damien this first time I am building MicroPython so need bit of help. I am following README.md available in ESP32 port in official Micropython. Currently I am using cmake version 3.16.3 but ...
by prathode
Thu Feb 17, 2022 7:06 am
Forum: ESP8266 boards
Topic: howto: Control passive buzzer
Replies: 6
Views: 22555

Re: howto: Control passive buzzer

PWM. This tutorial should give you a helping hand if you have an esp board. Esp boards do have a lower frequency limit, if you need higher try the pyboard. https://micropython-on-wemos-d1-mini.readthedocs.io/en/latest/basics.html#beepers Hi, I would like to know if there is any way to use buzzer wi...
by prathode
Fri Feb 04, 2022 9:32 am
Forum: ESP32 boards
Topic: setting PWM timers
Replies: 5
Views: 7028

Re: setting PWM timers

Thanks. I have found a work around for my current needs. I Found that v.16 will do a freq of 50Hz for the servo so I am using it. To be able to drive my servo and motors I stop the motors and change the freq to 50Hz then set the servo position then set duty to 0 then change the freq back to 40,000H...
by prathode
Tue Feb 01, 2022 2:00 pm
Forum: ESP32 boards
Topic: Timers with two different delays.
Replies: 0
Views: 14093

Timers with two different delays.

Hello Everyone, Problem Statement: I have attached 4 LEDs on gpios as (2, 13, 14, 15) of ESP-32. I am connecting it with Wi-Fi Network using usocket lib for HTTP requests. I want to add a feature where we get a command from HTTP Requests as LED pin number and onTime and offTime (in sec/ msec). I wan...