Is it possible with push notifications when using Mosiac?
For example if the water leakage sensor detects water, then I want a notification on my phone.
I've tried this, and it works.
I've tested this on my outdoor ligthing with my status group (on/off).
But how can I change the message so it will for example say Outdoor lights is on and Outdoor lights is off?
01.12.2023, 19:46 (This post was last modified: 01.12.2023, 19:47 by Gabriel88.)
(30.09.2021, 15:37)Daniele Wrote:
Code:
value = event.getvalue()
if value then
--send on message
else
--send off message
end
Ciao amministratore. Questo script, dovrebbe sostituire l'altro? Oppure deve essere un'integrazione? Ti chiedo scusa in anticipo, ma sono i miei primi passi nel mondo LUA. Ti allego uno screenshot dello script iniziale.
(30.09.2021, 15:37)Daniele Wrote:
Code:
value = event.getvalue()
if value then
--send on message
else
--send off message
end
Ciao Daniele. Questo script, dovrebbe sostituire l'altro? Oppure deve essere un'integrazione? Ti chiedo scusa in anticipo, ma sono i miei primi passi nel mondo LUA. Ti allego uno screenshot dello script iniziale.
value = event.getvalue()
if value then
--send on message
else
--send off message
end
Ciao amministratore. Questo script, dovrebbe sostituire l'altro? Oppure deve essere un'integrazione? Ti chiedo scusa in anticipo, ma sono i miei primi passi nel mondo LUA. Ti allego uno screenshot dello script iniziale.
(30.09.2021, 15:37)Daniele Wrote:
Code:
value = event.getvalue()
if value then
--send on message
else
--send off message
end
Ciao Daniele. Questo script, dovrebbe sostituire l'altro? Oppure deve essere un'integrazione? Ti chiedo scusa in anticipo, ma sono i miei primi passi nel mondo LUA. Ti allego uno screenshot dello script iniziale.
Hi Gabriel88,
If you want that telegram send message you must implement this code into the other.
What do you want to do?
Best regards Cristian
value = event.getvalue()
if value then
--send on message
else
--send off message
end
Ciao amministratore. Questo script, dovrebbe sostituire l'altro? Oppure deve essere un'integrazione? Ti chiedo scusa in anticipo, ma sono i miei primi passi nel mondo LUA. Ti allego uno screenshot dello script iniziale.
(30.09.2021, 15:37)Daniele Wrote:
Code:
value = event.getvalue()
if value then
--send on message
else
--send off message
end
Ciao Daniele. Questo script, dovrebbe sostituire l'altro? Oppure deve essere un'integrazione? Ti chiedo scusa in anticipo, ma sono i miei primi passi nel mondo LUA. Ti allego uno screenshot dello script iniziale.
Hi Gabriel88,
If you want that telegram send message you must implement this code into the other.
What do you want to do?
Best regards Cristian
Hi Cristian. I would simply like to do this:
When a device's status goes to "1", i want a telegram message like "ON";
When a device status goes to "0", i want a telegram message like "OFF"
I try various ways but couldn't. Obviously, i'm just starting now with LUA
I apologize for the earlier message in Italian. I tought the forum page did the automatic translation
(05.12.2023, 08:23)Daniel Wrote: Do you have the telegram messaging implemented? Can you send any message from LM to telegram?
Hi Daniel. Yes, sorry if I didn't clarify. I've set everything up, and I'm currently receiving telegram notifications. Now what I want to do is change the notifications, as I told Cristian before
OK then the script provided above is exactly what you need. Create event based script which will be triggered by your 1/0 object and define the message in the commented area for on and off
(05.12.2023, 15:14)Daniel Wrote: OK then the script provided above is exactly what you need. Create event based script which will be triggered by your 1/0 object and define the message in the commented area for on and off