1 package com.sonycsl.echo.processing.defaults;
3 import java.io.IOException;
8 byte[] mStatus = {0x30};
9 byte[] mLocation = {0x00};
10 byte[] mFaultStatus = {0x42};
11 byte[] mManufacturerCode = {0,0,0};
17 byte b = (status ? (byte)0x30 : (byte)0x31) ;
19 if(mStatus[0] == b) return ;
23 inform().reqInformOperationStatus().send();
24 }
catch (IOException e) { e.printStackTrace(); }
37 if(mLocation[0] == location) return ;
38 mLocation[0] = location;
40 inform().reqInformInstallationLocation().send();
41 }
catch (IOException e) { e.printStackTrace(); }
47 byte b = (status?(byte)0x41:(byte)0x42) ;
49 if(mFaultStatus[0] == b) return ;
52 inform().reqInformFaultStatus().send();
53 }
catch (IOException e) { e.printStackTrace();}
boolean setOperationStatus(byte[] edt)
void changeFaultStatus(boolean status)
byte[] getManufacturerCode()
boolean setInstallationLocation(byte[] edt)
void changeInstallationLocation(byte location)
void changeOperationStatus(boolean status)
byte[] getInstallationLocation()
byte[] getOperationStatus()