// Copy the new data into a new byte array, omitting the group ID and
// event type
byte[] newData = new byte[data.length - 8];
System.arraycopy(data, 8, newData, 0, data.length - 8);
Event event = null;
switch (eventType) {
case EventType.DRIVER_NONE:
client.processEvent(EventType.DRIVER_NONE, null);
return;