WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Discussion options

You must be logged in to vote

If I did not mess up the syntax:

carname_online_sensor_value = state.getattr('carname_online_sensor')['id']

service.call('tesla_custom', 'api', 
            command=CHARGING_AMPS, 
            parameters=dict(
                path_vars=dict(
                    vehicle_id=carname_online_sensor_value
                ),
                charging_amps='16'
            )
        )

# or
tesla_custom.api(
    command=CHARGING_AMPS, 
    parameters=dict(
        path_vars=dict(
            vehicle_id=carname_online_sensor_value
        ),
        charging_amps='16'
    )
)

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@phsdv
Comment options

Answer selected by phsdv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants