File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,6 @@ void AnalogHandler(int mode, String data){
137137 if (mode<=0 ){ // read
138138 int pin = Str2int (data);
139139 Serial.println (analogRead (pin));
140-
141140 }else {
142141 String sdata[2 ];
143142 split (sdata,2 ,data,' %' );
@@ -149,7 +148,6 @@ void AnalogHandler(int mode, String data){
149148
150149void ConfigurePinHandler (String data){
151150 int pin = Str2int (data);
152-
153151 if (pin <=0 ){
154152 pinMode (-pin,INPUT);
155153 }else {
@@ -158,7 +156,6 @@ void ConfigurePinHandler(String data){
158156}
159157
160158void shiftOutHandler (String data) {
161-
162159 String sdata[4 ];
163160 split (sdata, 4 , data, ' %' );
164161 int dataPin = sdata[0 ].toInt ();
@@ -403,7 +400,6 @@ void SerialParser(void) {
403400 else if (cmd == " sz" ) {
404401 sizeEEPROM ();
405402 }
406-
407403}
408404
409405void setup () {
You can’t perform that action at this time.
0 commit comments