disable_speed_zones()
- 1 Minute to read
disable_speed_zones()
- 1 Minute to read
Article summary
Did you find this summary helpful?
Thank you for your feedback
Disables the speed(limited) zones.
Reference
Arguments
None
Return
None
Exceptions
RayaNavNotLocated
RayaNavUnkownError
See the complete list of navigation exceptions.
Usage Example
Code:
...
class RayaApplication(RayaApplicationBase):
async def setup(self):
self.nav = await self.enable_controller('navigation')
...
async def loop(self):
...
await self.nav.disable_speed_zones()
...
async def finish(self):
...
Was this article helpful?