Search found 2 matches

by Mahlstrom
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: Python wrapper of libtelldus
Replies: 42
Views: 58323

Re: Python wrapper of libtelldus

Great wrapper! I've tried it out using mac os x adding elif (platform.system() == 'Darwin'): #Mac from ctypes import cdll, CFUNCTYPE tdlib = cdll.LoadLibrary('/Library/Frameworks/TelldusCore.framework/TelldusCore') The only problem I've got was when calling tdlib.tdReleaseString(vp) python2.6(10014,...
by Mahlstrom
Fri Mar 17, 2023 9:45 am
Forum: Linux
Topic: Python wrapper of libtelldus
Replies: 42
Views: 58323

Re: Python wrapper of libtelldus

No problem at all.
Found it while running thou the forums to learn about python/telldus.
And btw, while adding, what i did was just adding

Code: Select all

if (platform.system() != 'Darwin'):
before tdReleaseString

Right now i'm thinking about tackle the tdSendRawCommand
How far have you come so far?