Wed, 28 Aug 2019 19:53:19 +0200
Started with the stubs for CircuitPython.
# -*- coding: utf-8 -*- # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module containing stubs for API generation of the 'microbit.compass' module. """ def calibrate(): pass def is_calibrated(): pass def clear_calibration(): pass def get_x(): pass def get_y(): pass def get_z(): pass def heading(): pass def get_field_strength(): pass