Skip to content

Commit

Permalink
Library example restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
connornishijima committed Dec 3, 2021
1 parent d99f659 commit 5efc66c
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 29 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// TODO: 06_Shortcode_Library.ino needs content

void setup() {
}

void loop() {
}

This file was deleted.

7 changes: 0 additions & 7 deletions examples/03_Tutorials/NTP_Clock/NTP_Clock.ino

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
void setup() {
}

void loop() {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
void setup() {
}

void loop() {
}
7 changes: 0 additions & 7 deletions examples/GUIDED_TOUR/GUIDED_TOUR.ino

This file was deleted.

7 changes: 2 additions & 5 deletions src/pixie_chroma_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@
// justify(CENTER); // Mask centered here
// show();

// TODO: pix.print( digitalRead(p) ); does not work on Teensy 3.2
// 02_Quad_Mode:30: error: call of overloaded 'print(uint8_t)' is ambiguous
// `pix.print( digitalRead(6) );`


/*! Modes for updating Pixie Chroma displays */
enum t_update_mode {
Expand All @@ -49,7 +45,8 @@ enum t_update_mode {
/*! ############################################################################
@brief
This is the software documentation for using Pixie Chroma functions on
Arduino! **For full example usage, see [Demos](https://DEMO_LINK.HERE)**.
Arduino! **For full example usage, see File > Examples > Pixie_Chroma
inside Arduino!**.
*///............................................................................
class PixieChroma{
public:
Expand Down
6 changes: 3 additions & 3 deletions src/utility/pixie_animations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
* @file pixie_animations.cpp
*
* Designed specifically to work with Pixie Chroma:
* ----> https://connornishijima.github.io/PixieChroma
* ----> https://connornishijima.github.io/Pixie_Chroma
*
* Last Updated by Connor Nishijima on 10/21/21
* Last Updated by Connor Nishijima on 12/2/21
*/

#include "pixie_animations.h"

void ANIMATION_NULL( PixieChroma* _p, float delta ){
// It does nothing, but it does nothing REALLY WELL! You can enable this
// empty function with p.set_animation(ANIMATION_NULL) to manually control color when you want
// empty function with pix.set_animation(ANIMATION_NULL) to manually control color when you want
}


Expand Down

0 comments on commit 5efc66c

Please sign in to comment.