A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Python outputs
-
I create a code python based on speech to text that help me to control my led and play some playlist , its outputs are always :
- say something
- text
I want to create a module that can show me these outputs , can someone help me please ?
I can share my code
-
Hi @sakliadem,
I do a very similar task, my approach is to send in Python a notification like
if uebergabetext.find("wdr5") != -1: url = 'http://192.168.nnn.nnn:8080/remote?action=NOTIFICATION¬ification=SENDER&payload=1' requests.get(url) return if uebergabetext.find("deutschlandradio") != -1: url = 'http://192.168.nnn.nnn:8080/remote?action=NOTIFICATION¬ification=SENDER&payload=2' requests.get(url) return if uebergabetext.find("deutschlandfunk") != -1: url = 'http://192.168.nnn.nnn:8080/remote?action=NOTIFICATION¬ification=SENDER&payload=3' requests.get(url) return
I added at MMM-pages.js the following:
notificationReceived: function (notification, payload) { Log.log('[Pages]: received a notification ' + notification); switch (notification) { case 'SENDER': Log.log('[Pages]: received a SENDER notification with payload ' + payload); // do what ever you like break;
Now open the developer-console and watch the upcoming messages when you send a notification.
-
@sakliadem see my PythonPrint module which takles outut fron a python script and displays it…
you can copy and use this however you want