From 7bfbe6738cd9176998a5b17457d216128aa65360 Mon Sep 17 00:00:00 2001 From: RTurala Date: Thu, 29 Nov 2018 19:04:47 +0100 Subject: [PATCH] Created BlitzWolf SHP6 (markdown) --- BlitzWolf-SHP6.md | 90 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 BlitzWolf-SHP6.md diff --git a/BlitzWolf-SHP6.md b/BlitzWolf-SHP6.md new file mode 100644 index 00000000..41d3a04e --- /dev/null +++ b/BlitzWolf-SHP6.md @@ -0,0 +1,90 @@ +[[https://raw.githubusercontent.com/wiki/RTurala/Sonoff-Tasmota/images/BlitzWolf-SHP6/BW-SHP6-01.jpg|BlitzWolf SHP6]] + +* Product page: [BlitzWolf® BW-SHP6 - 2300W EU WIFI Smart Socket](https://www.blitzwolf.com/2300W-EU-WIFI-Smart-Socket-p-300.html) + +## Serial Connection + +Please see the [Hardware Preparation](https://github.com/arendst/Sonoff-Tasmota/wiki/Hardware-Preparation) page for general instructions. + +### Step 1 +**Disconnect device from power source!** + +### Step 2 +Remove one screw on the back of the device. **PH1** screwdriver required. + +[[https://raw.githubusercontent.com/wiki/RTurala/Sonoff-Tasmota/images/BlitzWolf-SHP6/BW-SHP6-02.jpg|One PH1 Screw]] + +### Step 3 +Undo 2 screws. **PH1** screwdriver required. +Disconnect antenna. + +[[https://raw.githubusercontent.com/wiki/RTurala/Sonoff-Tasmota/images/BlitzWolf-SHP6/BW-SHP6-03.jpg|Two PH1 Screws and antenna]] + +### Step 4 +Carefully remove PCB from casing for easier soldering. +* Don't stress antenna cable too much. +* Don't lose metal tube. + +### Step 5 +Solder cables to the ESP Pins. + +[[https://raw.githubusercontent.com/wiki/RTurala/Sonoff-Tasmota/images/BlitzWolf-SHP6/BW-SHP6-04.jpg|Solder points]] + +### Step 6 +Connect serial adapter and make a shortwire between Pin IO0 and GND during startup (for entering flashmode). +[[https://raw.githubusercontent.com/wiki/RTurala/Sonoff-Tasmota/images/BlitzWolf-SHP6/BW-SHP6-05.jpg|Soldered cables]] + +### Step 7 +Flash Tasmota. + +## Other photos + +[[https://raw.githubusercontent.com/wiki/RTurala/Sonoff-Tasmota/images/BlitzWolf-SHP6/BW-SHP6-06.jpg|Left side]] +[[https://raw.githubusercontent.com/wiki/RTurala/Sonoff-Tasmota/images/BlitzWolf-SHP6/BW-SHP6-07.jpg|Right side]] +[[https://raw.githubusercontent.com/wiki/RTurala/Sonoff-Tasmota/images/BlitzWolf-SHP6/BW-SHP6-08.jpg|Back]] +[[https://raw.githubusercontent.com/wiki/RTurala/Sonoff-Tasmota/images/BlitzWolf-SHP6/BW-SHP6-09.jpg|All parts]] + +## Home Assistant configuration + +configuration.yaml +``` +switch: + - platform: mqtt + name: "Blitzwolf" + state_topic: "stat/blitzwolf/POWER" + command_topic: "cmnd/blitzwolf/POWER" + payload_on: "ON" + payload_off: "OFF" + retain: false + +sensor: + - platform: mqtt + name: "Blitzwolf Energy Today" + state_topic: "tele/blitzwolf/SENSOR" + value_template: '{{ value_json["ENERGY"]["Today"] }}' + unit_of_measurement: "kWh" + - platform: mqtt + name: "Blitzwolf Energy Yesterday" + state_topic: "tele/blitzwolf/SENSOR" + value_template: '{{ value_json["ENERGY"]["Yesterday"] }}' + unit_of_measurement: "kWh" + - platform: mqtt + name: "Blitzwolf Energy Total" + state_topic: "tele/blitzwolf/SENSOR" + value_template: '{{ value_json["ENERGY"]["Total"] }}' + unit_of_measurement: "kWh" + - platform: mqtt + name: "Blitzwolf Power" + state_topic: "tele/blitzwolf/SENSOR" + value_template: '{{ value_json["ENERGY"]["Power"] }}' + unit_of_measurement: "W" + - platform: mqtt + name: "Blitzwolf Voltage" + state_topic: "tele/blitzwolf/SENSOR" + value_template: '{{ value_json["ENERGY"]["Voltage"] }}' + unit_of_measurement: "V" + - platform: mqtt + name: "Blitzwolf Power Factor" + state_topic: "tele/blitzwolf/SENSOR" + value_template: '{{ value_json["ENERGY"]["Factor"] }}' +```