Be a part of CinemaVision today! Once registered and logged in, you will have access to public chat and your own private messenger, you can view and contribute guides, collaborate on the forums, review downloads, give reputation to your fellow members, contribute content and so much more. Registering is quick and completely free, so what are you waiting for? Sign In Sign Up
i am trying to remote my smarthome with the action content but it won't work. My Platform: Microsoft Vista with Kodi 17.1 RC - only for testing because my RPi3+ isn't there at the moment. NAS mybooklive with my movie collection.
I Installed python 2 and 3 and i got a script from the www sending UDP Packets to my Loxone System. When i executed the .py scripts with the local python application everything works fine and my lights are getting out - YES.. :-)
But when i Try to run it via CV it won't work.
First of all i read the documentation with this:
My CV Folder is on the NAS storage in the Folder "Trailer", so i put the .cvaction File in the action Folder but everything i got is this (screenshot down below).
My script contains the follwing input - but nothing works... what do i make wrong? Actual i am trying it to run it local on my machine - next step should be trying to set it up in the NAS.
Actual it seems i am havin syntax problems... but what is the right syntax? I copied the same content from the guidline but it won't work... any ideas?
My LichtAus.py looks like this - this is working with Python 3
Hi Folks,
i am trying to remote my smarthome with the action content but it won't work. My Platform: Microsoft Vista with Kodi 17.1 RC - only for testing because my RPi3+ isn't there at the moment. NAS mybooklive with my movie collection.
I Installed python 2 and 3 and i got a script from the www sending UDP Packets to my Loxone System. When i executed the .py scripts with the local python application everything works fine and my lights are getting out - YES.. :-)
But when i Try to run it via CV it won't work.
First of all i read the documentation with this:
My CV Folder is on the NAS storage in the Folder "Trailer", so i put the .cvaction File in the action Folder but everything i got is this (screenshot down below).
My script contains the follwing input - but nothing works... what do i make wrong? Actual i am trying it to run it local on my machine - next step should be trying to set it up in the NAS.
Actual it seems i am havin syntax problems... but what is the right syntax? I copied the same content from the guidline but it won't work... any ideas?
My LichtAus.py looks like this - this is working with Python 3
import socket UDP_IP = "192.168.3.3" UDP_PORT = 6080 MESSAGE = "3" print("UDP target IP:", UDP_IP) print("UDP target port:", UDP_PORT) print("message:", MESSAGE) sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) # UDP sock.sendto(bytes(MESSAGE, "utf-8"), (UDP_IP, UDP_PORT))
Regards
Magnus
Share this post
Link to post
Share on other sites