This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$! JCLOCK ARCHIVE FILE. | |
$! | |
$! CREATE A NEW, EMPTY SUBDIRECTORY, "SET DEFAULT" TO IT, | |
$! PUT THIS FILE IN THE NEW SUBDIRECTORY AS JCLOCK.ARC AND THEN @JCLOCK.ARC | |
$! | |
$! | |
$! SUPER-ULTRA-GIVE-AWAY-WARE PROGRAM...COPY AND DISTRIBUTE AT RANDOM. | |
$! | |
$! | |
$! MARK KRIEGSMAN, AUTHOR 87-05-05 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// "Pacifica" | |
// Gentle, blue-green ocean waves. | |
// December 2019, Mark Kriegsman and Mary Corey March. | |
// For Dan. | |
// | |
#define FASTLED_ALLOW_INTERRUPTS 0 | |
#include <FastLED.h> | |
FASTLED_USING_NAMESPACE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ClearWayQA Plug-In PPC v2.1a5 Read Me | |
6/18/98 | |
"ClearWayQA" is a tool for finding, isolating, and recording two | |
specific kinds of bugs in other WebSTAR plug-ins: memory bugs, and | |
PowerPC processor exceptions. | |
ClearWayQA finds many kinds of memory bugs that other plug-ins may have, | |
such as double-deletes, uninitialized variables, buffer and array | |
overruns, etc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "FastLED.h" | |
// Lights that chase around the outside of a sign, as found | |
// at carnivals, circuses, and theatres. | |
#define NUM_LEDS 35 | |
#define LED_TYPE WS2811 | |
#define COLOR_ORDER RGB | |
#define DATA_PIN 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PaulTeensyLCPaletteBugTest.ino.elf: file format elf32-littlearm | |
Disassembly of section .text: | |
00000000 <_VectorsFlash>: | |
0: 00 20 00 20 f9 00 00 00 59 15 00 00 25 15 00 00 . . ....Y...%... | |
10: 25 15 00 00 25 15 00 00 25 15 00 00 25 15 00 00 %...%...%...%... | |
20: 25 15 00 00 25 15 00 00 25 15 00 00 59 15 00 00 %...%...%...Y... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PaulTeensyLCPaletteBugTest.ino.elf: file format elf32-littlearm | |
Disassembly of section .text: | |
00000000 <_VectorsFlash>: | |
0: 00 18 00 20 c1 00 00 00 c5 15 00 00 91 15 00 00 ... ............ | |
10: 91 15 00 00 91 15 00 00 91 15 00 00 91 15 00 00 ................ | |
20: 91 15 00 00 91 15 00 00 91 15 00 00 c5 15 00 00 ................ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <FastLED.h> | |
// fadeTowardColor example code. | |
// | |
// Sample code that includes a function for fading one RGB color toward a target RGB color | |
// Also includes a function for fading a whole array of pixels toward a given color | |
// | |
// Both of these functions _modify_ the existing color, in place. | |
// | |
// All fades are done in RGB color space. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "FastLED.h" | |
#if defined(FASTLED_VERSION) && (FASTLED_VERSION < 3001000) | |
#warning "Requires FastLED 3.1 or later; check github for latest code." | |
#endif | |
#define NUM_LEDS 100 | |
#define LED_TYPE WS2811 | |
#define COLOR_ORDER GRB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Updated sinelon (no visual gaps) | |
void sinelon() | |
{ | |
// a colored dot sweeping | |
// back and forth, with | |
// fading trails | |
fadeToBlackBy( leds, NUM_LEDS, 20); | |
int pos = beatsin16(13,0,NUM_LEDS); | |
static int prevpos = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "FastLED.h" | |
// DiscoStrobeWithPalette | |
// *Flashing* rainbow lights that zoom back and forth to a beat. | |
// See your doctor before using this code if you have certain neurological conditions. | |
// | |
// Same as "DiscoStrobe" (July 2015), except updated to use a | |
// color palette of your choice instead of the HSV color wheel. | |
// Default color palette is a section of Purple, Green, Orange, | |
// and White for Halloween decor. |
NewerOlder