diff -r f34fe5abe069 -r c8198736bff3 Microbit/microbit/speaker.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Microbit/microbit/speaker.py Sun Apr 04 16:54:03 2021 +0200 @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module containing stubs for API generation of the 'microbit.speaker' +module. +""" + +def off(): + pass + +def on(): + pass