Read the statement by Michael Teeuw here.
Can I rotate the pages (MMM-Pages) with MMM-TelegramBot or MMM-RemoteControl?
-
read wiki of TB
-
@MiguelDAD the telegram bot syntax looks incorrect. Check the wiki https://github.com/bugsounet/MMM-TelegramBot/wiki/Custom-Command as @Bugsounet suggested or try below (I have not tested it my self yet)
customCommands: [ { command: "nextpage", description: "Show next page" callback: (command, handler, self) => { self.sendNotification("PAGE_INCREMENT") handler.reply("TEXT", "Okay... next page will be shown!") } } ]
you can then use
/nextpage
command in telegram to change the page -
@ashishtank I’m very stupid I know but I try these two options and neither works for me:
{ module: 'MMM-TelegramBot', position: 'top_center', config: { telegramAPIKey : 'thisapkiokey', allowedUser : ['MiguelDAD'], // This is NOT the username of bot. customCommands: [ { command: "nextpage", description: "Muestra la siguiente página" callback: (command, handler, self) => { self.sendNotification("PAGE_INCREMENT") handler.reply("TEXT", "Okay... mostrando la siguiente página") } } ] } },
{ module: 'MMM-TelegramBot', position: 'top_center', config: { telegramAPIKey : 'thisisokey', allowedUser : ['MiguelDAD'], // This is NOT the username of bot. } customCommands: [ { command: "nextpage", description: "Muestra la siguiente página" callback: (command, handler, self) => { self.sendNotification("PAGE_INCREMENT") handler.reply("TEXT", "Okay... mostrando la siguiente página") } } ] },
-
try this: (you have miss a coma)
{ module: 'MMM-TelegramBot', position: 'top_center', config: { telegramAPIKey : 'thisapkiokey', allowedUser : ['MiguelDAD'], // This is NOT the username of bot. customCommands: [ { command: "nextpage", description: "Muestra la siguiente página", callback: (command, handler, self) => { self.sendNotification("PAGE_INCREMENT") handler.reply("TEXT", "Okay... mostrando la siguiente página") } } ] } },
result of
/nexpage
and/help
Bugsounet Cédric, [13.01.21 00:04 /help nextpage Dev MagicMirror, [13.01.21 00:04] [En réponse à Bugsounet Cédric] /nextpage Muestra la siguiente página Servi par MMM-TelegramBot Bugsounet Cédric, [13.01.21 00:04] /nextpage Dev MagicMirror, [13.01.21 00:04] [En réponse à Bugsounet Cédric] Okay... mostrando la siguiente página
and Naturaly the notification will be sended: (verified with my personal debug module)
[Notification][MMM-TelegramBot] PAGE_INCREMENT
Note: don’t forget your
adminChatId
field -
@MiguelDAD said in Can I rotate the pages (MMM-Pages) with MMM-TelegramBot or MMM-RemoteControl?:
> config: { > telegramAPIKey : 'thisisokey', > allowedUser : ['MiguelDAD'], // This is NOT the username of bot. > } < ---------------------------------Comma is missing here > customCommands: [ > { > command: "nextpage", >
@MiguelDAD Are you able to get it working after adding comma here as @Bugsounet have suggested ?
-
@Bugsounet said in Can I rotate the pages (MMM-Pages) with MMM-TelegramBot or MMM-RemoteControl?:
{
module: ‘MMM-TelegramBot’,
position: ‘top_center’,
config: {
telegramAPIKey : ‘thisapkiokey’,
allowedUser : [‘MiguelDAD’], // This is NOT the username of bot.
customCommands: [
{
command: “nextpage”,
description: “Muestra la siguiente página”,
callback: (command, handler, self) => {
self.sendNotification(“PAGE_INCREMENT”)
handler.reply(“TEXT”, “Okay… mostrando la siguiente página”)
}
}
]
}
},Niceee, thanks so much <3