Added write action to the serial plugin

This commit is contained in:
Fabio Manganiello 2018-09-04 22:54:14 +02:00
parent 6e867e9fb2
commit 938526d521
1 changed files with 28 additions and 0 deletions

View File

@ -117,6 +117,34 @@ class SerialPlugin(GpioSensorPlugin):
return data
@action
def write(self, data):
"""
Writes data to the serial device.
:param data: Data to send to the serial device
:type data: str, bytes or dict. If dict, it will be serialized as JSON.
"""
if isinstance(data, dict):
data = json.dumps(data)
if isinstance(data, str):
data = data.encode('utf-8')
try:
serial_available = self.serial_lock.acquire(timeout=2)
if serial_available:
try:
ser = self._get_serial()
except:
time.sleep(1)
ser = self._get_serial(reset=True)
self.logger.info('Writing {} to {}'.format(data, self.device))
ser.write(data)
finally:
self.serial_lock.release()
# vim:sw=4:ts=4:et: