mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-03 20:57:19 -04:00
* added GSM AT commands on 'Commands' channel * refactor (for better console/script) handling * docs update * GSM request asynch send back on uart to requester
17 lines
354 B
Python
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'))
|