-
I'm running some of the commodetto examples on my Moddable Three. It looks like every time the drawing command, Poco.begin() and Poco.end(), is called, the LED on the moddable board blinks. How do I stop the LED from blinking? Is there any config option to control the behavior? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Moddable Three uses the ESP8266 which has a very limited number of GPIOs. The LED is connected to GPIO 2, which is also used as the DC pin for the display controller. Therefore, updating the display can toggle the LED. For reference, here is the pin diagram in the Moddable Three documentation and here is the definition of the DC pin of the display controller from the Moddable Three manifest. |
Beta Was this translation helpful? Give feedback.
Moddable Three uses the ESP8266 which has a very limited number of GPIOs. The LED is connected to GPIO 2, which is also used as the DC pin for the display controller. Therefore, updating the display can toggle the LED.
For reference, here is the pin diagram in the Moddable Three documentation and here is the definition of the DC pin of the display controller from the Moddable Three manifest.