probonopd / ESP8266HueEmulator

Emulate a Philips Hue bridge running on an ESP8266 using the Arduino IDE.
MIT License
411 stars 93 forks source link

Do not hardcode client identification string #2

Closed probonopd closed 9 years ago

probonopd commented 9 years ago

In the sketch you will find something like String client = "e7x4kuCaC8h885jo";. This needs to be changed by you to the client string that the client app actually sends. This is a quick and dirty hack, the sketch should parse this out of what is being sent by the app instead.

probonopd commented 9 years ago

Done