Skip to content

Instantly share code, notes, and snippets.

View joebataz's full-sized avatar

Joe Banko joebataz

View GitHub Profile
@joebataz
joebataz / ROTY_rewrite.ino
Last active November 7, 2025 19:28
Complete ROTY Program, Arduino/Conceptinetics DMX shield (driver for a LED strip, I am using APA102) Setup for 26 channel DMX controller
#include <Conceptinetics.h>
#include <FastLED.h> // FastLED library. Preferably the latest copy of FastLED
#define DMX_SLAVE_CHANNELS 26
#define DATA_PIN 9
#define CLOCK_PIN 10
#define NUM_LEDS 219 //Top 73 - Bottom 146
#define BRIGHTNESS 125
#define LED_TYPE APA102 //RGB,RBG,BRG,BGR
@joebataz
joebataz / ROTY_vnostep.ino
Created September 15, 2025 17:33
FastLED/DMX no stepper
#include <Conceptinetics.h>
#include <FastLED.h> // FastLED library. Preferably the latest copy of FastLED 2.1.
#define DMX_SLAVE_CHANNELS 16
#define DATA_PIN 5
#define CLOCK_PIN 3
#define NUM_LEDS 64
#define BRIGHTNESS 64
#define LED_TYPE APA102 //RGB,RBG,BRG,BGR
@joebataz
joebataz / ROTY_v1.ino
Created September 15, 2025 17:27
FastLED/DMX project
//copyright J. Banko SALS
#include <Conceptinetics.h>
#include <FastLED.h> // FastLED library. Preferably the latest copy of FastLED 2.1.
#define DMX_SLAVE_CHANNELS 16
#define DATA_PIN 5
#define CLOCK_PIN 3
#define NUM_LEDS 145