Skip to content

Instantly share code, notes, and snippets.

View kittipongint's full-sized avatar
😄

kittipongint kittipongint

😄
View GitHub Profile
@kittipongint
kittipongint / WeMos D1 mini - AC Remote
Last active March 25, 2017 20:32
Sample for AC Remote - LG with 4 button, Power On, Off, Temp. 20°C, and 25°C
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#include <IRremoteESP8266.h>
const char* ssid = "xxxx"; //your wifi's ssid
const char* password = "xxxx"; //your wifi's password
MDNSResponder mdns;
@kittipongint
kittipongint / WeMos D1 mini - Weather station
Created March 23, 2017 14:29
Detect temperature and send notification to Line application via LINE Notify.
void Line_Notify(String message);
#include <ESP8266WiFi.h>
#include <DHT.h>
#define DHTPIN D2
// Existing WiFi network
const char* ssid = "xxxxx"; // your wifi name
const char* password = "xxxxx"; // your wifi password