Last active
February 7, 2020 12:19
On fait clignoter les LEDs intégrées à l'ESP32_CAM (modèle "AI Thinker")
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* On fait clignoter les LEDs intégrées à l'ESP32_CAM | |
* (modèle "AI Thinker") | |
* | |
* Plus d'infos: | |
* https://electroniqueamateur.blogspot.com/2020/02/les-leds-de-lesp32-cam.html | |
* | |
*/ | |
#define LEDrouge 33 // LED rouge: GPIO 33 | |
#define LEDblanche 4 // LED blanche: GPIO 4 | |
#define canalPWM 7 // un canal PWM disponible | |
void setup() { | |
pinMode(LEDrouge, OUTPUT); // GPIO 33 réglée en sortie | |
ledcAttachPin(LEDblanche, 7); // Signal PWM broche 4, canal 7. | |
ledcSetup(canalPWM, 5000, 12); // canal = 7, frequence = 5000 Hz, resolution = 12 bits | |
} | |
void loop() { | |
digitalWrite(LEDrouge, LOW); // LED rouge allumée | |
ledcWrite(canalPWM, 0); // LED blanche éteinte (rapport cyclique 0%) | |
delay(1000); | |
digitalWrite(LEDrouge, HIGH); // LED rouge éteinte | |
ledcWrite(canalPWM, 2); // LED blanche allumée (rapport cyclique 0,1%!) | |
delay(1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment