summaryrefslogtreecommitdiff
path: root/lib/bluetooth-client.xml
blob: 32d183ee7332d5aefd1765363258dcdc1a81b779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="UTF-8" ?>

<node name="/">
  <interface name="org.bluez.Manager">
    <method name="DefaultAdapter">
      <arg type="o" direction="out"/>
    </method>

    <method name="GetProperties">
      <arg type="a{sv}" direction="out"/>
    </method>

    <signal name="AdapterAdded">
      <arg type="o"/>
    </signal>
    <signal name="AdapterRemoved">
      <arg type="o"/>
    </signal>
    <signal name="DefaultAdapterChanged">
      <arg type="o"/>
    </signal>
  </interface>

  <interface name="org.bluez.Adapter">
    <method name="GetProperties">
      <arg type="a{sv}" direction="out"/>
    </method>

    <method name="SetProperty">
      <arg type="s" direction="in"/>
      <arg type="v" direction="in"/>
    </method>

    <method name="StartDiscovery">
    </method>

    <method name="StopDiscovery">
    </method>

    <method name="RemoveDevice">
      <arg type="o" name="device" direction="in"/>
    </method>

    <signal name="PropertyChanged">
      <arg type="s"/>
      <arg type="v"/>
    </signal>
    <signal name="DeviceCreated">
      <arg type="o"/>
    </signal>
    <signal name="DeviceRemoved">
      <arg type="o"/>
    </signal>
    <signal name="DeviceFound">
      <arg type="s"/>
      <arg type="a{sv}"/>
    </signal>
  </interface>

  <interface name="org.bluez.Device">
    <method name="GetProperties">
      <arg type="a{sv}" direction="out"/>
    </method>

    <method name="SetProperty">
      <arg type="s" direction="in"/>
      <arg type="v" direction="in"/>
    </method>

    <method name="Disconnect"/>

    <signal name="PropertyChanged">
      <arg type="s"/>
      <arg type="v"/>
    </signal>
  </interface>
</node>