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?
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.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"