You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BocaJS's Sample for the ESP8266 D1 Mini included in our Internation NodeBotDays Event
*/
var five = require("johnny-five"); // Magic
var EtherPortClient = require("etherport-client").EtherPortClient; // Connect through WIFI to your compatible StandardFirmataWiFi Device like our ESP8266 D1 Mini
// for YOUR regular arduino (non wifi) uncomment the next line and comment the section below
// var board = new five.Board({ port: "/dev/cu-usbserial" }); // make sure you find out which is your actual port. but only if it doesn't find it automatically.
// For the ESP8266 - D1 Mini from the event
var board = new five.Board({
port: new EtherPortClient({
host: "192.168.29.50", // Update this IP address to the IP address of YOUR device