Skip to content

Instantly share code, notes, and snippets.

/**
BasicHTTPClient.ino
Created on: 24.05.2015
*/
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include <ESP8266WiFiMulti.h>
**
* ----------------------------------------------------------------------------
* 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
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() {
/*
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
#include <SoftwareSerial.h>
SoftwareSerial gsm(5, 4);
void setup() {
Serial.begin(115200);
gsm.begin(1200);
Serial.println("\GSM test started");
#include <ESP8266WiFi.h>
const char* ssid = "Home";
const char* password = "asdfghjkl";
int ledPin = D8;
int ledPin1 = D7;
int ledPin2 = D6;
WiFiServer server(80);
#include <ESP8266WiFi.h>
const char* ssid = "Home";
const char* password = "asdfghjkl";
int ledPin = 13;
WiFiServer server(80);
void setup() {
// 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>
#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
#include <ESP8266WiFi.h>
const char* ssid = "Home";
const char* password = "asdfghjkl";
int ledPin1 = 13;
int ledPin2 = 12;
int ledPin3 = 11;
WiFiServer server(80);