Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

how to convert this yaml service call? #534

Answered by ALERTua
phsdv asked this question in Q&A
Discussion options

It is more a yaml question than pyscript :-) How would you convert this yaml service call to pyscript?

 - service: tesla_custom.api
 data:
 command: CHARGING_AMPS
 parameters:
 path_vars:
 vehicle_id: '{{ state_attr(''binary_sensor.carname_online_sensor'', ''id'') }}'
 charging_amps: '16'

The syntax is: service.call(domain, name, **kwargs)
But I don ́t understand yaml good enough. The domain is, I think, tesla_custom.api, but then I am lost

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

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'
 )
)
You must be logged in to vote
1 reply
Comment options

Great, thanks.
CHARGING_AMPS needs "", as I got an undefined error. After changing that it works!
This is what I ended up with:

vid = binary_sensor.carname_online.id
tesla_custom.api(
 command="CHARGING_AMPS", 
 parameters=dict(
 path_vars=dict(vehicle_id=vid),
 charging_amps='16'
 )
 )
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

AltStyle によって変換されたページ (->オリジナル) /