plusdeck.dbus.interface
This module contains the core DbusInterface class. This class is used directly to serve the interface, and is subclassed by the DbusClient class in plusdeck.dbus.client.
You will likely not use this module directly. For information on the client, see plusdeck.dbus.client. For information on the service, see plusdeck.dbus.service.
DbusInterface
Bases: DbusInterfaceCommonAsync
A DBus interface for controlling the Plus Deck 2C PC Cassette Deck.
Source code in plusdeck/dbus/interface.py
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | |
closed
property
A Future that resolves when the client is closed.
close()
async
Unsubscribe from events and close the client.
Source code in plusdeck/dbus/interface.py
71 72 73 74 75 76 77 78 79 80 81 82 | |
config()
The DBus service's currently loaded configuration.
Source code in plusdeck/dbus/interface.py
46 47 48 49 50 51 52 | |
current_state()
Get the last known state of the Plus Deck 2C PC Cassette Deck.
Source code in plusdeck/dbus/interface.py
182 183 184 185 186 187 | |
eject()
async
Eject the tape.
Source code in plusdeck/dbus/interface.py
155 156 157 158 159 160 161 | |
fast_forward_a()
async
Fast-forward side A.
Source code in plusdeck/dbus/interface.py
107 108 109 110 111 112 113 | |
fast_forward_b()
async
Fast-forward side B.
Source code in plusdeck/dbus/interface.py
115 116 117 118 119 120 121 | |
pause()
async
Pause if playing, or start playing if paused.
Source code in plusdeck/dbus/interface.py
139 140 141 142 143 144 145 | |
play_a()
async
Play side A.
Source code in plusdeck/dbus/interface.py
92 93 94 95 96 97 | |
play_b()
async
Play side B.
Source code in plusdeck/dbus/interface.py
99 100 101 102 103 104 105 | |
rewind_a()
async
Rewind side A. Equivalent to fast-forwarding side B.
Source code in plusdeck/dbus/interface.py
123 124 125 126 127 128 129 | |
rewind_b()
async
Rewind side B. Equivalent to fast-forwarding side A.
Source code in plusdeck/dbus/interface.py
131 132 133 134 135 136 137 | |
state()
Listen for updates to the state of the Plus Deck 2C Cassette Deck.
Source code in plusdeck/dbus/interface.py
189 190 191 192 193 194 195 | |
stop()
async
Stop the tape.
Source code in plusdeck/dbus/interface.py
147 148 149 150 151 152 153 | |
wait_for(state, timeout)
async
Wait for an expected state, with an optional timeout. When timeout is negative, it will be ignored.
Source code in plusdeck/dbus/interface.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | |