Skip to content

how to convert this yaml service call? #534

Answered by ALERTua
phsdv asked this question in Q&A
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