Current groundspeed in metres/second (``double``). This attribute is settable. The set value is the default target groundspeed when moving the vehicle using :py:func:`simple_goto` (or other position-based movement commands).
(self)
| 1769 | |
| 1770 | @property |
| 1771 | def groundspeed(self): |
| 1772 | """ |
| 1773 | Current groundspeed in metres/second (``double``). |
| 1774 | |
| 1775 | This attribute is settable. The set value is the default target groundspeed |
| 1776 | when moving the vehicle using :py:func:`simple_goto` (or other position-based |
| 1777 | movement commands). |
| 1778 | """ |
| 1779 | return self._groundspeed |
| 1780 | |
| 1781 | @groundspeed.setter |
| 1782 | def groundspeed(self, speed): |
nothing calls this directly
no test coverage detected