Pre-Flight Checklist
The PreFlight Checklist should be run before every flight to verify that the vehicle and planned flight path are safe to fly.

Overview
The checklist consists of a number of basic sanity tests that confirm the vehicle is ready and safe to fly, and that the planned flight is also safe. Some of the tests are automatic, while others are manual and must be marked as passed by the user (for example, sensor calibration and GPS lock are automatic tests, while checking that batteries are firmly attached is a manual check).
The checklist is grouped into separate sections. All tests in a section must pass before you can start the next section.
Using the Checklist
To use the checklist:
Click on the Vehicle button in the top bar (a vehicle must be connected).
\
You'll see the vehicle overview menu, then on the bottom submenus click on the Preflight checklist.

Click on the Preflight checklist and you'll find the checklist separated by sections

The checklist is complete when all the tests in the final section are green.
You're ready to fly!
Custom Preflight Checklist
AMC allows you to create a custom preflight checklist by importing a .preflightCheckList file ( which is a json file)
Json schema
The preflightCheckList file must follow the following json schema:
{
"mainTitle": "Auterion",
"title":"Test Title",
"preflightCheckList": [
{
"title":"Terms and Conditions",
"description":"I accept the terms and conditions, and I am responsible for this flight."
},
{
"title":"Weather Check",
"description":"The weather looks perfect and I am able to fly."
}
]
}
```
mainTitle: the name that will be assigned to the custom preflight checklist page
title: the name of the group of the custom preflight checklist
preflightCheckList: a JSON array composed by:
title: the name of the single checklist item
description: the description of the single checklist time
How to import
To import you need to go to Settings > General > FlyView. Here you can find the Import button:

Then if you go back to the Preflight Checklist you should see a new row on the left:

This new preflight checklist behaves like a normal one.
How to remove
To import you need to go to Settings > General > FlyView. Here you can find the Remove button:

By clicking the Remove button the custom preflight checklist will be removed.
Last updated