Skip to content

Commit

Permalink
v0.8.11
Browse files Browse the repository at this point in the history
Fixes for control import on the worker.
  • Loading branch information
Eric Davisson committed Jul 23, 2020
1 parent 7c84152 commit d336134
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mudpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
print('_________________________________________________')
print('')
print('Eric Davisson @theDavisson')
print('Version: ', CONFIGS.get('version', '0.8.10'))
print('Version: ', CONFIGS.get('version', '0.8.11'))
print('\033[0;0m')

if CONFIGS['debug'] is True:
Expand Down
1 change: 1 addition & 0 deletions workers/pi_control_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import sys
sys.path.append('..')
from controls.pi.button_control import (ButtonControl)
from controls.pi.switch_control import (SwitchControl)

import variables

Expand Down
2 changes: 1 addition & 1 deletion workers/pi_sensor_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def init_sensors(self):
def run(self):
t = threading.Thread(target=self.work, args=())
t.start()
print('Pi Sensor Worker [' + str(len(self.config)) + ' Sensors]...\t\t\033[1;32m Running\033[0;0m')
print('Pi Sensor Worker [' + str(len(self.sensors)) + ' Sensors]...\t\t\033[1;32m Running\033[0;0m')
return t

def work(self):
Expand Down

0 comments on commit d336134

Please sign in to comment.