Dual OSC Mozzi VCO – Hagiwo Build

This VCO has two oscillators. They can be tunes seperately. The theid knob is for changing the waveform (noise, saw, tri, sine, square) It takes a 1v/Oct signal for the pitch and has an octave switch to set it one octave higher or lower. Link to original project page: Here Everything works fine, but the […]

FM VCO – Hagiwo build

This Mozzi based Arduino VCO sounds really great. Link to the original project page: Here Hagiwo’s code: Important to note is that you’ll need the MOZZI Arduino Lib to get this to run. #include <MozziGuts.h>#include <Oscil.h>#include <tables/cos2048_int8.h> // table for Oscils to play#include <mozzi_fixmath.h>#define CONTROL_RATE 256 // Hz, powers of 2 are most reliableOscil<COS2048_NUM_CELLS, AUDIO_RATE> […]

6 Channel Trigger Sequencer – Hagiwo Build

This Arduino Nano Sequencer is working like a treat and I can’t recommend it enough. Link to the original project page: Here One rotary encoder and a button to interface with the tiny oled display a clock input and 6 channel outputs. ///—————-ライブラリの読み出し————————— //EEPROM用ライブラリ #include <EEPROM.h> //エンコーダ用ライブラリ #define ENCODER_OPTIMIZE_INTERRUPTS //エンコーダノイズ対策 #include <Encoder.h> //OLED用ライブラリ #include<Wire.h> #include<Adafruit_GFX.h> […]

Midi2CV – a pretty well documented horror build

My problem with this at the time of building was that there’s no complete schematic, only bits and pieces to puzzle together and a lot of info in the .ino file itself. I hope you have fun solving that puzzle. Link to the original project page: Projectpage Link to googledrive with all libs: googledrive To […]

Clock – SM Tik-Tak

The clock I currently use. It was one of my first builds and I often thought about replacing it but I still use it to this day. It has 4 outputs(1, 1/2, 1/4, 1/8) and two pots, one changes the gate length and one the clock frequency. The button is a reset. Link to project: […]