PixelStomp, manufactured by ROXXXTAR.com, is a versatile digital audio effect processor designed for sound manipulation. It enables users to apply a wide range of effects, including distortion, filtering, modulation, and more. This component is widely used in music production, live performances, and audio experimentation, offering musicians and sound engineers a powerful tool to shape and enhance audio signals.
The PixelStomp has a USB-C port for power and MIDI communication, as well as stereo input/output jacks. Below is the pin configuration for the audio and control connections:
Pin/Port | Description |
---|---|
USB-C Port | Power input (5V DC) and optional MIDI over USB communication |
Stereo Input (IN) | 3.5mm TRS jack for stereo audio input |
Stereo Output (OUT) | 3.5mm TRS jack for stereo audio output |
Rotary Encoders | 4 rotary encoders for adjusting effect parameters |
Tactile Buttons | 6 buttons for effect selection and preset management |
PixelStomp can be controlled via MIDI messages sent from an Arduino UNO. Below is an example code snippet to send a MIDI control change (CC) message to adjust an effect parameter:
#include <MIDI.h>
// Create a MIDI object
MIDI_CREATE_DEFAULT_INSTANCE();
void setup() {
// Initialize MIDI communication at 31250 baud rate
MIDI.begin(MIDI_CHANNEL_OMNI);
}
void loop() {
// Send a MIDI Control Change (CC) message
// CC number 10 adjusts the effect intensity, value range: 0-127
MIDI.sendControlChange(10, 64, 1); // Channel 1, value 64 (midpoint)
delay(500); // Wait for 500ms before sending the next message
}
Note: Ensure the Arduino UNO is connected to the PixelStomp via a USB-MIDI adapter or a compatible MIDI shield.
No Audio Output:
Distorted or Clipped Audio:
MIDI Control Not Working:
Device Overheating:
Q: Can I use PixelStomp with a battery-powered setup?
A: Yes, you can power the PixelStomp using a USB power bank for portable use.
Q: Does PixelStomp support mono audio input?
A: Yes, you can use a mono-to-stereo adapter to connect mono audio sources.
Q: How do I reset the PixelStomp to factory settings?
A: Hold down the first and last tactile buttons while powering on the device to reset it.
Q: Can I create custom effects?
A: Currently, custom effects are not supported, but firmware updates may add this feature in the future.
For additional support, visit ROXXXTAR.com.