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) returnI 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
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login