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 board | |
| import digitalio | |
| import busio | |
| import random | |
| import time | |
| class PicoRGBkeypad: | |
| WIDTH=4 | |
| HEIGHT=4 | |
| NUM_PAD=WIDTH*HEIGHT |
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 time | |
| import board | |
| import busio | |
| import usb_midi | |
| import adafruit_midi | |
| from adafruit_midi.note_off import NoteOff | |
| from adafruit_midi.note_on import NoteOn | |
| from adafruit_bus_device.i2c_device import I2CDevice | |
| import adafruit_dotstar |
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 time | |
| import board | |
| import usb_midi | |
| import adafruit_midi | |
| from analogio import AnalogIn | |
| from adafruit_midi.control_change import ControlChange | |
| # MIDI CC knob controller example for Raspberry Pi Pico |
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 time | |
| import board | |
| import busio | |
| import usb_midi | |
| import adafruit_midi | |
| from adafruit_midi.note_off import NoteOff | |
| from adafruit_midi.note_on import NoteOn | |
| from adafruit_bus_device.i2c_device import I2CDevice | |
| import adafruit_dotstar |
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
| #!/usr/bin/python | |
| ''' | |
| Author: Thomas Goodwin | |
| Company: Geon Technologies, LLC, 2014 | |
| This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. | |
| You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. |