Tinuva
The Magician
For those not interested in flashing sonoff devices ect. Anyone tried this? https://github.com/mdopp/simple-sonoff-server
South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
Anyone see decent pricing on these. On Amazon it's anywhere between R500-R900 a switch.Another interesting product to consider instead of a sonoff basic:
http://www.thesmarthomehookup.com/the-shelly-1-smart-relay-is-it-better-than-the-sonoff-basic/
Will depend on your use case, but this Shelly 1 is so damn small, can easily fit in behind wall switches.
Anyone see decent pricing on these. On Amazon it's anywhere between R500-R900 a switch.
$24.50 for 2 on Amazon should work out less than R500 for 2, so closer to R250 for 1.
https://www.amazon.com/Shelly-Wirel...e0012cc2e4d3f3cc551105869a5b1e&language=en_US
What I like about them, is they rated at 16A so could do things like geyser with them.
How about contact them directly since you will be reselling? https://allterco.com/en/Shelly
Another interesting product to consider instead of a sonoff basic:
http://www.thesmarthomehookup.com/the-shelly-1-smart-relay-is-it-better-than-the-sonoff-basic/
Will depend on your use case, but this Shelly 1 is so damn small, can easily fit in behind wall switches.
- platform: efergy
app_token:
utc_offset: -120
monitored_variables:
- type: instant_readings
- type: budget
- type: cost
period: day
currency: R
- type: amount
period: day
- type: amount
period: month
- type: current_values
Seems that's a no. I'm also interested in feedback as to which cameras sell.anyone tried this camera?
EZVIZ C4S (WiFi) (4mm)(outdoor)
http://www.smartkit.co.za/product/c4s-wifi-4mmoutdoor/
Send me 1 - I'll test it for youSeems that's a no. I'm also interested in feedback as to which cameras sell.

Anyone using Efergy know if its possible to name the underlying sensors:
Code:- platform: efergy app_token: utc_offset: -120 monitored_variables: - type: instant_readings - type: budget - type: cost period: day currency: R - type: amount period: day - type: amount period: month - type: current_values
I've noticed the highlighted two come in as sensor.energy_consumed and sensor.energy_consumed_2 - but sometimes switch around on restart.
EDIT: Formating keeps getting lost
- type: amount
period: day
- type: amount
period: month
they keep swapping around their home-assistant names
- platform: efergy
app_token:
utc_offset: -120
monitored_variables:
- type: instant_readings
- type: budget
- type: cost
period: day
currency: R
- type: amount
period: day
- type: amount2
period: month
- type: current_values

I don't have an efergy unit, but possibly because the name is the same in both instances making it a bit vague.
A possible workaround:
In your HA config folder, create another folder called custom_components then create a folder in there called sensor, unzip the modified efergy.py file in there and modify your config as below:
YAML:- platform: efergy app_token: utc_offset: -120 monitored_variables: - type: instant_readings - type: budget - type: cost period: day currency: R - type: amount period: day - type: amount2 period: month - type: current_values
I'm not a python coder, but hopefully the hack will do the job. Any module in the custom_components folder takes preference over the existing one.
elif self.type == 'amount':
url_string = '{}getEnergy?token={}&offset={}&period={}'.format(
_RESOURCE, self.app_token, self.utc_offset, self.period)
response = requests.get(url_string, timeout=10)
self._state = response.json()['sum']
""" Add in the Amount 2 section """
self.type = 'amount2':
url_string = '{}getEnergy?token={}&offset={}&period={}'.format(
_RESOURCE, self.app_token, self.utc_offset, self.period)
response = requests.get(url_string, timeout=10)
self._state = response.json()['sum']
elif self.type == 'budget':
EZVIZ cameras are pretty neat - I'm running two of these (http://www.smartkit.co.za/product/c3s-wifi-4mm-outdoor/) and one of these (http://www.smartkit.co.za/product/c2mini-indoor/) . I also got my mom one of these (http://www.smartkit.co.za/product/c2c-720p-indoor/) as a nannycam.
They're the consumer division of Hikvision who have been named as the global CCTV leader for 6 or 7 years now, so they do know a thing or two about cameras. At the price, I don't really think these things can be beat. They may not have all the bells and whistles like motion zones, but at not much over R1,000 you're getting a decent quality 1080 cameras / motion detection / night vision. The negatives?
*There's no cloud storage locally - you could probably list your location as UK / VPN or some IT method of faking it, but nothing in South Africa. It records to an SD Card on the device itself, which is available remotely.
*Although the C3S does list HDR as a feature, it's difficult to get working (hidden menu on the desktop) - but if you really want it, you can do it.
The positives are it links to it's own ecosystem of (inexpensive) alarms, door sensors, PIRs, moisture sensors etc. I believe EZVIZ are adding one or two products later this year too. They also work with IFTTT - although I haven't really played with that. EZVIZ should theoretically be able to control the Sonoff lighting/plugs via IFTTT too - but don't quote me as I haven't used it. I've had zero issues with WiFi stability.
App is pretty decent - easy to use. Add via QR codes, set schedules of when notify you, encrypt video feeds
View attachment 548085
Send me 1 - I'll test it for you![]()