Search found 6 matches

by pmi2410
Sat Nov 23, 2024 7:09 pm
Forum: Hardware
Topic: New to ESP32 Programming - Getting Weird ADC Readings and Can Only Run Code Once
Replies: 1
Views: 192

Re: New to ESP32 Programming - Getting Weird ADC Readings and Can Only Run Code Once

I was able to fix the weird ADC readings with adc.atten(ADC.ATTN_11DB) # Set to 3.3V range adc.width(ADC.WIDTH_12BIT) # 12-bit resolution (0-4095, default) and I get this output now: DAC voltage: 0.25 ADC voltage: 0.18 DAC voltage: 0.5 ADC voltage: 0.41 DAC voltage: 0.75 ADC voltage: 0.63 DAC voltag...
by pmi2410
Sat Nov 23, 2024 5:29 am
Forum: Hardware
Topic: Is there an ESP32xxx chip I can use for my project?
Replies: 3
Views: 620

Re: Is there an ESP32xxx chip I can use for my project?

What ESP32 should I look at for the following specs:
ESP-NOW support
ADC
DAC
GPIO
WiFi
Bluetooth optional

What dev kit should I consider?
by pmi2410
Fri Nov 22, 2024 11:21 pm
Forum: Hardware
Topic: Can I use micropython to develop ESP-Now project?
Replies: 1
Views: 293

Can I use micropython to develop ESP-Now project?

Do I have to use C/C++ for an ESP-NOW project, or will micropython work? There are no real timing constraints for the project. All the interactions occur in what I call "human time".
by pmi2410
Fri Nov 22, 2024 11:19 pm
Forum: Hardware
Topic: What is the best ESP development board or module for ESP-NOW?
Replies: 0
Views: 146

What is the best ESP development board or module for ESP-NOW?

I have a ESP-WROOM-32. Can I develop ESP-NOW project with that board? What board would be better for ESP-NOW development?
Thanks!
by pmi2410
Fri Nov 22, 2024 7:05 pm
Forum: Hardware
Topic: New to ESP32 Programming - Getting Weird ADC Readings and Can Only Run Code Once
Replies: 1
Views: 192

New to ESP32 Programming - Getting Weird ADC Readings and Can Only Run Code Once

I am new to ESP32 programming. I am trying to write some micropython code, test it, edit it, test again. I can write the code, run it once, edit it, but it won't run again. I am not sure how to reset the ESP32 so the edited code runs as if it has never run before. My code: from machine import DAC, P...
by pmi2410
Sun Nov 10, 2024 6:49 pm
Forum: Hardware
Topic: Is there an ESP32xxx chip I can use for my project?
Replies: 3
Views: 620

Is there an ESP32xxx chip I can use for my project?

I have a project prototype for a wifi controller using a Pi Zero W. The Pi Zero W is used to control a separate hardware board using the SPI bus, GPIO pins, and the I2C bus. It also provides a small web site over the WiFi connection to allow the user to interact with the hardware. The code is writte...