This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import airsim | |
from pynput import keyboard | |
import numpy as np | |
from scipy.spatial.transform import Rotation as ScipyRotation | |
import time | |
class DroneController: | |
""" | |
High level drone controller for manual drone navigation using a regular keyboard. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%load_ext autoreload | |
%autoreload 2 | |
from IPython.core.display import display, HTML | |
display(HTML("<style>.container { width:90% !important; }</style>")) |