We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ebff3 commit e626665Copy full SHA for e626665
Gemma_Firewalker_AnimLite/Gemma_Firewalker_AnimLite.ino
@@ -73,7 +73,6 @@ void setup() {
73
memset(stepX , 0, sizeof(stepX));
74
strip.begin();
75
stepFiltered = analogRead(STEP_PIN); // Initial input
76
- Serial.begin(9600);
77
}
78
79
void loop() {
@@ -82,7 +81,6 @@ void loop() {
82
81
// Read analog input, with a little noise filtering
83
//stepFiltered = ((stepFiltered * 3) + analogRead(STEP_PIN)) >> 2;
84
stepFiltered = (((stepFiltered * 3) - 100) + analogRead(STEP_PIN)) >> 2;
85
- Serial.println (stepFiltered);
86
87
// The strip doesn't simply display the current pressure reading. Instead,
88
// there's a bit of an animated flourish from heel to toe. This takes time,
0 commit comments