MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. MiguelDAD
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 9
    • Groups 0

    MiguelDAD

    @MiguelDAD

    I am MiguelDAD, students of TIC.
    I live in Spain, for this reason my english is so bad.

    0
    Reputation
    9
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Location Cádiz, España

    MiguelDAD Unfollow Follow

    Latest posts made by MiguelDAD

    • RE: Can I rotate the pages (MMM-Pages) with MMM-TelegramBot or MMM-RemoteControl?

      @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

      posted in Troubleshooting
      MiguelDADM
      MiguelDAD
    • RE: Can I rotate the pages (MMM-Pages) with MMM-TelegramBot or MMM-RemoteControl?

      @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")
      		}
      	  }
      	]
      },
      
      posted in Troubleshooting
      MiguelDADM
      MiguelDAD
    • RE: Can I rotate the pages (MMM-Pages) with MMM-TelegramBot or MMM-RemoteControl?

      I have tried to follow the wiki of the modules but it has not worked for me.

      {
                  module: 'MMM-Remote-Control',
                  // uncomment the following line to show the URL of the remote control on the mirror
                  // position: 'bottom_right',
                  // you can hide this module afterwards from the remote control itself
                  config: {
                      apiKey: 'xxx',
                      customCommand: {
                          PAGE_INCREMENT: 'Pasar de página',
                          PAGE_DECREMENT: 'Retroceder de página'
                      },
                  }
              },
              {
                  module: 'MMM-TelegramBot',
                  position: 'top_center',
                  config: {
                      telegramAPIKey: 'xxx',
                      allowedUser: ['MiguelDAD'],
                      customCommands: [
                          {
                              getCommands: function (commander) {
                                  commander.add({
                                      command: 'PAGE_INCREMENT',
                                      callback: 'PasarPagina'
                                  });
                              },
                          }
                      ]
                  }
      
      posted in Troubleshooting
      MiguelDADM
      MiguelDAD
    • Can I rotate the pages (MMM-Pages) with MMM-TelegramBot or MMM-RemoteControl?

      With the MMM-Pages module, is there a way to turn pages whenever you want without touching the screen?

      posted in Troubleshooting
      MiguelDADM
      MiguelDAD
    • Is Magic Mirror portable?

      I need to move Magic Mirror, if I copy ~ / Magic Mirror and paste it on another raspberry pi, will it work?

      posted in Troubleshooting
      MiguelDADM
      MiguelDAD
    • RE: How many Ram needed?

      For Magic Mirror you probably need less than 2 GB of ram, but if you are going to do other projects in the future and have money, buy the one that best suits your budget.

      posted in Hardware
      MiguelDADM
      MiguelDAD
    • RE: How do I delete the first line (day, number, month, year) on the clock?

      @sdetweil Thanks, the problem was in the quotes

      posted in Requests
      MiguelDADM
      MiguelDAD
    • How do I delete the first line (day, number, month, year) on the clock?

      How do I delete the first line (day, number, month, year)?
      This is posible??
      1690468c-9fec-4922-923d-1d0f7072321b-image.png

      {
      			module: "clock",
      			position: "top_left",
      			config: {
      				timeFormat: "24",
      				showPeriod: "false",
      				showDate: "false",
      				displayTipe: "digital",
      				}
      		},
      
      posted in Requests
      MiguelDADM
      MiguelDAD