Search found 4 matches

by DarkByte
Wed Mar 09, 2016 6:07 am
Forum: General Discussion
Topic: Confirmations about ESP32 peripherals
Replies: 14
Views: 26618

Re: Confirmations about ESP32 peripherals

In current SDK version seems that peripherals are equal to esp8266. There is no hardware i2c/spi bus and no BT support.
by DarkByte
Sun Jan 17, 2016 2:28 pm
Forum: General Discussion
Topic: Does anyone knows the distance range ESP32 bluetooth can support?
Replies: 1
Views: 6978

Re: Does anyone knows the distance range ESP32 bluetooth can support?

Current version of SDK for ESP32 does not suppurt bluetooth yet.
by DarkByte
Sat Jan 16, 2016 12:20 pm
Forum: Report Bugs
Topic: low ambient temperature - no boot ( bug or future )
Replies: 5
Views: 13745

Re: low ambient temperature - no boot ( bug or future )

I think it is probably related to some tollerances of the oscillator components (quartz, capacitors) that leads to some instability but would be good to get a feedback from espressif. Seems pretty stable "bug" and affected only at boot time. While chip work, outside temperature -20 degrees of Celsi...
by DarkByte
Sat Jan 09, 2016 7:17 pm
Forum: Report Bugs
Topic: substract 32 from uint8 temperature_sensor_read()
Replies: 2
Views: 8164

Re: substract 32 from uint8 temperature_sensor_read()

According to specifications, temperature sensor work from -40 to +125. Return value of temperature_sensor_read function is unsigned. So you need substract 40 from returned value to get valid results ;) Also, to convert from Fahrenheit to Celsius, you need substract 32 and multiply by 5/9. uint8 tRaw...