Compare commits
3 commits
5d1ea14e2e
...
6b6a1e1658
Author | SHA1 | Date | |
---|---|---|---|
|
6b6a1e1658 | ||
|
74a7a1e3a3 | ||
|
6763bda9fb |
10 changed files with 15 additions and 10 deletions
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 2 MiB After Width: | Height: | Size: 2 MiB |
Binary file not shown.
|
@ -1,4 +1,6 @@
|
||||||
|
|
||||||
|
#define VERSION_STR "2.0.0"
|
||||||
|
|
||||||
#define USE_STATIC_IP //! uncomment to enable Static IP Adress
|
#define USE_STATIC_IP //! uncomment to enable Static IP Adress
|
||||||
|
|
||||||
#define SERIAL_BAUD_RATE 115200
|
#define SERIAL_BAUD_RATE 115200
|
||||||
|
@ -7,7 +9,8 @@
|
||||||
|
|
||||||
#define DEVELOPMENT
|
#define DEVELOPMENT
|
||||||
|
|
||||||
#define LIGHT_NAME_STR "Lumini/Lominie Pixie30/P30 light control" // default light name
|
#define LIGHT_NAME "Lumini/Lominie Pixie30/P30 light control" // default light name
|
||||||
|
#define LIGHT_NAME_DEV_POSTFIX " (DEV)"
|
||||||
|
|
||||||
#define LIGHTS_COUNT 4 // do not modify because luminie p30 only has 4 channel, never set above 80
|
#define LIGHTS_COUNT 4 // do not modify because luminie p30 only has 4 channel, never set above 80
|
||||||
|
|
||||||
|
|
|
@ -25,5 +25,6 @@
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
<p>{{VERSION_STR}}</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<h3>{{LIGHT_NAME}}</h3>
|
<h3>{{LIGHT_NAME}}{{LIGHT_NAME_DEV_POSTFIX}}</h3>
|
||||||
<div class="toast"></div>
|
<div class="toast"></div>
|
||||||
<div class="pure-form pure-form-aligned">
|
<div class="pure-form pure-form-aligned">
|
||||||
<div class="pure-controls">
|
<div class="pure-controls">
|
||||||
|
|
|
@ -13,12 +13,6 @@
|
||||||
|
|
||||||
//********* preprocessor block *********//
|
//********* preprocessor block *********//
|
||||||
|
|
||||||
#ifdef DEVELOPMENT
|
|
||||||
#define LIGHT_NAME "Lumini/Lominie Pixie30/P30 light control (DEV)"
|
|
||||||
#else
|
|
||||||
#define LIGHT_NAME LIGHT_NAME_STR
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//********* Config block *********//
|
//********* Config block *********//
|
||||||
|
|
||||||
// blue, warmwhite, purple, white&red&green
|
// blue, warmwhite, purple, white&red&green
|
||||||
|
@ -39,7 +33,7 @@ IPAddress dns (192, 168, 0, 1);
|
||||||
|
|
||||||
//********************************//
|
//********************************//
|
||||||
|
|
||||||
#define LIGHT_VERSION 2.1
|
#define LIGHT_VERSION 2.1 // diyHue light version
|
||||||
|
|
||||||
#define LAST_STATE_STARTUP_LIGHT_LAST_STATE 0
|
#define LAST_STATE_STARTUP_LIGHT_LAST_STATE 0
|
||||||
#define LAST_STATE_STARTUP_LIGHT_ON_STATE 1
|
#define LAST_STATE_STARTUP_LIGHT_ON_STATE 1
|
||||||
|
|
|
@ -28,5 +28,6 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
<p>{{VERSION_STR}}</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<h3>{{LIGHT_NAME}}</h3>
|
<h3>{{LIGHT_NAME}}{{LIGHT_NAME_DEV_POSTFIX}}</h3>
|
||||||
<div class="toast"></div>
|
<div class="toast"></div>
|
||||||
<div class="pure-form pure-form-aligned">
|
<div class="pure-form pure-form-aligned">
|
||||||
<div class="pure-controls">
|
<div class="pure-controls">
|
||||||
|
|
|
@ -534,7 +534,13 @@ String genLightControlHTML()
|
||||||
String replacePlaceholder(String http_content)
|
String replacePlaceholder(String http_content)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
http_content.replace("{{VERSION_STR}}", (String)VERSION_STR);
|
||||||
http_content.replace("{{LIGHT_NAME}}", (String)LIGHT_NAME);
|
http_content.replace("{{LIGHT_NAME}}", (String)LIGHT_NAME);
|
||||||
|
#ifdef DEVELOPMENT
|
||||||
|
http_content.replace("{{LIGHT_NAME_DEV_POSTFIX}}", (String)LIGHT_NAME_DEV_POSTFIX);
|
||||||
|
#else
|
||||||
|
http_content.replace("{{LIGHT_NAME_DEV_POSTFIX}}", (String)" ");
|
||||||
|
#endif
|
||||||
|
|
||||||
http_content.replace("{{LIGHT_COUNT}}", (String)LIGHTS_COUNT);
|
http_content.replace("{{LIGHT_COUNT}}", (String)LIGHTS_COUNT);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue