Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
/* Modified and commented by ai.rs * t4a_boblight * (C) 2014 Hans Luijten, www.tweaking4all.com * * t4a_boblight is free software and can be distributed and/or modified * freely as long as the copyright notice remains in place. * Nobody is allowed to charge you for this code. * Use of this code is entirely at your own risk. */ #include "Adafruit_NeoPixel.h" // DEFINITIONS #define STARTCOLOR 0x333333 // LED colors at start #define BLACK 0x000000 // LED color BLACK #define DATAPIN 6 // Datapin #define LEDCOUNT 183 // Number of LEDs used for boblight // LEDCOUNT value is local value in Arduino sketch, for hyperion it doesn't matter it sends prefx characters according to hyperion config #define SHOWDELAY 200 // Delay in micro seconds before showing default 200 #define BAUDRATE 500000// Serial port speed, 460800 tested with Arduino Uno R3 23400 za MEGA, 115200 nano #define BRIGHTNESS 90 // Max. brightness in % //Hyperion sends prefix characters based on number of LEDs in config file // e.g. for 181 LEDs it will send 0xB4 and cheksum 0xE1 // keep in mind if you are using boblight config to calculate prefix that Boblight counts diodes from 1 and Hyperion from 0 // if you have problems try +1 or -1 diodes when generating prefix characters // values to save some time: 178 B1 E4, 180 B3E6, 181 B4E1, 182 B5E0 //hyperion code //_ledBuffer[3] = ((ledValues.size() - 1) >> 8) & 0xFF; // LED count high byte // _ledBuffer[4] = (ledValues.size() - 1) & 0xFF; // LED count low byte // _ledBuffer[5] = _ledBuffer[3] ^ _ledBuffer[4] ^ 0x55; // Checksum const char prefix[] = {0x41, 0x64, 0x61, 0x00, 0xB7, 0xE2}; // Start prefix ADA char buffer[sizeof(prefix)]; // Temp buffer for receiving prefix data // Init LED strand, WS2811/WS2912 specific // These might work for other configurations: // NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs) // NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers) // NEO_GRB Pixels are wired for GRB bitstream (most NeoPixel products) // NEO_RGB Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2) Adafruit_NeoPixel strip = Adafruit_NeoPixel(LEDCOUNT, DATAPIN, NEO_GRB + NEO_KHZ800); int state; // Define current state #define STATE_WAITING 1 // - Waiting for prefix #define STATE_DO_PREFIX 2 // - Processing prefix #define STATE_DO_DATA 3 // - Handling incoming LED colors int readSerial; // Read Serial data (1) int currentLED; // Needed for assigning the color to the right LED void setup() { strip.begin(); // Init LED strand, set all black, then all to startcolor strip.setBrightness( (255 / 100) * BRIGHTNESS ); setAllLEDs(BLACK, 0); setAllLEDs(STARTCOLOR, 5); Serial.begin(BAUDRATE); // Init serial speed state = STATE_WAITING; // Initial state: Waiting for prefix } void loop() { switch(state) { case STATE_WAITING: // *** Waiting for prefix *** if( Serial.available()>0 ) { readSerial = Serial.read(); // Read one character if ( readSerial == prefix[0] ) // if this character is 1st prefix char { state = STATE_DO_PREFIX; } // then set state to handle prefix } break; case STATE_DO_PREFIX: // *** Processing Prefix *** if( Serial.available() > sizeof(prefix) - 2 ) { Serial.readBytes(buffer, sizeof(prefix) - 1); for( int Counter = 0; Counter < sizeof(prefix) - 1; Counter++) { if( buffer[Counter] == prefix[Counter+1] ) { state = STATE_DO_DATA; // Received character is in prefix, continue currentLED = 0; // Set current LED to the first one } else { state = STATE_WAITING; // Crap, one of the received chars is NOT in the prefix break; // Exit, to go back to waiting for the prefix } // end if buffer } // end for Counter } // end if Serial break; case STATE_DO_DATA: // *** Process incoming color data *** if( Serial.available() > 2 ) // if we receive more than 2 chars { Serial.readBytes( buffer, 3 ); // Abuse buffer to temp store 3 charaters strip.setPixelColor( currentLED++, buffer[0], buffer[1], buffer[2]); // and assing to LEDs } if( currentLED > LEDCOUNT ) // Reached the last LED? Display it! { strip.show(); // Make colors visible delayMicroseconds(SHOWDELAY); // Wait a few micro seconds state = STATE_WAITING; // Reset to waiting ... currentLED = 0; // and go to LED one break; // and exit ... and do it all over again } break; } // switch(state) } // loop // Sets the color of all LEDs in the strand to 'color' // If 'wait'>0 then it will show a swipe from start to end void setAllLEDs(uint32_t color, int wait) { for ( int Counter=0; Counter < LEDCOUNT; Counter++ ) // For each LED { strip.setPixelColor( Counter, color ); // .. set the color if( wait > 0 ) // if a wait time was set then { strip.show(); // Show the LED color delay(wait); // and wait before we do the next LED } // if wait } // for Counter strip.show(); // Show all LEDs } // setAllLEDs
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Untitled
19 min ago | 6.61 KB
Untitled
1 hour ago | 10.28 KB
OoT rando seed 4/16
1 hour ago | 67.81 KB
Untitled
2 hours ago | 8.21 KB
Untitled
3 hours ago | 8.46 KB
Untitled
4 hours ago | 7.62 KB
Web Maintenance Kickoff [POST REDESIGN]
4 hours ago | 0.98 KB
Untitled
5 hours ago | 7.43 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!