electronique:micro_controleurs:esp8266:sketchbook
Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
electronique:micro_controleurs:esp8266:sketchbook [2017/03/31 16:40] – modification externe 127.0.0.1 | electronique:micro_controleurs:esp8266:sketchbook [2025/01/14 11:19] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | ====== | + | ====== |
===== Les liens indispendables ===== | ===== Les liens indispendables ===== | ||
Les bonnes pratiques pour débuter : [[https:// | Les bonnes pratiques pour débuter : [[https:// | ||
- | Le github officiel d' | + | Le github officiel d' |
ESP8266 Arduino core documentation, | ESP8266 Arduino core documentation, | ||
+ | ESP8266 Arduino core documentation, | ||
Le forum officiel quand rien ne va plus : [[http:// | Le forum officiel quand rien ne va plus : [[http:// | ||
- | Des projets à gogo : [[https:// | + | Des projets à gogo : [[https:// |
+ | Des exemples de code (Capteurs, OTA etc ...) : [[http:// | ||
===== Activer le débug ===== | ===== Activer le débug ===== | ||
Ligne 13: | Ligne 16: | ||
Activer le mode debug sur l'IDE Arduino pour Wemos : [[http:// | Activer le mode debug sur l'IDE Arduino pour Wemos : [[http:// | ||
- | ===== Interface de commande série | + | ===== Wifi operating mode ===== |
- | + | ||
- | Source : [[https:// | + | |
- | \\ | + | |
- | Exemple de code : | + | |
- | + | ||
- | + | ||
- | + | ||
- | <code arduino serial_interpreter.ino> | + | |
- | const byte numChars = 32; | + | |
- | char receivedChars[numChars]; | + | |
- | char endMarker = ' | + | |
- | + | ||
- | boolean newData = false; | + | |
- | + | ||
- | void setup() { | + | |
- | | + | |
- | | + | |
- | } | + | |
- | + | ||
- | void loop() { | + | |
- | | + | |
- | | + | |
- | } | + | |
- | + | ||
- | void recvWithEndMarker() { | + | |
- | | + | |
- | + | ||
- | char rc; | + | |
- | + | ||
- | while (Serial.available()> | + | |
- | rc = Serial.read(); | + | |
- | + | ||
- | if (rc != endMarker) { | + | |
- | receivedChars[ndx] = rc; | + | |
- | ndx++; | + | |
- | if (ndx>= numChars) { | + | |
- | ndx = numChars - 1; | + | |
- | } | + | |
- | } | + | |
- | else { | + | |
- | receivedChars[ndx] = ' | + | |
- | ndx = 0; | + | |
- | newData = true; | + | |
- | } | + | |
- | } | + | |
- | } | + | |
- | + | ||
- | void showNewData() { | + | |
- | if (newData == true) { | + | |
- | | + | |
- | + | ||
- | // Conversion d'un array en string pour faire des comparaisons | + | |
- | | + | |
- | if (str == " | + | |
- | + | ||
- | | + | |
- | } | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | ===== Interface de commande UDP ===== | + | |
- | + | ||
- | [[https:// | + | |
- | \\ | + | |
- | Exemple pour allumer ou éteindre un relais : | + | |
- | + | ||
- | <code arduino udp_interpreter.ino> | + | |
- | #include < | + | |
- | #include < | + | |
- | + | ||
- | const char* ssid = " | + | |
- | const char* password = " | + | |
- | + | ||
- | WiFiUDP Udp; | + | |
- | unsigned int localUdpPort = 4210; // local port to listen on | + | |
- | char incomingPacket[255]; | + | |
- | char replyPacekt[] = "Hi there! Got the message : | + | |
- | + | ||
- | void setup() | + | |
- | { | + | |
- | Serial.begin(115200); | + | |
- | Serial.println(); | + | |
- | + | ||
- | Serial.printf(" | + | |
- | WiFi.begin(ssid, | + | |
- | while (WiFi.status() != WL_CONNECTED) | + | |
- | { | + | |
- | delay(500); | + | |
- | Serial.print(" | + | |
- | } | + | |
- | Serial.println(" | + | |
- | + | ||
- | Udp.begin(localUdpPort); | + | |
- | Serial.printf(" | + | |
- | + | ||
- | pinMode(D1, OUTPUT ); | + | |
- | digitalWrite(D1, | + | |
- | } | + | |
- | + | ||
- | void loop() | + | |
- | { | + | |
- | int packetSize = Udp.parsePacket(); | + | |
- | if (packetSize) | + | |
- | { | + | |
- | // receive incoming UDP packets | + | |
- | Serial.printf(" | + | |
- | int len = Udp.read(incomingPacket, | + | |
- | if (len> 0) | + | |
- | { | + | |
- | incomingPacket[len] = 0; | + | |
- | } | + | |
- | Serial.printf(" | + | |
- | + | ||
- | // Conversion d'un array en string pour faire des comparaisons | + | |
- | | + | |
- | + | ||
- | if (udp_packet_string == " | + | |
- | else if (udp_packet_string == " | + | |
- | else Serial.printf(" | + | |
- | + | ||
- | } | + | |
- | } | + | |
- | </ | + | |
- | Pour envoyer rapidement un packet UDP en ligne de commande | + | L' |
- | < | + | ^Station Mode^Access Point^Station + Access Point| |
- | echo -n " | + | |{{http:// |
- | </code> | + | |
- | ===== Transmettre des notifications PushBullet ===== | + | La documentation d' |
- | Librairie pushbullet sur Github : [[https:// | ||
\\ | \\ | ||
- | Version simplifiée à tester : [[http:// | ||
+ | ~~socialite~~ | ||
electronique/micro_controleurs/esp8266/sketchbook.1490974827.txt.gz · Dernière modification : 2025/01/14 11:19 (modification externe)