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
/* | |
* Bitcoin Price Ticker using ESP8266 WiFi Module - Part 2 | |
* www.KendrickTabi.com | |
* http://www.kendricktabi.com/2015/06/part-2-bitcoin-price-ticker-esp8266.html | |
*/ | |
#include <ESP8266WiFi.h> | |
#include <ArduinoJson.h> | |
const char* ssid = "mySSID"; // insert your SSID |
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
/* | |
* Bitcoin Price Ticker using ESP8266 WiFi Module - Part 2 | |
* www.KendrickTabi.com | |
* http://www.kendricktabi.com/2015/06/part-2-bitcoin-price-ticker-esp8266.html | |
*/ | |
#include <ESP8266WiFi.h> | |
const char* ssid = "mySSID"; // insert your SSID | |
const char* password = "myPassword"; // insert your password |
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
/* | |
* Bitcoin Price Ticker using ESP8266 WiFi Module | |
* www.KendrickTabi.com | |
* http://www.kendricktabi.com/2015/06/bitcoin-price-ticker-using-esp8266-wifi-module.html | |
*/ | |
#include <SoftwareSerial.h> | |
#include <ArduinoJson.h> | |
#define SSID "mySSID" // insert your SSID |
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
/* | |
* Bitcoin Price Ticker using ESP8266 WiFi Module | |
* www.KendrickTabi.com | |
* http://www.kendricktabi.com/2015/06/bitcoin-price-ticker-using-esp8266-wifi-module.html | |
*/ | |
#include <SoftwareSerial.h> | |
#define SSID "mySSID" // insert your SSID | |
#define PASS "myPassword" // insert your password |
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
/* | |
* Simple Arduino Clock using Old DVD Player Display | |
* www.KendrickTabi.com | |
* http://www.kendricktabi.com/2015/05/simple-arduino-clock-using-old-dvd-display.html | |
*/ | |
#include <Time.h> | |
#include <SevSeg.h> | |
float time; |
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
/* | |
* Arduino and RDM630 RFID module | |
* www.KendrickTabi.com | |
* http://www.kendricktabi.com/2015/04/arduino-and-rdm630-rfid-module.html | |
*/ | |
#include <SoftwareSerial.h> | |
SoftwareSerial RDM630 = SoftwareSerial(2,3); // RFID |
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
/* | |
* Arduino and RDM630 RFID module | |
* www.KendrickTabi.com | |
* http://www.kendricktabi.com/2015/04/arduino-and-rdm630-rfid-module.html | |
*/ | |
#include <SoftwareSerial.h> | |
SoftwareSerial RDM630 = SoftwareSerial(2,3); // RFID |
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
/* | |
* Connecting ESP8266 (ESP-01) and Nokia 5110 LCD | |
* www.KendrickTabi.com | |
* http://www.kendricktabi.com/2015/08/esp8266-and-nokia-5110-lcd.html | |
*/ | |
#include <ESP8266WiFi.h> | |
#include <ArduinoJson.h> | |
#define PIN_SCE 3 //Pin 3 on LCD |