aboutsummaryrefslogtreecommitdiff
path: root/examples/sms-send-python/README
blob: 3927c7432aaf175d0a4b625c49be6b40ae8896b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
The sms-send-python program makes use of the 'libmm-glib' library through
GObject Introspection to talk to ModemManager.

The program will:
 * Detect whether ModemManager is found in the bus
 * Prepare SMS properties object with the provided Number and Text.
 * Loop through each modem found in the system, and for each:
   ** Create a SMS
   ** Send the SMS

The output will look like this:

$ ./sms-send-python "+1234567890" "hello there, how are you?"
/org/freedesktop/ModemManager1/Modem/0: sms sent

Note that the program requires ModemManager and libmm-glib to be installed in
the system and the introspection typelibs available in the standard paths.

Have fun!