Skip to content

ch45/Processing_fadecandy_spectrum_analyzer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Processing fadecandy spectrum analyzer

Cmd Line

rem Windows

path %PATH%;D:\Apps\processing-3.5.4
processing-java.exe --sketch=%cd%\Processing_fadecandy_spectrum_analyzer --run exit=60

# raspi (vnc)

processing-java --sketch=./Processing_fadecandy_spectrum_analyzer --run exit=60

# raspi (ssh i.e. headless)

xvfb-run processing-java --sketch=./Processing_fadecandy_spectrum_analyzer --run exit=60

Code sample, return a random colour part

int getRandomColourPart(int c) {
  int partIndex = (int)random(3.0);
  while (partIndex-- > 0) { c >>>= 8; }
  return c & 0xFF;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors