aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/BackEMFUpdateListener.java
blob: 9a99a97a72314ff65f0a7f2540b777b12b6a7ce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright 2011 Phidgets Inc.  All rights reserved.
 */

package com.phidgets.event;

/**
 * This interface represents a BackEMFUpdateEvent. This event originates from the 
 * Phidget Motor Control. This event is not supported by all Motor Controllers.
 * 
 * @author Phidgets Inc.
 */
public interface BackEMFUpdateListener
{
	/**
	 * This method is called with the event data every 16ms, when back EMF sensing is enabled for that motor.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void backEMFUpdated(BackEMFUpdateEvent ae);
}