Search found 90 matches

by tele_player
Thu Sep 07, 2017 3:11 pm
Forum: ESP32 Arduino
Topic: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?
Replies: 43
Views: 130388

Re: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?

Interesting.
You compare actual to ESP32 above. What was being compared?
by tele_player
Thu Sep 07, 2017 2:30 am
Forum: ESP32 Arduino
Topic: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?
Replies: 43
Views: 130388

Re: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?

What are you using to determine actual temperature and humidity?
by tele_player
Wed Sep 06, 2017 5:12 am
Forum: ESP32 Arduino
Topic: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?
Replies: 43
Views: 130388

Re: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?

Interesting, it never occurred to me that he wasn't calling the functions - that would definitely explain it.
by tele_player
Tue Sep 05, 2017 6:41 pm
Forum: ESP32 Arduino
Topic: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?
Replies: 43
Views: 130388

Re: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?

Maybe you need a newer version of Arduino core?

I find the versioning of this stuff confusing, at best.
by tele_player
Tue Sep 05, 2017 3:56 pm
Forum: ESP32 Arduino
Topic: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?
Replies: 43
Views: 130388

Re: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?

Those calls seem to work for me. Note: there's been plenty of discussion of non-linearity of the ADC.
See:
https://github.com/espressif/esp-idf/issues/164
by tele_player
Mon Sep 04, 2017 4:16 am
Forum: ESP32 Arduino
Topic: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?
Replies: 43
Views: 130388

Re: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?

The big question - did tweaking these settings achieve the desired ADC behavior?
by tele_player
Sun Sep 03, 2017 8:32 pm
Forum: ESP32 Arduino
Topic: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?
Replies: 43
Views: 130388

Re: ESP32 ADC Non-linear Issues - How do I fix / change Attenuation or width?

What a coincidence! That's EXACTLY the same ESP32 I use. I've got two, they work perfectly (so far?) Width: /* * Set the resolution of analogRead return values. Default is 12 bits (range from 0 to 4096). * If between 9 and 12, it will equal the set hardware resolution, else value will be shifted. * ...
by tele_player
Sun Aug 27, 2017 7:51 am
Forum: ESP32 Arduino
Topic: Strange Interrupt behavior on IO
Replies: 2
Views: 5262

Re: Strange Interrupt behavior on IO

I wonder if using Serial.print() in the ISR is causing the problem?
by tele_player
Fri Aug 25, 2017 4:20 am
Forum: General Discussion
Topic: compiling bme280 from yanbe
Replies: 4
Views: 6878

Re: compiling bme280 from yanbe

That's a fine solution. Or, you could experiment with with changes to the compiler command, probably in a makefile or config file, to ignore this error.
by tele_player
Fri Aug 25, 2017 12:57 am
Forum: General Discussion
Topic: Unable to receive TCPIP-packets with wifi callback function
Replies: 10
Views: 17855

Re: Unable to receive TCPIP-packets with wifi callback function

select() has a timeout argument which can be used to set no block, block until timeout, or block forever.