Tplink_LTE Integration compatibility with TP-Link MR600

Im having troubles trying to setup the Tplink_LTE integration with my TP-link MR600 LTE router/modem with the latest firmware: 1.2.0.0.9.1! does anyone knows if its compatible?

my configuration.yaml:

 tplink_lte:
   - host: 192.168.8.1
     password: myrouterpassword
     notify:
       - name: sms1
         recipient: "+myphonenumber"

my log:

2020-09-07 18:24:53 WARNING (MainThread) [homeassistant.components.tplink_lte] Could not connect to 192.168.8.1. Will keep trying

Same problem here.
Did you find a solution to this?

Same here, Current Version: 2021.5.2 Have just purchased the MR600 and tried this Integration without luck. No need for username in the config?

Did anyone find a solution ?

I am using a MR600 (V2) but I have a different error message (the notify service exist but cannot send any message)… Anyone has the same problem ?

2023-03-14 13:33:56.267 ERROR (MainThread) [homeassistant.components.tplink_lte.notify] No modem available

Update: finally I used this to send SMS (that I installed in /config/www/tp-link-modem-router)

Pre-requisit: install “yarn” and “nodejs” (I am using Hass Os, so I installed these in the SSH terminal as packages)… To send SMS you have to run the command in a shell script into a SSH session… Working fine sofar… Here is the shell-command (“arguments” contains the phonenumber and the text to be sent separated with a “,” :

send_sms: ssh root@HA_IP_ADDRESS -o 'StrictHostKeyChecking=no' -i /config/.ssh/id_rsa '/bin/bash /config/private_shell_scripts/send_sms.sh "{{ arguments }}"'

send_sms.sh is (the data related to the modem (ip address, username/password) is declared in config.json (see Github -Plewin tutorial for more details)) :

#!/bin/bash
#
#

#
# extract data from the arguments passed from Home Assistant
#
args=$1
phonenumber=${args%%,*}
args=${args#*,}
message=""${args%%,*}""

cd /config/www/tp-link-modem-router
./sms-send.js $phonenumber "$message"

can you create an automation?

An automation to do what ? Can you clarify ?

I can send SMS from Home Assistant using automation script…