11-06-2024, 05:52 PM
Faites un programme très simple. Comme ci apres. Il fait clignoter une LED en GPIO 17, si vous en avez une et donne le temps en ms depuis la mise en route sur le port série à 115200 bauds. Vous essayez et regardez s'il sort quelque chose sur le moniteur série.
Cdlt
André
int LED=17;
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED as an output.
pinMode(LED, OUTPUT);
//Ports Série ESP
Serial.begin(115200);
Serial.println("Booting");
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED, HIGH); // turn the LED on (HIGH is the voltage level)
delay(100); // wait for a second
digitalWrite(LED, LOW); // turn the LED off by making the voltage LOW
delay(1000);
// wait for a second
Serial.println(millis());
}
Cdlt
André
int LED=17;
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED as an output.
pinMode(LED, OUTPUT);
//Ports Série ESP
Serial.begin(115200);
Serial.println("Booting");
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED, HIGH); // turn the LED on (HIGH is the voltage level)
delay(100); // wait for a second
digitalWrite(LED, LOW); // turn the LED off by making the voltage LOW
delay(1000);
// wait for a second
Serial.println(millis());
}