Search found 2 matches

by basinus
Sat Jul 08, 2017 5:30 pm
Forum: ESP32 Arduino
Topic: vTaskDelay() vS. Delay()
Replies: 2
Views: 50308

vTaskDelay() vS. Delay()

What is the difference between both? Why should i use

Code: Select all

portTICK_PERIOD_MS = 10;
vTaskDelay(1000 / portTICK_PERIOD_MS);
// 1000/10 = 100 Ticks 
instead of Delay(1000)? And what is exactly one tick?
by basinus
Tue Jul 04, 2017 6:02 pm
Forum: General Discussion
Topic: Using esp32 with powerbank (about ampere)
Replies: 1
Views: 6948

Using esp32 with powerbank (about ampere)

I've got a powerbank with two outputs: 5V / 1A and 5V / 2A. What is the best to use my esp32 (and a solid sd card adapter) with this? Can my ESP get broken when using "too much" ampere? Or can i just use both outputs at the same time, just directly connected to the esp32?