aboutsummaryrefslogtreecommitdiff
path: root/PunchingBag/src/Arduino.java
diff options
context:
space:
mode:
Diffstat (limited to 'PunchingBag/src/Arduino.java')
-rw-r--r--PunchingBag/src/Arduino.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/PunchingBag/src/Arduino.java b/PunchingBag/src/Arduino.java
index f76bcf6..12df25f 100644
--- a/PunchingBag/src/Arduino.java
+++ b/PunchingBag/src/Arduino.java
@@ -179,5 +179,16 @@ public class Arduino implements Runnable {
}
+ public void write(byte[] bytes) throws IOException {
+ out.write(bytes);
+ }
+
+ public void write(byte b) throws IOException {
+ out.write(b);
+ }
+
+ public int read() throws IOException {
+ return in.read();
+ }
}