Skip to content

Commit

Permalink
wider neck
Browse files Browse the repository at this point in the history
  • Loading branch information
phibo23 committed Nov 6, 2019
1 parent 25cc6c9 commit afa509d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions hourglass.ino
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,14 @@ void _initLed() {
void _drawHourglassShape() {
#define shapeBrightness 72
ledmatrix.drawFastHLine(0, 0, 9, shapeBrightness);
ledmatrix.drawFastVLine(0, 0, 3, shapeBrightness);
ledmatrix.drawFastVLine(8, 0, 3, shapeBrightness);
ledmatrix.drawLine(0, 3, 4, 7, shapeBrightness);
ledmatrix.drawLine(8, 3, 4, 7, shapeBrightness);
ledmatrix.drawLine(0, 12, 4, 8, shapeBrightness);
ledmatrix.drawLine(8, 12, 4, 8, shapeBrightness);
ledmatrix.drawFastVLine(0, 13, 3, shapeBrightness);
ledmatrix.drawFastVLine(8, 13, 3, shapeBrightness);
ledmatrix.drawFastVLine(0, 0, 4, shapeBrightness);
ledmatrix.drawFastVLine(8, 0, 4, shapeBrightness);
ledmatrix.drawLine(0, 4, 3, 7, shapeBrightness);
ledmatrix.drawLine(8, 4, 5, 7, shapeBrightness);
ledmatrix.drawLine(0, 11, 3, 8, shapeBrightness);
ledmatrix.drawLine(8, 11, 5, 8, shapeBrightness);
ledmatrix.drawFastVLine(0, 12, 4, shapeBrightness);
ledmatrix.drawFastVLine(8, 12, 4, shapeBrightness);
ledmatrix.drawFastHLine(0, 15, 9, shapeBrightness);
}

Expand Down

0 comments on commit afa509d

Please sign in to comment.