package se.nicklasgavelin.sphero.command; /** * A command to get Bluetooth information from the Sphero * * @author Nicklas Gavelin, nicklas.gavelin@gmail.com, LuleƄ University of Technology */ public class GetBluetoothInfoCommand extends CommandMessage { /** * Create a GetBluetoothInfoCommand */ public GetBluetoothInfoCommand() { super( COMMAND_MESSAGE_TYPE.GET_BLUETOOTH_INFO ); } }