blob: ef284187eec32ba37b650b716326460f58a90fcc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*******************************************************************************/
package org.eclipse.om2m.sdt.home.lifx.impl.lan.frame;
public class LIFXPayloadStatePower extends LIFXPayload {
protected static final int TYPE = 118;
private int level;
@Override
public int getType() {
return TYPE;
}
public int getLevel() {
return level;
}
@Override
public void unmarshal() throws Exception {
level = (payload[0] & 0xff) + ((payload[1] << 8) & 0xffff);
}
@Override
public String toString() {
return "StatePower(level=" + level + ")";
}
}