(self, data)
| 140 | return result |
| 141 | |
| 142 | def write(self, data): |
| 143 | for conn_handle in self._connections: |
| 144 | self._ble.gatts_notify(conn_handle, self._tx_handle, data) |
| 145 | |
| 146 | # Like write() but adds a newline at the end. |
| 147 | def print(self, value): |
no outgoing calls
no test coverage detected