Current airspeed in metres/second (``double``). This attribute is settable. The set value is the default target airspeed when moving the vehicle using :py:func:`simple_goto` (or other position-based movement commands).
(self)
| 1796 | |
| 1797 | @property |
| 1798 | def airspeed(self): |
| 1799 | """ |
| 1800 | Current airspeed in metres/second (``double``). |
| 1801 | |
| 1802 | This attribute is settable. The set value is the default target airspeed |
| 1803 | when moving the vehicle using :py:func:`simple_goto` (or other position-based |
| 1804 | movement commands). |
| 1805 | """ |
| 1806 | return self._airspeed |
| 1807 | |
| 1808 | @airspeed.setter |
| 1809 | def airspeed(self, speed): |
nothing calls this directly
no test coverage detected