Most recent activity
-
-
Thanks for your reply. I just added an issue for this: https://github.com/espruino/Espruino/issues/1574
-
-
-
-
This is the board: http://wiki.widora.cn/_media/air-spec.pdf
It exposes all the ESP32 pins, and also GPIO26.
Did you see
analogWrite
working on any ESP32? What would you recommend for the third argument? -
No worries, no LED are being killed here. :-)
I just trying to dim an LED in the console of the the Espruino Web IDE. For what I understand GPIO26 supports DAC. https://docs.espressif.com/projects/esp-idf/en/latest/api-reference/peripherals/dac.html, correct?
I just did the same on GPIO4 (a PWM output) of an ESP8266 which works as expected.
-
I just try to control the brightness of an LED, similar to this: https://www.arduino.cc/en/Tutorial/Fading, just basic stuff. I did not set the
pinMode
, becauseanalogWrite
will set it to 'output'.Oh... with LED dims I mean it turns black. And, even more surprising, after that it does not light up anymore with
digitalWrite(D26, true)
...
@rvleuwen