You're describing what the code doesn't do, but what is it that you want the code to do?
At least the code looks like it could be simplified, but that depends on what you want it to do.
Type: Posts; User: Tieske8; Keyword(s):
You're describing what the code doesn't do, but what is it that you want the code to do?
At least the code looks like it could be simplified, but that depends on what you want it to do.
Ron,
any chance of getting mobile access to the forums through tapatalk?
see http://www.tapatalk.com/activate_tapatalk.php?plugin=vbulletin
Thijs
The website showed a detailed protocol to ocntrol the device. So it probably is possible to use the Girder Transport mechanism to talk to it, but then your up to quite some work...
Just a thought; you might want to try Girder 5.0 latest as well, 5.1 is fairly new and I don't know how well the LuaCOM has been tested with that.
Welcome to Promixis Girder 5.1.0 build 590
Pokeys56E-1 - init 1.0.0
PoKeysDevice_DLL object created
Connected to PoKeys56E-1 at 192.168.123.49
Got tick value
Serial Error (RunScript, C:\Program...
And yet another update; 0.1.8 this time.
The update includes a handler for 'netpres.basic' messages. These are generated by the 'netpresence' utility from the LuaxPL framework.
So what does...
Just uploaded a new version; 0.1.7
Only change is the inclusion of the fix from this post. So no more need to manually update, just download the latest.
That is what this fix was for, did you apply it?
Yes, its the interface between RFXtrx device and the xPL network, can't help you with that, check the xPL forum for that one
Thats a one of then, and completed.
Do any other messages arrive?...
You need a different setup. The RFXmitter is a different device.
No, you just need to make sure everything is 'connected', which you can do through xPL. xPL is a distributed home automation...
That is too little info. What device do you have and what software are you using with it?
Sorry for the late reply.
What does Girder tell you in the log when starting. There should be several messages.
When using an xPL logger, do you see the messages from the RFXCOM device? (that is...
did you run the troubleshooting steps from the readme? What was the result?
Have you tried using an xPL message logger to see what is going on on the network? what was the result?
I think that won't work because your assigning the result of an expression (right side of '=') to the result of another expression (left side of '=')
try something like
local temptable = {}...
http://www.promixis.com/forums/forumdisplay.php?30-Girder-6
Count me in as well!
great! Whats the feature list for 6? Any eta for an alpha/beta version?
yes you may be right, after I posted it, I got some doubts whether it was correct. But still, when switching from XP to Win7 I had similar issues, and I think this solved it
It's probably the virtualstore thing. Girder has no rights to modify anything in theprogram files directory (where the config files are stored). I suggested earlier in this thread to fix it but it...
Just top of my head; the first return value (Lua can have multiple return values!!) is true/false indicating success or failure of the action, use a print statement to check this;
print(...
Try this;
-- Setup persistent device and service IDs if not UPnP then
print("UPnP global table not found")
return
end
if not UPnP.devices then
print("UPnP device list not found")
Unsigned Integer value, I haven't read the DCP for the mediarenderer lately, but I think the default for the instance ID is '0' (the instance ID is relevant for devices with multiple renderers, eg. a...
can you post the service xml? (in devicespy right-click the service and pick the right option)
Have you finished the tutorial? The code posted abobe uses 'LoadLevelTarget' etc. these names are used for a dimmable light device, not for media renderers.
Use the variable explorer to find the...
In Lua a variable can hold any value. Lua tables are basically a key-value list, anything can be a key and anything can be a value.
The UPnP code cretaes a global variable, UPnP, which is a table...