1 package com.sonycsl.echo.processing.defaults;
3 import java.io.IOException;
9 byte[] mStatus = {0x30};
10 byte[] mLocation = {0x00};
11 byte[] mFaultStatus = {0x42};
12 byte[] mManufacturerCode = {0,0,0};
14 byte[] mMode = {0x41};
15 byte[] mTemperature = {0x27};
27 byte b = (status?(byte)0x30:(byte)0x31) ;
29 if(mStatus[0] == b) return ;
32 inform().reqInformOperationStatus().send();
33 }
catch (IOException e) {e.printStackTrace();}
46 if(mLocation[0] == location) return ;
47 mLocation[0] = location;
49 inform().reqInformInstallationLocation().send() ;
50 }
catch (IOException e) {e.printStackTrace();}
57 byte b = (status?(byte)0x41:(byte)0x42) ;
59 if(mFaultStatus[0] == b) return ;
62 inform().reqInformFaultStatus().send();
63 }
catch (IOException e) { e.printStackTrace();}
79 if(mMode[0] == mode) return ;
82 inform().reqInformOperationModeSetting().send();
83 }
catch (IOException e) { e.printStackTrace();}
88 mTemperature[0] = edt[0];
byte[] getManufacturerCode()
boolean setInstallationLocation(byte[] edt)
byte[] getInstallationLocation()
void changeInstallationLocation(byte location)
boolean setSetTemperatureValue(byte[] edt)
boolean setOperationModeSetting(byte[] edt)
byte[] getOperationModeSetting()
byte[] getSetTemperatureValue()
void changeOperationStatus(boolean status)
void changeFaultStatus(boolean status)
byte[] getOperationStatus()
void changeMode(byte mode)
boolean setOperationStatus(byte[] edt)