From 4e299c5a1509175c49d3215b628bb785eff8cfab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Fri, 10 Feb 2017 12:00:28 +0100 Subject: [PATCH] Removed unsupported board from pics --- CHANGELOG.md | 2 +- README.md | 8 ++++---- code/espurna/config/hardware.h | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02053411..e470cad0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,7 +56,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Configurable (in code) mapping between buttons and relays - MQTT messages for button events - Added support for Itead Studio 1CH inching/self locking smart switch board -- Added support for JanGow Wifi Relay boards (both NC and NO versions) +- Added support for Jan Goedeke Wifi Relay boards (both NC and NO versions) - Notify OTA updates to websocket clients, automatically reload page - Support for pulse mode notification LED and button - Revert relay state mode on boot (thanks to Minh Phuong Ly) diff --git a/README.md b/README.md index dbd5ed62..8276514d 100644 --- a/README.md +++ b/README.md @@ -56,16 +56,16 @@ Here is the list of supported hardware. For more information please refer to the |-|-|-| |![IteadStudio S20](images/devices/s20.jpg)|![IteadStudio Slampher](images/devices/slampher.jpg)|![IteadStudio Sonoff 4CH](images/devices/sonoff-4ch.jpg)| |**IteadStudio S20**|**IteadStudio Slampher**|**IteadStudio Sonoff 4CH**| -|![IteadStudio Sonoff Basic](images/devices/sonoff-basic.jpg)|![IteadStudio Motor Switch](images/devices/motor-switch.jpg)|![IteadStudio 1CH Inching](images/devices/1ch-inching.jpg)| -|**IteadStudio Sonoff Basic**|**IteadStudio Motor Switch**|**IteadStudio 1CH Inching**| +|![IteadStudio Sonoff Basic](images/devices/sonoff-basic.jpg)|![IteadStudio 1CH Inching](images/devices/1ch-inching.jpg)|| +|**IteadStudio Sonoff Basic**||**IteadStudio 1CH Inching**|| |![IteadStudio Sonoff Dual](images/devices/sonoff-dual.jpg)|![IteadStudio Sonoff POW](images/devices/sonoff-pow.jpg)|![IteadStudio Sonoff TH10/TH16](images/devices/sonoff-th10-th16.jpg)| |**IteadStudio Sonoff Dual**|**IteadStudio Sonoff POW**|**IteadStudio Sonoff TH10/TH16**| |![IteadStudio Sonoff RF](images/devices/sonoff-rf.jpg)|![IteadStudio Sonoff SV](images/devices/sonoff-sv.jpg)|![IteadStudio Sonoff Touch](images/devices/sonoff-touch.jpg)| |**IteadStudio Sonoff RF**|**IteadStudio Sonoff SV**|**IteadStudio Sonoff Touch**| |![Wemos D1 Mini Relay Shield](images/devices/d1mini.jpg)|![Electrodragon Relay Board](images/devices/electrodragon-relay-board.jpg)|![WorkChoice EcoPlug](images/devices/workchoice-ecoplug.jpg)| |**Wemos D1 Mini Relay Shield**|**Electrodragon Relay Board**|**WorkChoice EcoPlug**| -|![JanGoe Wifi Relay (NO/NC)](images/devices/jangoe-wifi-relay.png)|![OpenEnergyMonitor WiFi MQTT Relay / Thermostat](images/devices/mqtt-relay.jpg)|![Jorge García Wifi + Relays Board Kit](images/devices/jorgegarcia-wifi-relays-board-kit.jpg)| -|**JanGoe Wifi Relay (NO/NC)**|**OpenEnergyMonitor WiFi MQTT Relay / Thermostat**|**Jorge García Wifi + Relays Board Kit**| +|![Jan Goedeke Wifi Relay (NO/NC)](images/devices/jangoe-wifi-relay.png)|![OpenEnergyMonitor WiFi MQTT Relay / Thermostat](images/devices/mqtt-relay.jpg)|![Jorge García Wifi + Relays Board Kit](images/devices/jorgegarcia-wifi-relays-board-kit.jpg)| +|**Jan Goedeke Wifi Relay (NO/NC)**|**OpenEnergyMonitor WiFi MQTT Relay / Thermostat**|**Jorge García Wifi + Relays Board Kit**| ## License diff --git a/code/espurna/config/hardware.h b/code/espurna/config/hardware.h index de011a40..2e88146e 100644 --- a/code/espurna/config/hardware.h +++ b/code/espurna/config/hardware.h @@ -228,13 +228,13 @@ #define LED1_PIN_INVERSE 0 // ----------------------------------------------------------------------------- -// JanGoe Wifi Relay +// Jan Goedeke Wifi Relay // https://github.com/JanGoe/esp8266-wifi-relay // ----------------------------------------------------------------------------- #elif defined(WIFI_RELAY_NC) - #define MANUFACTURER "JANGOE" + #define MANUFACTURER "JAN_GOEDEKE" #define DEVICE "WIFI_RELAY_NC" #define BUTTON1_PIN 12 #define BUTTON1_RELAY 1 @@ -249,7 +249,7 @@ #elif defined(WIFI_RELAY_NO) - #define MANUFACTURER "JANGOE" + #define MANUFACTURER "JAN_GOEDEKE" #define DEVICE "WIFI_RELAY_NO" #define BUTTON1_PIN 12 #define BUTTON1_RELAY 1