This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import processing.serial.*; | |
Serial arduino; | |
void setup() { | |
arduino = new Serial(this, Serial.list()[0], 9600); | |
size(500, 500); | |
} | |
void draw() { | |
if(arduino.available() > 0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup() { | |
Serial.begin(9600); | |
} | |
int status_led = 0; | |
void loop() { | |
if(Serial.available() > 0) | |
{ | |
int empfangen = Serial.read(); | |
if(empfangen == 48) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
const char* ssid = "WLAN HORNISSENWEG 4"; | |
const char* password = "unserpasswort"; | |
WiFiServer server(80); | |
void setup() { | |
Serial.begin(115200); | |
delay(10); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup() { | |
Serial.begin(115200); | |
pinMode(13, OUTPUT); | |
} | |
void loop() { | |
if(Serial.available() >0) | |
{ | |
delay(10); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <ESP8266WebServer.h> | |
#include <ESP8266mDNS.h> | |
#include <Time.h> | |
const char* ssid = "************"; | |
const char* password = "************"; | |
MDNSResponder mdns; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <WiFiServer.h> | |
#include <WiFiUdp.h> | |
#include <ESP8266mDNS.h> | |
#include <ESP8266WebServer.h> | |
ESP8266WebServer server(80); | |
MDNSResponder mdns; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Include the ESP8266 WiFi library. (Works a lot like the | |
// Arduino WiFi library.) | |
#include <ESP8266WiFi.h> | |
// Include the SparkFun Phant library. | |
#include <Phant.h> | |
////////////////////// | |
// WiFi Definitions // | |
////////////////////// | |
const char WiFiSSID[] = "WiFi_Network"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <WiFiServer.h> | |
#include <ESP8266WebServer.h> | |
#include <ESP8266mDNS.h> | |
#include <SPI.h> | |
char ssid[] = "*******************"; //WLAN Netzwerk | |
char pass[] = "***************"; //WLAN Passwort |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
const char* ssid = "****************"; | |
const char* password = "**********'*"; | |
WiFiServer server(80); | |
void setup() { | |
Serial.begin(115200); | |
delay(10); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <WiFiServer.h> | |
#include <WiFiUdp.h> | |
#include <ESP8266mDNS.h> | |
#include <ESP8266WebServer.h> | |
ESP8266WebServer server(80); |