This file contains 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
/** | |
BasicHTTPClient.ino | |
Created on: 24.05.2015 | |
*/ | |
#include <Arduino.h> | |
#include <ESP8266WiFi.h> | |
#include <ESP8266WiFiMulti.h> |
This file contains 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
** | |
* ---------------------------------------------------------------------------- | |
* This is a MFRC522 library example; see https://github.com/miguelbalboa/rfid | |
* for further details and other examples. | |
* | |
* NOTE: The library file MFRC522.h has a lot of useful info. Please read it. | |
* | |
* Released into the public domain. | |
* ---------------------------------------------------------------------------- | |
* This sample shows how to read and write data blocks on a MIFARE Classic PICC |
This file contains 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
int LED = 13; // Use the onboard Uno LED | |
int obstaclePin = 7; // This is our input pin | |
int hasObstacle = HIGH; // HIGH MEANS NO OBSTACLE | |
void setup() { | |
pinMode(LED, OUTPUT); | |
pinMode(obstaclePin, INPUT); | |
Serial.begin(9600); | |
} | |
void loop() { |
This file contains 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
/* | |
Shift Register Example | |
Turning on the outputs of a 74HC595 using an array | |
Hardware: | |
* 74HC595 shift register | |
* LEDs attached to each of the outputs of the shift register | |
*/ | |
//Pin connected to ST_CP of 74HC595 |
This file contains 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 <SoftwareSerial.h> | |
SoftwareSerial gsm(5, 4); | |
void setup() { | |
Serial.begin(115200); | |
gsm.begin(1200); | |
Serial.println("\GSM test started"); |
This file contains 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 = "Home"; | |
const char* password = "asdfghjkl"; | |
int ledPin = D8; | |
int ledPin1 = D7; | |
int ledPin2 = D6; | |
WiFiServer server(80); |
This file contains 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 = "Home"; | |
const char* password = "asdfghjkl"; | |
int ledPin = 13; | |
WiFiServer server(80); | |
void setup() { |
This file contains 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
// http://geek.adachsoft.com | |
//card int hex uid | |
//card1 - 136-4-118-179-73 88-4-76-B3-49 4-76-B3-1A-4B-3F-80 | |
//card2 - 204-153-242-137-46 CC-99-F2-89-2E CC-99-F2-89 | |
//card3 - 245-74-201-73-63 F5-4A-C9-49-3F F5-4A-C9-49 | |
//card4 - 23-103-238-43-181 17-67-EE-2B-B5 17-67-EE-2B | |
#include <SPI.h> | |
#include <MFRC522.h> | |
#include <Servo.h> |
This file contains 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
#define NOTE_B0 31 | |
#define NOTE_C1 33 | |
#define NOTE_CS1 35 | |
#define NOTE_D1 37 | |
#define NOTE_DS1 39 | |
#define NOTE_E1 41 | |
#define NOTE_F1 44 | |
#define NOTE_FS1 46 | |
#define NOTE_G1 49 | |
#define NOTE_GS1 52 |
This file contains 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 = "Home"; | |
const char* password = "asdfghjkl"; | |
int ledPin1 = 13; | |
int ledPin2 = 12; | |
int ledPin3 = 11; | |
WiFiServer server(80); |