10 lines
169 B
Python
10 lines
169 B
Python
|
# Various configurable options used in the GPS/Data application.
|
||
|
|
||
|
# SMS message that triggers command
|
||
|
cmd_list = {
|
||
|
|
||
|
'LS' : 'ls -lsh',
|
||
|
'UPTIME' : 'uptime'
|
||
|
|
||
|
}
|