diff options
Diffstat (limited to 'arduino/rgb')
| -rw-r--r-- | arduino/rgb/.rgb.ino.swo | bin | 20480 -> 0 bytes | |||
| -rw-r--r-- | arduino/rgb/rgb.ino | 4 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/arduino/rgb/.rgb.ino.swo b/arduino/rgb/.rgb.ino.swo Binary files differdeleted file mode 100644 index 2ab1ac4..0000000 --- a/arduino/rgb/.rgb.ino.swo +++ /dev/null diff --git a/arduino/rgb/rgb.ino b/arduino/rgb/rgb.ino index 195eff2..aa35aa0 100644 --- a/arduino/rgb/rgb.ino +++ b/arduino/rgb/rgb.ino @@ -104,7 +104,6 @@ void parse(String com)  {  	String p1;  	String p2; -  	p1 = com.substring(0, com.indexOf("="));  	p2 = com.substring(com.indexOf("=") + 1); @@ -176,6 +175,8 @@ void parse(String com)                  bf = p2.toInt();          if (p1.equalsIgnoreCase("bt"))                  bt = p2.toInt(); +	if (p1.equalsIgnoreCase("ping")) +		Serial.write("ping=pong\n");  }  String line; @@ -202,6 +203,5 @@ void loop()  		{  			line += c;  		} -  	}  }  | 
