Search found 2 matches

by palmighty
Sat Oct 24, 2020 8:39 pm
Forum: General Discussion
Topic: GPIO_OUT_REG not updating
Replies: 2
Views: 2974

Re: GPIO_OUT_REG not updating

Aha! Got it working now, thanks!
by palmighty
Fri Oct 23, 2020 2:26 pm
Forum: General Discussion
Topic: GPIO_OUT_REG not updating
Replies: 2
Views: 2974

GPIO_OUT_REG not updating

Hi, I just started figuring out the esp32, and by the technical docs, GPIO_OUT_REG should be a R/W register indicating current pin status. However after a simple test: void setup() { Serial.begin(115200); REG_WRITE(GPIO_ENABLE_REG, BIT4); } void loop() { REG_WRITE(GPIO_OUT_REG,BIT4); delay(500); Ser...