The Proto_Pedal is an innovative development platform tailored for the creation and experimentation of guitar effects pedals. This versatile tool allows both hobbyists and professional engineers to prototype various pedal circuits with ease. The Proto_Pedal's design is optimized for flexibility, enabling users to swap out components and test different configurations without the need for permanent soldering or complex setups.
Pin Number | Description | Notes |
---|---|---|
1 | Input Signal | Connect to guitar/output source |
2 | Output Signal | Connect to amplifier/input sink |
3 | +9V Power Supply | Center-negative power supply |
4 | Ground (0V) | Common ground for the circuit |
5 | Bypass Switch Input | Connect to 3PDT switch |
6 | Bypass Switch Output | Connect to 3PDT switch |
7 | LED+ | Connect to status LED anode |
8 | LED- | Connect to status LED cathode |
Below is an example code snippet for controlling an LED on the Proto_Pedal using an Arduino UNO. This could be used to indicate the effect's engagement status.
// Define the LED pin
const int ledPin = 13; // LED connected to digital pin 13
void setup() {
// Initialize the digital pin as an output:
pinMode(ledPin, OUTPUT);
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for a second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for a second
}
Remember to adjust the ledPin
variable to match the digital pin connected to the Proto_Pedal's LED if it's interfaced with an Arduino UNO.
Note: This code is for illustrative purposes. The Proto_Pedal typically does not require an Arduino for standard operation as a guitar pedal, but an Arduino can be used for more advanced digital control applications.