Herunterladen Inhalt Inhalt Diese Seite drucken
Inhaltsverzeichnis
Montageanleitung / assembly instructions
The rover creates his own hot spot (you don't need another existing WiFi network) with his
own SSID. The name of the SSID is "creativeXX". XX is the 2 digit number on your
WEMOS-board. "creative12" for rover number 12. Choose this network and log in with
"creative12"; the password being the same ass the SSID.
Wenn alles gut geht, meldet dein Handy "Connected". Starte nun einen Internet-Browser
und gib als Adresse "192.168.168.168/" ein. Achte auf den Slash "/" am Ende. Im Handy-
Display erscheint nun ein grafisches Menü mit einigen Knöpfen, die den Roboter steuern
können. Probier es aus!
After your phone is showing "Connected", you start an Internet browser and type the
following URL: "192.168.168.168/". Don't forget the slash ("/"). Now you see some buttons
to control your rover.

3. Software

Hier das Arduino Programm , das natürlich nach Belieben angepasst werden soll.
Here the basic arduino sketch. Change it at will.
/*
*
Space Mining Rover aka snider1
*
(wemos webserver with AP and L293D)
*
creative-lab.lu
*/
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
const
char
*ssid = "creative23";
const
char
*password = "creative23";
IPAddress IP_AP(192, 168, 168, 168);
IPAddress MASK_AP(255, 255, 255, 0);
ESP8266WebServer server(80);
const
int
slow = 500;
const
int
medium = 750;
// AP settings
// password must have more than 7 characters!!
// create object with name "server" port 80
// speed (500 to get min 2,5V)
Creative Lab
Seite 9 von 11
Inhaltsverzeichnis
loading

Inhaltsverzeichnis