MelanieMoxon
Established Member
- Joined
- Dec 4, 2022
- Messages
- 112
- Reaction score
- 159
- Points
- 47
- Location
- Hull, UK
- Driving
- MG4 Trophy LR
I might move over to I OG at some point.If you have a Zappi why don't you switch to Intelligent Octopus Go ?
In the meantime if you only want to charge between 0030 and 0530 (like me on standard Octopus Go) could you not try using the car scheduling instead of Zappi ?
It works fine for me on an old dumb 7kw wall charger point and stops at whatever % I set in the car or app every charge.
The software glitches are nothing to do with Octopus Intelligent Go and you are missing out on a minimum of 6 hours of cheaper rate charging.I might move over to I OG at some point.
Honestly, after all the software glitches over the two years of ownership of this car I do not trust the internal scheduling to do what I need it to do.
The software glitches are nothing to do with Octopus Intelligent Go and you are missing out on a minimum of 6 hours of cheaper rate charging.
Off topic I know, but any tips on getting my mg4 into HA.Yea my nerdy brain went down the rabbit hole now control it all via the home assistant app instead of the iSmart. The target SOC is what I have set to 80 or 100 for full. Really sucks they stopped the SE doing it
I posted my experience of setting it up, not sure if that will help...I'm really struggling and am very close to giving up
I didn't start it but posted in those threads to share my experience. It works well.There's a big thread in this very board all about Home Automation. I think it was started by @wattmatters![]()
Thanks will have a read. I'm really strugglingI posted my experience of setting it up, not sure if that will help...
API integration
I had a go at getting this integration installed and with a fair bit of help from the good people on the HA user forums* I have it running. Working on some dashboards, but the nice thing with this is I can have a dashboard operating on both my and my wife's phone whereas iSmart is limited to...www.mgevs.com
I didn't start it but posted in those threads to share my experience. It works well.
Feel free to DM me with your current setup.Off topic I know, but any tips on getting my mg4 into HA.
I'm really struggling and am very close to giving up
I have installed HACS, then the repository added my car / logged in - then nothing nowt
Thanks
A
Thank you so much.Feel free to DM me with your current setup.
I got it working decently after a big of poking around.
Make sure you use the right version for your region. As well as make sure you setup with email and password not phone.
You can't use the MG all once it's setup. Once it is setup you'll find the device under your Matt integration.
There is a new. Simpler integration with our mqtt here; I don't use it but it did work fine prior and is being updated.
GitHub - ad-ha/mg-saic-ha: MG SAIC Custom Integration for Home Assistant
If you add your email instead of phone (phone isn't supported) it should work.Thank you so much.
I will take you up on this I think if that's ok.
Fresh install of HA yesterday, fresh HACS install, used the exact link above and installed via HACS.
Logged in (but used phone number as I don't have an email in ismart) it found my vin, I added it - then nothing but a load of errors.
I've given up this evening but will retry tomorrow. Thanks for your kind offer.
A
Thanks trying it nowIf you add your email instead of phone (phone isn't supported) it should work.
You can add email via the iSmart app I believe or just unpair the car, delete login and reset up a new one and repair.
What's your location? If in EU/UK useNow getting a flow error with both email and phone number hahah, I've gotta laugh before it goes out the window.
A
Well after a horrible night of getting annoyed i got it working this morning.
Thanks for your help APMG - now I just need to make it look pretty.
Any suggestions on how to make it look nice?
Thanks
Andy
Template > Sensor
Name: MG Mileage (mi)
Template: {{ (states('sensor.REPLACEME_mileage') | float / 1.60934) | round(0) }}
Unit of measurement: Mi
------------------------------
Template > Sensor
Name: MG Range (miles)
Template: {{ (states('sensor.REPLACEME_range') | float / 1.60934) | round(0) }}
Unit of measurement: Mi
--------------------------------
Template > Sensor
Name: EV mileage since last charge (mi)
Template: {{ (states('sensor.REPLACEME_mileage_since_last_charge') | float / 1.60934) | round(0) }}
--------------------------------
Template > Sensor
Name: MG4 seconds since update
Template: {% set n = now() %}
{% set t = states('sensor.REPLACEME_last_charge_state') | as_datetime | as_local %}
{{ (n-t).seconds }}
Unit of measurement: seconds
Counter:
Name: ev_days_since_100_soc
---------------
Utility Meter:
Name: ev_mileage_daily
Input sensor: sensor.mg_mileage_mi
----------------
Utility Meter:
Name: ev_mileage_monthly
Input sensor: sensor.ev_mileage_daily
alias: EV - Reset Days Since 100% SOC
description: Reset Counter for number of days since the car was fully charged.
triggers:
- entity_id:
- sensor.REPLACEME_soc
above: 99
trigger: numeric_state
conditions: []
actions:
- data: {}
action: counter.reset
target:
entity_id: counter.ev_days_since_100_soc
mode: single
alias: EV - Increment Counter Days Since EV 100% SOC
description: Increment the days since EV 100% SOC cycle counter each day
triggers:
- at: "00:00:00"
trigger: time
conditions: []
actions:
- data: {}
target:
entity_id:
- counter.ev_days_since_100_soc
action: counter.increment
mode: single
alias: EV - When charging force check-in
description: ""
triggers:
- trigger: numeric_state
entity_id:
- sensor.mg4_seconds_since_update
above: 300
for:
hours: 0
minutes: 1
seconds: 0
conditions:
- condition: state
entity_id: select.REPLACEME_gateway_refresh_mode
state: periodic
- condition: numeric_state
entity_id: sensor.REPLACEWITHYOUREVCHARGER (IF LINKED TO HA)
above: 300
actions:
- action: select.select_option
metadata: {}
data:
option: force
target:
entity_id: select.REPLACEME_gateway_refresh_mode
- delay:
hours: 0
minutes: 2
seconds: 0
milliseconds: 0
mode: single