@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