Skip to content

Instantly share code, notes, and snippets.

View banthaherder's full-sized avatar

Dawson Mortenson banthaherder

View GitHub Profile

Keybase proof

I hereby claim:

  • I am banthaherder on github.
  • I am dawsonmortenson (https://keybase.io/dawsonmortenson) on keybase.
  • I have a public key whose fingerprint is B3A2 FC85 1F18 42D0 21E6 9DDE 8414 2530 4C8B AA92

To claim this, I am signing this object:

@banthaherder
banthaherder / hue.ino
Last active January 25, 2018 18:30
A snippet of code from phase 1 of my project lights_camera_hue to control your Philips Hue Lights with an Arduino via HTTP requests.
#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
#include <ArduinoJson.h>
// A file I declared my passwords and other sensitive info in
// Delete it if you don't have one
#include "env.h"
// WiFi info
const char* SSID = YOURWIFINAME;
const char* PASSWORD = YOURWIFIPASSWORD;