aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/SensorUpdateListener.java
diff options
context:
space:
mode:
Diffstat (limited to 'Java/com/phidgets/event/SensorUpdateListener.java')
-rw-r--r--Java/com/phidgets/event/SensorUpdateListener.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/Java/com/phidgets/event/SensorUpdateListener.java b/Java/com/phidgets/event/SensorUpdateListener.java
new file mode 100644
index 0000000..5c491cc
--- /dev/null
+++ b/Java/com/phidgets/event/SensorUpdateListener.java
@@ -0,0 +1,19 @@
+/*
+ * Copyright 2011 Phidgets Inc. All rights reserved.
+ */
+
+package com.phidgets.event;
+/**
+ * This interface represents a SensorUpdateEvent. This event originates from the Phidget Motor Control
+ *
+ * @author Phidgets Inc.
+ */
+public interface SensorUpdateListener
+{
+ /**
+ * This method is called with the event data every 8ms.
+ *
+ * @param ae the event data object containing event data
+ */
+ public void sensorUpdated(SensorUpdateEvent ae);
+}