From 1d15d3ed3c56d9fe4691c691cba6ffccd944d64a Mon Sep 17 00:00:00 2001 From: Giorgio Ravera Date: Thu, 21 Feb 2019 22:01:08 +0100 Subject: [PATCH] Added Speed Test and moved components to the dedicated folder --- components/eq3max.yaml | 7 +++++++ google.yaml => components/google.yaml | 2 +- components/mercedesme.yaml | 7 +++++++ components/mqtt.yaml | 9 +++++++++ components/speedtest.yaml | 11 +++++++++++ components/tts.yaml | 9 +++++++++ components/weather.yaml | 9 +++++++++ 7 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 components/eq3max.yaml rename google.yaml => components/google.yaml (97%) create mode 100644 components/mercedesme.yaml create mode 100644 components/mqtt.yaml create mode 100644 components/speedtest.yaml create mode 100644 components/tts.yaml create mode 100644 components/weather.yaml diff --git a/components/eq3max.yaml b/components/eq3max.yaml new file mode 100644 index 00000000..43c2f8b5 --- /dev/null +++ b/components/eq3max.yaml @@ -0,0 +1,7 @@ +###################################################################### +# Component: EQ3 Max Cube +###################################################################### + +gateways: + - host: maxcube.giorgioravera.it + port: 62910 diff --git a/google.yaml b/components/google.yaml similarity index 97% rename from google.yaml rename to components/google.yaml index 39c47d1f..fac57ada 100644 --- a/google.yaml +++ b/components/google.yaml @@ -1,5 +1,5 @@ ###################################################################### -# Google Home Integration +# Component: Google Home Integration ###################################################################### project_id: !secret google_project diff --git a/components/mercedesme.yaml b/components/mercedesme.yaml new file mode 100644 index 00000000..ef562d49 --- /dev/null +++ b/components/mercedesme.yaml @@ -0,0 +1,7 @@ +###################################################################### +# Component: Mercedes Me +###################################################################### + +username: !secret mb_user +password: !secret mb_password +scan_interval: 60 diff --git a/components/mqtt.yaml b/components/mqtt.yaml new file mode 100644 index 00000000..0c0ff518 --- /dev/null +++ b/components/mqtt.yaml @@ -0,0 +1,9 @@ +###################################################################### +# Component: mqtt borker (mosquitto) +###################################################################### + +broker: !secret mqtt_host +port: 1883 +client_id: homeassistant +username: !secret mqtt_user +password: !secret mqtt_password diff --git a/components/speedtest.yaml b/components/speedtest.yaml new file mode 100644 index 00000000..8ed78eef --- /dev/null +++ b/components/speedtest.yaml @@ -0,0 +1,11 @@ +###################################################################### +# Component: Speed Test +###################################################################### + +monitored_conditions: + - ping + - download + - upload +minute: 0 +scan_interval: + hours: 6 diff --git a/components/tts.yaml b/components/tts.yaml new file mode 100644 index 00000000..ec54d320 --- /dev/null +++ b/components/tts.yaml @@ -0,0 +1,9 @@ +###################################################################### +# Component: Text to Speach +###################################################################### + +platform: google +language: it +cache: true +time_memory: 300 +base_url: !secret base_url diff --git a/components/weather.yaml b/components/weather.yaml new file mode 100644 index 00000000..46569ec3 --- /dev/null +++ b/components/weather.yaml @@ -0,0 +1,9 @@ +###################################################################### +# Component: Weather +###################################################################### + +platform: darksky +api_key: !secret darksky_key +latitude: !secret home_latitude +longitude: !secret home_longitude +mode: hourly \ No newline at end of file -- 2.47.3