Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Hardware: | |
Box: | |
Every piece of the system fits into a standard carry-on size box which clamshells together | |
The top contains the drum machine, mixer, reverb, and synthesizer | |
The bottom contains a guitar pedal board and an integrated midi controller | |
The box has legs that elevate and offset the top above the bottom | |
The box has a single power input (110V AC) and most power adapters are safely hidden inside the box | |
The box has ventilation holes for the power adapters | |
The box has wheels and a handle to move it easily |
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
#define BOUNCE_WITH_PROMPT_DETECTION | |
#include <SoftwareSerial.h> | |
#include <Bounce2.h> | |
#define midiIn 4 | |
#define midiOut 5 | |
#define backPin 14 | |
#define playPin 15 | |
#define forwardPin 16 | |
#define undoPin 17 |
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
<style> | |
.universe{ | |
background-color: hsl(10, 50%, 80%); | |
position: fixed; | |
height: 100%; | |
width: 100%; | |
} | |
.lungs{ | |
background-color: hsl(0, 60%, 40%); |
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
int last2 = HIGH; | |
int last3 = HIGH; | |
int last4 = HIGH; | |
int last5 = HIGH; | |
int last6 = HIGH; | |
int now2 = HIGH; | |
int now3 = HIGH; | |
int now4 = HIGH; | |
int now5 = HIGH; |