Files
MuditaOS/test/phone_walk.py
pholat 2b275d7951 [EGD-2571] added GSM command sending & small refactor
* added GSM AT commands on 'Commands' channel
* refactor (for better console/script) handling
* docs update
* GSM request asynch send back on uart to requester
2020-02-11 08:41:26 +00:00

17 lines
354 B
Python

#!/bin/python3
# script walking on desktop
from harness.common import Serial
import logging
import json
log = logging.getLogger(__name__)
logging.basicConfig(format='%(asctime)s %(message)s', level=logging.DEBUG)
conn = Serial()
for lol in range(1, 60 * 30):
conn.key(ord('d'))
conn.key(ord('s'))
conn.key(ord('s'))
conn.key(ord('d'))