12 lines
196 B
Text
12 lines
196 B
Text
#
|
|
# Cellular helpers.
|
|
#
|
|
|
|
def _at_command(args, stdin=None):
|
|
""" Helper for running one or more AT commands. """
|
|
echo @(args) | sudo atinout - $XONSH_AT_MODEM -
|
|
|
|
aliases['at'] = _at_command
|
|
|
|
|
|
|