====== Arduino Sketchbook ====== Débot GitHub regroupant les différents sketchs que j'ai pu écrire/tester en marge des projets : [[https://github.com/floriantales/arduino_sketchbook|GitHub]] ===== Generic ===== * Interface de commande série (Source : [[https://forum.arduino.cc/index.php?topic=288234.0|Lien]]) : [[https://github.com/floriantales/arduino_sketchbook/tree/master/Generic/serial_interpreter|serial_interpreter]] ===== ESP8266 ===== * Interface de commande série qui liste les SSID Wifi : [[https://github.com/floriantales/arduino_sketchbook/tree/master/ESP8266/SSID_SerialInterface|SSID_SerialInterface]] * Warp10 write GTS : [[http://github.com/floriantales/arduino_sketchbook/tree/master/ESP8266/Warp10_Demo|Warp10_Demo]] * Interface de commande Wifi UDP (Source : [[https://github.com/esp8266/Arduino/blob/master/doc/esp8266wifi/udp-examples.md|Lien]]) : * UDP to SERIAL (mode Wifi SoftAP) : [[https://github.com/floriantales/arduino_sketchbook/tree/master/ESP8266/UDP_to_SERIAL_Wifi_softAP|UDP_to_SERIAL_Wifi_softAP]] * UDP to SERIAL (mode Wifi Station) : [[https://github.com/floriantales/arduino_sketchbook/tree/master/ESP8266/UDP_to_SERIAL_Wifi_Station|UDP_to_SERIAL_Wifi_Station]] * Simple UDP interpreter : [[https://github.com/floriantales/arduino_sketchbook/tree/master/ESP8266/UDP_Interpreter|UDP_Interpreter]] Pour envoyer rapidement un packet UDP en ligne de commande sur localhost (et plus encore : [[http://xmodulo.com/tcp-udp-socket-bash-shell.html|Lien]]) : ''echo -n 'ON'> /dev/udp/ip_du_module/port_du_module'' * Transmettre des notifications PushBullet : * 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~~