Skip to content

Commit e626665

Browse files
committed
Removed serial references
they were throwing errors
1 parent d9ebff3 commit e626665

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Gemma_Firewalker_AnimLite/Gemma_Firewalker_AnimLite.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ void setup() {
7373
memset(stepX , 0, sizeof(stepX));
7474
strip.begin();
7575
stepFiltered = analogRead(STEP_PIN); // Initial input
76-
Serial.begin(9600);
7776
}
7877

7978
void loop() {
@@ -82,7 +81,6 @@ void loop() {
8281
// Read analog input, with a little noise filtering
8382
//stepFiltered = ((stepFiltered * 3) + analogRead(STEP_PIN)) >> 2;
8483
stepFiltered = (((stepFiltered * 3) - 100) + analogRead(STEP_PIN)) >> 2;
85-
Serial.println (stepFiltered);
8684

8785
// The strip doesn't simply display the current pressure reading. Instead,
8886
// there's a bit of an animated flourish from heel to toe. This takes time,

0 commit comments

Comments
 (0)