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
6 lines
95 B
Python
6 lines
95 B
Python
#!/bin/python
|
|
from harness.uart import conn, log
|
|
|
|
conn.gsm("AT+CPIN?\r");
|
|
print(conn.read(10))
|