From 9837fec3b916a299fbef1fef26c91fb533e0d294 Mon Sep 17 00:00:00 2001 From: Scott Lawson Date: Thu, 5 Jan 2017 00:12:28 -0800 Subject: [PATCH] Added more information about device setting in config.py --- python/config.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/python/config.py b/python/config.py index 5678cb5..c666e15 100644 --- a/python/config.py +++ b/python/config.py @@ -4,7 +4,14 @@ from __future__ import division import os DEVICE = 'esp8266' -"""Device used to control LED strip. Must be 'pi' or 'esp8266'""" +"""Device used to control LED strip. Must be 'pi' or 'esp8266' + +'esp8266' means that you are using an ESP8266 module to control the LED strip +and commands will be sent to the ESP8266 over WiFi. + +'pi' means that you are using a Raspberry Pi as a standalone unit to process +audio input and control the LED strip directly. +""" if DEVICE == 'esp8266': UDP_IP = '192.168.137.150'