KnobCloud

You are not signed in

If you wish to buy this item or send a message to the seller, please sign in.

Forgot password?

You don't have an account yet?

Create an Account
or

Native Instruments

Timeless Glow Maschine Expansion

$ 20

Native Instruments Timeless Glow Maschine Expansion Published on Sat, 19 Jul 2025

by mixteiro

Required Info

Platforms

Developer Transfer Info

external link

Licence Type

Registered

Payment Method

PayPal with Buyer Protection

#include
#include
#include
#include
#include
#include

// M_PI is not always defined in Arduino framework, so define it if it's missing.
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif

U8G2_SSD1309_128X64_NONAME2_F_4W_HW_SPI u8g2(U8G2_R0, 5, 16, 17);

MIDI_CREATE_INSTANCE(HardwareSerial, Serial, MIDI);

// --- Timing Constants ---
const byte TICKS_PER_STEP = 6;
const byte STEPS_PER_BEAT = 4;
const byte BEATS_PER_BAR = 4;
const int MIDI_CLOCKS_PER_BEAT_EFFECTIVE = TICKS_PER_STEP * STEPS_PER_BEAT;

// --- MIDI State ---
struct MidiState {
volatile int b