aboutsummaryrefslogtreecommitdiff
path: root/PunchingBag/src/SerialWriteListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'PunchingBag/src/SerialWriteListener.java')
-rw-r--r--PunchingBag/src/SerialWriteListener.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/PunchingBag/src/SerialWriteListener.java b/PunchingBag/src/SerialWriteListener.java
new file mode 100644
index 0000000..01a8db4
--- /dev/null
+++ b/PunchingBag/src/SerialWriteListener.java
@@ -0,0 +1,9 @@
+import java.util.EventListener;
+
+interface SerialWriteListener extends EventListener {
+
+ void serialWriteEvent(byte b);
+
+ void serialWriteEvent(byte[] b);
+
+}