Search found 105 matches

by rin67630
Thu Mar 22, 2018 8:06 am
Forum: ESP32 Arduino
Topic: Practical usage of the built-in hall sensor
Replies: 11
Views: 44433

Re: Practical usage of the built-in hall sensor

davdav wrote:Hi @rin67630,
I'm currently using ADC1_CH0 and ADC3_CH3 for measuring other analog voltage.
Do you know if the Hall sensor is still usable in this condition?
Thanks
No it isn't usable at all, specially if you switch the input ranges.
by rin67630
Thu Mar 22, 2018 6:53 am
Forum: General Discussion
Topic: ESP32 on Batteries - your setup
Replies: 50
Views: 92599

Re: ESP32 on Batteries - your setup

On the Lolin32 I wonder how to put the USB UART in sleep mode.
Is it enough to disconnect it from USB?
by rin67630
Thu Mar 22, 2018 6:51 am
Forum: General Discussion
Topic: ESP32 on Batteries - your setup
Replies: 50
Views: 92599

Re: ESP32 on Batteries - your setup

Kazuya91 wrote:
meneldor wrote: Unfortunately the Lolin32 is not in production anymore.
Really? That would be a pity. Currently plenty of them are still available.
by rin67630
Wed Mar 21, 2018 8:46 am
Forum: General Discussion
Topic: SPIFFS fast enough for a one second data logger?
Replies: 8
Views: 12855

Re: SPIFFS fast enough for a one second data logger?

That's actually pretty simple — you have a block device with defined size, and functions to read/write/erase sectors of the block device. Simplest way would be to implement a ring buffer based on this block device. But you want to be able to read the results as a regular file e.g. to send it via FT...
by rin67630
Tue Mar 20, 2018 10:44 pm
Forum: General Discussion
Topic: SPIFFS fast enough for a one second data logger?
Replies: 8
Views: 12855

Re: SPIFFS fast enough for a one second data logger?

To add to igrr's advice, if all you need to ever do is write a lot of sequential fixed size data then you could also create a custom data partition and use the esp_partition_erase_range() and esp_partition_write() functions to write a log formatted journal, one entry at a time. Ouch, that is absolu...
by rin67630
Tue Mar 20, 2018 10:34 pm
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 841118

Re: What would you like to see in The Next Chip?

ESP_Sprite wrote:How do you mean, wake from deep sleep without hardware modifications? Also, what use case would you have to compile sepate things for both cores?
...wake from deep sleep without having to tie a pin to RST.
Compile one core to gather data and the other one to form/transmit data.
by rin67630
Mon Mar 19, 2018 6:50 pm
Forum: General Discussion
Topic: SPIFFS fast enough for a one second data logger?
Replies: 8
Views: 12855

SPIFFS fast enough for a one second data logger?

SPIFFS or SD-Card? I am planning a data logger with an ESP32 WROOM. It should store one byte every second in a file. At the end of the day, a new file will be created. The file will be retrieved by FTP, then erased. The available SPIFF memory should be enough for the job, but I am woried about the t...
by rin67630
Mon Mar 19, 2018 5:38 pm
Forum: ESP-IDF
Topic: Best NTP-Time libraray for ESP32?
Replies: 6
Views: 8817

Re: Best NTP-Time libraray for ESP32?

Thank you.
That looks good, albeit the given code do not yet seem to be a directly usable library as we are used to...

I hope somebody with more skills than me, will provide soon an OOB clock example...
by rin67630
Mon Mar 19, 2018 5:19 pm
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 841118

Re: What would you like to see in The Next Chip?

Thank you for asking and for reading our comments! What I currently miss on the ESP32 -Provide really linear ADCs starting at zero mV. -Provide differential input ADC. -I/O 5v tolerant. -Wake from deep sleep without HW wiring. For the time being the most important weaknesses are in the compilers: we...
by rin67630
Mon Mar 19, 2018 10:22 am
Forum: ESP-IDF
Topic: Best NTP-Time libraray for ESP32?
Replies: 6
Views: 8817

Best NTP-Time libraray for ESP32?

Hi experts here,
we have got many NTP-time libraries available. Most of them come from the Arduino world, some from the ESP 8266.
As I have understood the ESP32 has an own RTC built in, so a specific library would be better than one of the above mentioned, isn't it?

Does that one exist?
Regards