lacrima08

Untitled

Dec 24th, 2023
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. - sensor:
  2. name: "SpeedTest CLI Data"
  3. unique_id: speedtest_cli_data
  4. command: "/config/3rdparty/speedtest/speedtest --format=json --accept-license --accept-gdpr"
  5. scan_interval: 300
  6. command_timeout: 60
  7. value_template: >-
  8. {{
  9. {
  10. "ping": value_json.ping.latency,
  11. "download": value_json.download.bandwidth,
  12. "upload": value_json.upload.bandwidth
  13. }
  14. | to_json
  15. }}
  16.  
Advertisement
Add Comment
Please, Sign In to add comment