-
Notifications
You must be signed in to change notification settings - Fork 19
/
test_serial.py
executable file
·42 lines (34 loc) · 1.1 KB
/
test_serial.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import asyncio
import epson_projector as epson
from epson_projector.const import (POWER, PWR_ON, PWR_OFF)
import logging
_LOGGER = logging.getLogger(__name__)
console_handler = logging.StreamHandler()
console_handler.setFormatter(logging.Formatter(
'%(asctime)s - %(name)s - %(levelname)s - %(message)s'))
_LOGGER.addHandler(console_handler)
_LOGGER.setLevel(logging.DEBUG)
logging.basicConfig(level=logging.DEBUG)
async def main_serial():
"""Run main with serial connection."""
await run()
async def run():
projector = epson.Projector(host='/dev/ttyUSB0',
type='serial',
timeout_scale=2.0)
data = await projector.get_power()
print(data)
cmd = None
if data == '01':
cmd = PWR_OFF
elif data == '00':
cmd = PWR_ON
if cmd:
data2 = await projector.send_command(cmd)
print(data2)
serialno = await projector.get_serial_number()
print("Projector serial number:", serialno)
projector.close()
loop = asyncio.get_event_loop()
loop.run_until_complete(main_serial())
loop.close()