Outils pour utilisateurs

Outils du site


electronique:micro_controleurs:esp8266:sketchbook

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
electronique:micro_controleurs:esp8266:sketchbook [2017/03/31 16:40] – modification externe 127.0.0.1electronique:micro_controleurs:esp8266:sketchbook [2025/01/14 11:19] (Version actuelle) – modification externe 127.0.0.1
Ligne 1: Ligne 1:
-====== Sketchbook, tips and tricks ======+====== Tips and tricks ======
  
 ===== Les liens indispendables ===== ===== Les liens indispendables =====
  
 Les bonnes pratiques pour débuter : [[https://learn.sparkfun.com/tutorials/esp8266-thing-hookup-guide/using-the-arduino-addon|Sparkfun]]\\ Les bonnes pratiques pour débuter : [[https://learn.sparkfun.com/tutorials/esp8266-thing-hookup-guide/using-the-arduino-addon|Sparkfun]]\\
-Le github officiel d'espressif pour l'IDE arduino : [[https://github.com/esp8266/Arduino|Github]]\\+Le github officiel d'espressif pour l'IDE arduino (installation, liens des docs etc ..) : [[https://github.com/esp8266/Arduino|Github]]\\
 ESP8266 Arduino core documentation, version 2.3.0 : [[http://esp8266.github.io/Arduino/versions/2.3.0/|esp8266.github.io]]\\ ESP8266 Arduino core documentation, version 2.3.0 : [[http://esp8266.github.io/Arduino/versions/2.3.0/|esp8266.github.io]]\\
 +ESP8266 Arduino core documentation, version 2.4.0 : [[https://arduino-esp8266.readthedocs.io/en/latest/|arduino-esp8266.readthedoc.io]]\\
 Le forum officiel quand rien ne va plus : [[http://www.esp8266.com|www.esp8266.com]]\\ Le forum officiel quand rien ne va plus : [[http://www.esp8266.com|www.esp8266.com]]\\
-Des projets à gogo : [[https://www.hackster.io/search?q=esp8266|Hackster.io (ESP8266)]]+Des projets à gogo : [[https://www.hackster.io/search?q=esp8266|Hackster.io (ESP8266)]]\\ 
 +Des exemples de code (Capteurs, OTA etc ...) : [[http://www.myiot.co.uk/wemos/|myiot.co.uk/wemos]] 
  
 ===== Activer le débug ===== ===== Activer le débug =====
Ligne 13: Ligne 16:
 Activer le mode debug sur l'IDE Arduino pour Wemos : [[http://www.esp8266.com/viewtopic.php?f=32&t=11476&hilit=Wemos&start=8|Lien]] Activer le mode debug sur l'IDE Arduino pour Wemos : [[http://www.esp8266.com/viewtopic.php?f=32&t=11476&hilit=Wemos&start=8|Lien]]
  
-===== Interface de commande série ===== +===== Wifi operating mode =====
- +
-Source : [[https://forum.arduino.cc/index.php?topic=288234.0|Lien]]\\ +
-\\ +
-Exemple de code : +
- +
- +
- +
-<code arduino serial_interpreter.ino> +
-const byte numChars = 32; +
-char receivedChars[numChars]; // an array to store the received data +
-char endMarker = '\r'; // Il s'agit de marqueur de fin pour minicom (quand on press Enter) +
- +
-boolean newData = false; +
- +
-void setup() { +
- Serial.begin(9600); +
- Serial.println("<Arduino is ready>"); +
-+
- +
-void loop() { +
- recvWithEndMarker(); +
- showNewData(); +
-+
- +
-void recvWithEndMarker() { +
- static byte ndx = 0; +
- +
- char rc; +
- +
- while (Serial.available()> 0 && newData == false) { +
- rc = Serial.read(); +
- +
-  if (rc != endMarker) { +
-  receivedChars[ndx] = rc; +
-  ndx++; +
-  if (ndx>= numChars) { +
-  ndx = numChars - 1; +
-  } +
-  } +
-  else { +
-  receivedChars[ndx] = '\0'; // terminate the string +
-   ndx = 0; +
-  newData = true; +
-  } +
- } +
-+
- +
-void showNewData() { +
- if (newData == true) { +
-   Serial.printf("Commande reçue %s\n", receivedChars); +
- +
-   // Conversion d'un array en string pour faire des comparaisons +
-   String str((char*)receivedChars); +
-   if (str == "test") Serial.println("It works!"); +
- +
-   newData = false; +
- } +
-+
-</code> +
- +
-===== Interface de commande UDP ===== +
- +
-[[https://github.com/esp8266/Arduino/blob/master/doc/esp8266wifi/udp-examples.md|Lien]]\\ +
-\\ +
-Exemple pour allumer ou éteindre un relais : +
- +
-<code arduino udp_interpreter.ino> +
-#include <ESP8266WiFi.h> +
-#include <WiFiUdp.h> +
- +
-const char* ssid = "freebox"; +
-const char* password = "maison de clairon et tata"; +
- +
-WiFiUDP Udp; +
-unsigned int localUdpPort = 4210;  // local port to listen on +
-char incomingPacket[255];  // buffer for incoming packets +
-char  replyPacekt[] = "Hi there! Got the message :-)";  // a reply string to send back +
- +
-void setup() +
-+
-  Serial.begin(115200); +
-  Serial.println(); +
- +
-  Serial.printf("Connecting to %s ", ssid); +
-  WiFi.begin(ssid, password); +
-  while (WiFi.status() != WL_CONNECTED) +
-  { +
-    delay(500); +
-    Serial.print("."); +
-  } +
-  Serial.println(" connected"); +
- +
-  Udp.begin(localUdpPort); +
-  Serial.printf("Now listening at IP %s, UDP port %d\n", WiFi.localIP().toString().c_str(), localUdpPort); +
- +
-  pinMode(D1, OUTPUT ); +
-  digitalWrite(D1, LOW); +
-+
- +
-void loop() +
-+
-  int packetSize = Udp.parsePacket(); +
-  if (packetSize) +
-  { +
-    // receive incoming UDP packets +
-    Serial.printf("Received %d bytes from %s, port %d\n", packetSize, Udp.remoteIP().toString().c_str(), Udp.remotePort()); +
-    int len = Udp.read(incomingPacket, 255); +
-    if (len> 0) +
-    { +
-      incomingPacket[len] = 0; +
-    } +
-    Serial.printf("UDP packet contents: %s\n", incomingPacket); +
- +
-    // Conversion d'un array en string pour faire des comparaisons +
-   String udp_packet_string((char*)incomingPacket); +
- +
-    if (udp_packet_string == "ON" ) digitalWrite(D1, HIGH); +
-    else if (udp_packet_string == "OFF" ) digitalWrite(D1, LOW); +
-    else Serial.printf("Commande non reconnue ...\n"); +
- +
-  } +
-+
-</code>+
  
-Pour envoyer rapidement un packet UDP en ligne de commande :+L'ESP8266 peut fonctionner en mode Station (STA) (connecté à une box par exemple), en mode Access Point (AP) ou les deux (STA+AP) :
  
-<code> +^Station Mode^Access Point^Station + Access Point| 
-echo -n "ON"> /dev/udp/ip_du_module/port_du_module +|{{http://doku.floriantales.fr//lib/plugins/ckgedit/fckeditor/userfiles/image/electronique/micro_controleurs/esp8266/sketchbook/esp8266-station.png?direct&300x158}}|{{http://doku.floriantales.fr//lib/plugins/ckgedit/fckeditor/userfiles/image/electronique/micro_controleurs/esp8266/sketchbook/esp8266-soft-access-point.png?direct&300x145}}|{{http://doku.floriantales.fr//lib/plugins/ckgedit/fckeditor/userfiles/image/electronique/micro_controleurs/esp8266/sketchbook/esp8266-station-soft-access-point.png?direct&300x162}}|
-</code>+
  
-===== Transmettre des notifications PushBullet =====+La documentation d'espressif pour l'IDE Arduino décrit ces modes et les classes *.h disponibles pour la librairies wifi Arduino : [[https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/readme.html#introduction|Arduino Core Documentation]]
  
-Librairie pushbullet sur Github : [[https://github.com/koen-github/PushBullet-ESP8266|PushBullet-ESP8266]]\\ 
 \\ \\
-Version simplifiée à tester : [[http://www.esp8266.com/viewtopic.php?f=29&t=7116|www.esp8266.com]] 
  
 +~~socialite~~
  
electronique/micro_controleurs/esp8266/sketchbook.1490974827.txt.gz · Dernière modification : 2025/01/14 11:19 (modification externe)