Read the statement by Michael Teeuw here.
not able to profileswitch/schedule LocalTransport module
-
ok, again thanks for your effort
-
Alright so I found the problem and it turned out to be a mistake in the Localtransport module. I have send him a pull request and updated my README with a fix. Have fun with the modules :)
I will copy paste it the README text here as well:
The MagicMirror-LocalTransport-Module module does not work (without a fix) with the [MMM-ProfileSwitcher].
This due to his code overwriting a variable that it a default variable used by the MagicMirror Framework and my code need this. Luckily this problem can be solved fairly easily with any text editor.Go to the module’s main file
localtransport.js
and replace the occurences ofthis.data
withthis.info
.Note: There should be three occurences on lines
170
,204
and209
. -
@tosti007
many thanks
tested it already and works now like a charme.
Might this also solve the incompatibility of LocalTransport with the FacialRecognition module? i guess so -
@dfuerst Yes it does, FacialRecognition also uses classes (which are saved in
this.data
) -
My pull request was just merged with
master
so you should be able to use them together out of the box now without having to modify his module! :D