@kusselin details will be here https://forum.magicmirror.builders/category/17/magicmirror
Read the statement by Michael Teeuw here.
Posts
-
RE: Mercedes EV-car me.connet
@JerryP Yes, it is sandbox (fake data) for developers to test. note the url vhicledata_tryout. In actual api call actual vehicle id from marcedes needs to be used.
-
RE: Display waste bins in color
@kusselin : once new version of MM is released today, you will get all the latest code and then it should work.
-
RE: calendar_monthly: Please help me with column width.
@MaXi-XCeL You can adjust the width of calendar using custom.css, right now it is set to 100% and each cell (day) is set to 14.2 % (so 14.2 x 7 = ~ 100 full width of calendar). Put below in your custom.css adjust the 80% to your taste.
#calendar-table { width: 80%; }
Before
After
-
RE: Can I rotate the pages (MMM-Pages) with MMM-TelegramBot or MMM-RemoteControl?
@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 -
RE: Mercedes EV-car me.connet
@JerryP @cykelstyre I was interested in this one, also did some basic research and got the response from Mercedes api. Its is easy to get data but it will be hard for end user to get it configured as it only supports OAuth2 authorization code flow (AFAIK).
Below is sand box api
-
RE: Can I rotate the pages (MMM-Pages) with MMM-TelegramBot or MMM-RemoteControl?
@MiguelDAD You should be able to do it with remote control or telegram module. check the documentation of MMM-Pages. You need to send notification to it to change the page.
-
RE: Viewed at 15m - Scale everything up x10+
@Bill-Door You can use custom.css with zoom property for body. Adjust 200% below to your taste.
body { zoom: 200%; }
PS: It will also survive the reboots :)
-
RE: Question/help
@innovation There is Google TTS module which can speak from text. You might be able to use it with Remote control or other scheduler to send text to this module and let it speak. Also you do not need MM module to do this, Raspberry pi can also have scheduled job which can do this thing.