У нас вы можете посмотреть бесплатно Whatsapp Automation или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This is a guide to setting up your Home Assistant & Inverter integration using Callmebot to notify you of grid disconnects/reconnects & high battery load conditions on your inverter via Whatsapp. CallMeBot Info https://www.callmebot.com/blog/whatsa... You need to get the apikey from the bot before using the API: 1. Add the phone number +34 644 26 33 77 into your Phone Contacts. (Name it it as you wish) 2. Send this message "I allow callmebot to send me messages" to the new Contact created (using WhatsApp of course) 3. Wait until you receive the message "API Activated for your phone number. Your APIKEY is 123123" from the bot. Note: If you don't receive the ApiKey in 2 minutes, please try again after 24hs. The WhatsApp message from the bot will contain the apikey needed to send messages using the API. This is what you need to add to your configuration.yaml file Example configuration.yaml entry notify: name: WhatsApp platform: rest resource: https://api.callmebot.com/whatsapp.php data: source: HA phone: +34123123123 #enter your phone number here apikey: 456789 #enter your apikey here (see Setup above) The video includes two sample automations: Automation 1 - Notifies you on Whatsapp when your inverter goes offgrid and then when it reconnects to the grid again alias: Grid Status Monitoring description: "" trigger: platform: state entity_id: binary_sensor.grid_connected_status condition: [] action: choose: conditions: condition: state entity_id: binary_sensor.grid_connected_status state: "off" sequence: service: notify.whatsapp data: message: Grid Off conditions: condition: state entity_id: binary_sensor.grid_connected_status state: "on" sequence: service: notify.whatsapp data: message: Grid Connected default: [] mode: single Automation 2 - Notifies you when the inverter is offgrid, sensor.load_power_176 load exceeds 4kw (or whatever you set it for) and sensor.battery_output_power is more than 1kw of power from the battery (i.e. low solar production) - please note that I have not had an opportunity to test this out yet and I think that it could be simplified by perhaps just checking the battery load, let me know what you think. alias: Inverter Power Monitoring description: "" trigger: platform: state entity_id: binary_sensor.grid_connected_status to: "off" condition: [] action: wait_for_trigger: platform: numeric_state entity_id: sensor.load_power_176 above: 4000 platform: numeric_state entity_id: sensor.battery_output_power above: 1000 timeout: "00:03:00" continue_on_timeout: false service: notify.whatsapp data: message: Inverter is using Too Much power wait_for_trigger: platform: numeric_state entity_id: sensor.load_power_176 below: "1500" continue_on_timeout: true service: notify.whatsapp data: message: Inverter Power within Limits mode: restart 00:00 Introduction 01:05 CallmeBot Setup 04:29 Grid Disconnect/Reconnect Notification 06:40 High Battery Load Notification