package se.nicklasgavelin.sphero.response.regular;
import se.nicklasgavelin.sphero.response.ResponseMessage;
/**
* A front led response that is for the FrontLEDCommand that must
* be received to create this
*
* @author Nicklas Gavelin, nicklas.gavelin@gmail.com, LuleƄ University of Technology
*/
public class FrontLEDResponse extends ResponseMessage
{
/**
* Create a FrontLEDResponse from a given received data
*
* @param rh The response header containing the response data
*/
public FrontLEDResponse( ResponseHeader rh )
{
super( rh );
}
}