Welcome to the new site for the U of A Aerial Robotics Group, now hosted on Github Pages!

All the content from our old blog will be migrated over soon.

Some examples of formatting

import math

sine_list = []
for i in range(19):
    sine_list.append(math.sin(i)     
print(sine_list)