All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lejos.remote.ev3.RMIRemoteKeys Maven / Gradle / Ivy

Go to download

leJOS (pronounced like the Spanish word "lejos" for "far") is a tiny Java Virtual Machine. In 2013 it was ported to the LEGO EV3 brick.

The newest version!
package lejos.remote.ev3;

import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;

import lejos.hardware.Keys;
import lejos.hardware.ev3.LocalEV3;

public class RMIRemoteKeys extends UnicastRemoteObject implements RMIKeys  {
	private static final long serialVersionUID = -7696209202724226195L;
	private Keys keys = LocalEV3.get().getKeys();
	
	protected RMIRemoteKeys() throws RemoteException {
		super(0);
	}

	@Override
	public void discardEvents() throws RemoteException {
		keys.discardEvents();	
	}

	@Override
	public int waitForAnyEvent() throws RemoteException {
		return keys.waitForAnyEvent();
	}

	@Override
	public int waitForAnyEvent(int timeout) throws RemoteException {
		return keys.waitForAnyEvent(timeout);
	}

	@Override
	public int waitForAnyPress(int timeout) throws RemoteException {
		return keys.waitForAnyPress(timeout);
	}

	@Override
	public int waitForAnyPress() throws RemoteException {
		return keys.waitForAnyPress();
	}

	@Override
	public int getButtons() throws RemoteException {
		return keys.getButtons();
	}

	@Override
	public int readButtons() throws RemoteException {
		return keys.readButtons();
	}

	@Override
	public void setKeyClickVolume(int vol) throws RemoteException {
		keys.setKeyClickVolume(vol);	
	}

	@Override
	public int getKeyClickVolume() throws RemoteException {
		return keys.getKeyClickVolume();
	}

	@Override
	public void setKeyClickLength(int len) throws RemoteException {
		keys.setKeyClickLength(len);
	}

	@Override
	public int getKeyClickLength() throws RemoteException {
		return keys.getKeyClickLength();
	}

	@Override
	public void setKeyClickTone(int key, int freq) throws RemoteException {
		keys.setKeyClickTone(key, freq);	
	}

	@Override
	public int getKeyClickTone(int key) throws RemoteException {
		return keys.getKeyClickTone(key);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy