OUTPUT-GPIO-max-4-PINs device no longer working

User avatar
Hackencrash
Posts: 251
Joined: Wed Dec 16, 2015 7:05 am
Location: UK

Re: OUTPUT-GPIO-max-4-PINs device no longer working

Post by Hackencrash »

Fixed it! :D In ~/pibeacon/setGPIO.py I modified the following command:

Code: Select all

delayStart = max(0,calcStartTime(command,"startAtDateTime")-time.time())
to:

Code: Select all

delayStart = max(0,U.calcStartTime(command,"startAtDateTime")-time.time())
It was missing the "U." prefix reference to piBeaconUtils.py
User avatar
Hackencrash
Posts: 251
Joined: Wed Dec 16, 2015 7:05 am
Location: UK

Re: OUTPUT-GPIO-max-4-PINs device no longer working

Post by Hackencrash »

Thanks Karl - I see this has now been fixed in v7-63-125
User avatar
kw123
Posts: 8705
Joined: Sun May 12, 2013 4:44 pm
Location: Dallas, TX
Contact:

Re: OUTPUT-GPIO-max-4-PINs device no longer working

Post by kw123 »

his should be fixed in the latest version it should read:
delayStart = max(0,U.calcStartTime(command,"startAtDateTime")-time.time())
not
delayStart = max(0,calcStartTime(command,"startAtDateTime")-time.time())

Karl
Post Reply

Return to “piBeacon”