CircuitPython/usb_midi.py

changeset 7
e336d6afc5a6
equal deleted inserted replaced
6:81a2208f13e4 7:e336d6afc5a6
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module containing stubs for API generation of the 'usb_midi' module.
8 """
9
10 class PortIn():
11 def read(self, nbytes=None):
12 pass
13
14 def readinto(self, buf, nbytes=None):
15 pass
16
17 class PortOut():
18 def write(self, buf):
19 pass

eric ide

mercurial