Add transmission to the control script.

This commit is contained in:
Mikaël Ates 2016-03-10 09:14:32 +01:00
parent e43bb895f4
commit 46cdaa3b3d
1 changed files with 3 additions and 0 deletions

View File

@ -109,6 +109,9 @@ def main(argv):
reader.detection(delay=delay, power=power, logic_port=logic_port, silent=silent)
elif command == 'check':
reader.device_check()
elif command == 'send':
transmitter = rfiddriver.Transmitter()
transmitter.send()
else:
_exit()