Compare commits

..

2 Commits

Author SHA1 Message Date
c9073c1b7d move magic and appName into specific code file 2019-04-26 12:14:45 +02:00
4eb14ef3b5 md stuff 2019-04-25 17:12:58 +02:00
3 changed files with 5 additions and 4 deletions

View File

@@ -15,3 +15,6 @@ configItems = [
{"label":"MQTT DebugTopic", "key":"mqttDebugTopic", "type":"C", "length":64, "default":"IoT/RgbLed1/Debug"}, {"label":"MQTT DebugTopic", "key":"mqttDebugTopic", "type":"C", "length":64, "default":"IoT/RgbLed1/Debug"},
{"label":"DebugMode", "key":"debugMode", "type":"I", "default":0} {"label":"DebugMode", "key":"debugMode", "type":"I", "default":0}
] ]
magic = 0xC0DE0006
appName = "ESP8266 based RgbLedLight"

View File

@@ -1,7 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
from Cheetah.Template import Template from Cheetah.Template import Template
from ConfigDataStructure import configItems from ConfigDataStructure import configItems, magic, appName
@@ -23,8 +23,6 @@ from ConfigDataStructure import configItems
#] #]
magic = 0xC0DE0005
appName = "ESP8266 based TwoLedSignal"
confWifiSsid = "espconfig" confWifiSsid = "espconfig"
params = { params = {

View File

@@ -1,4 +1,4 @@
==== Usage of the esp8266boilerplate project in your own Arduino ESP8266 projects ==== # Usage of the esp8266boilerplate project in your own Arduino ESP8266 projects
Wolfgang Hottgenroth <woho@hottis.de> Wolfgang Hottgenroth <woho@hottis.de>