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/04/03 13:53] – [IDE] florian | 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:// | + | L' |
- | \\ | + | |
- | Exemple de code : | + | |
+ | ^Station Mode^Access Point^Station + Access Point| | ||
+ | |{{http:// | ||
+ | La documentation d' | ||
- | <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 : | ||
- | |||
- | < | ||
- | echo -n " | ||
- | </ | ||
- | |||
- | ===== Transmettre des notifications PushBullet ===== | ||
- | |||
- | Librairie pushbullet sur Github : [[https:// | ||
- | \\ | ||
- | Version simplifiée à tester : [[http:// | ||
- | |||
- | ===== Utilisation en ligne de commande ===== | ||
- | |||
- | ==== IDE ==== | ||
- | |||
- | Compiler et uploader : '' | ||
- | < | ||
- | '' | ||
- | </ | ||
- | Récupérer la configuration courante : '' | ||
- | |||
- | |||
- | ==== Port COM ==== | ||
- | Utiliser **minicom** : lancer avec colorisation '' | ||
+ | ~~socialite~~ | ||
electronique/micro_controleurs/esp8266/sketchbook.1491224021.txt.gz · Dernière modification : 2025/01/14 11:19 (modification externe)