Connect to the crazyflie.
(self)
| 53 | # Public methods |
| 54 | |
| 55 | def connect(self): |
| 56 | """ |
| 57 | Connect to the crazyflie. |
| 58 | """ |
| 59 | print('Connecting to %s' % self._link_uri) |
| 60 | self._cf.open_link(self._link_uri) |
| 61 | |
| 62 | def disconnect(self): |
| 63 | print('Disconnecting from %s' % self._link_uri) |