Wed, 29 Apr 2020 18:26:18 +0200
Added API stubs for Calliope mini.
# -*- coding: utf-8 -*- # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module containing stubs for API generation of the 'usb_midi' module. """ class PortIn(): def read(self, nbytes=None): pass def readinto(self, buf, nbytes=None): pass class PortOut(): def write(self, buf): pass