切换导航条
此项目
正在载入...
登录
钟来
/
Luhui
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
钟来
2024-04-26 10:57:34 +0800
提交
e42169377eb30ea726a11a6882e24cfd69bcc728
1 个父辈
a4d37270
mqtt日志更新
显示空白字符变更
内嵌
并排对比
正在显示
6 个修改的文件
包含
1768 行增加
和
6 行删除
cameraConfig
feederConfig
lh-modules/lh-lsy-plc-service/src/main/java/com/zhonglai/luhui/lsy/plc/service/comm/service/MqttCallback.java
lh-modules/lh-mqtt-service/src/main/java/com/zhonglai/luhui/mqtt/comm/service/MqttCallback.java
register
sysConfig
cameraConfig
0 → 100644
查看文件 @
e421693
{
"cameraInterfaceType"
:
"rtsp"
,
"trendsPixelMin"
:
150
,
"trendsPixelMax"
:
200
,
"calloutBoxWidthMin"
:
5
,
"reflectionMin"
:
150
,
"reflectionMax"
:
200
,
"brightnessMin"
:
100
,
"brightnessMax"
:
150
,
"transparencyMeasureMin"
:
100
,
"transparencyMeasureMax"
:
150
,
"areaMin"
:
25
,
"areaMax"
:
100
,
"kernelSize"
:
3
,
"absValue_command"
:
[
{
"sartAbsValue"
:
8590
,
"gear"
:
1
},
{
"sartAbsValue"
:
9590
,
"gear"
:
2
},
{
"sartAbsValue"
:
10590
,
"gear"
:
3
},
{
"sartAbsValue"
:
11590
,
"gear"
:
4
}
],
"veiwDto_isFrame"
:
false
,
"veiwDto_isBinaryImage"
:
false
,
"veiwDto_isSize"
:
false
,
"veiwDto_isAbsValue"
:
false
,
"identificationFrequency"
:
1000
,
"fishGroupImageRecognition"
:
true
,
"feedingControl"
:
true
,
"fishSchoolSizeConfig"
:
[
200.0
,
1000.0
,
2000.0
,
3000.0
],
"fishSchoolSizeConfigString"
:
[
"鱼群未聚"
,
"鱼群小量聚集"
,
"鱼群中量聚集"
,
"鱼群大量聚集"
],
"collectionScale"
:
5
,
"scaleStep"
:
60
,
"stopTriggeringConditions"
:
30
,
"ifSendFishSchoolSize"
:
false
}
\ No newline at end of file
...
...
feederConfig
0 → 100644
查看文件 @
e421693
{
"serialPortConfig"
:
{
"portName"
:
"COM3"
,
"baudrate"
:
19200
,
"dataBits"
:
8
,
"stopBits"
:
1
,
"parity"
:
0
},
"condata"
:
{
"runmode"
:
0
,
"runspeed"
:
5
,
"worktime"
:
6
,
"interval"
:
7
,
"runstate"
:
3
,
"stopfeedcnt"
:
30
,
"onoff"
:
0
},
"timer"
:
[
[
15
,
43
,
16
,
48
,
1
]
]
}
\ No newline at end of file
...
...
lh-modules/lh-lsy-plc-service/src/main/java/com/zhonglai/luhui/lsy/plc/service/comm/service/MqttCallback.java
查看文件 @
e421693
...
...
@@ -62,10 +62,10 @@ public class MqttCallback implements MqttCallbackExtended {
buffer
.
append
(
"topic:"
);
buffer
.
append
(
s
);
buffer
.
append
(
"\r\n"
);
buffer
.
append
(
"mqttMessage字符串:"
);
buffer
.
append
(
mqttMessage
.
toString
());
buffer
.
append
(
desttopic
.
getClientid
()+
" mqttMessage字符串:"
);
buffer
.
append
(
mqttMessage
.
toString
().
replaceAll
(
"\\n"
,
""
).
replaceAll
(
"\\s"
,
""
));
buffer
.
append
(
"\r\n"
);
buffer
.
append
(
"
mqttMessage十六进制:"
);
buffer
.
append
(
desttopic
.
getClientid
()+
"
mqttMessage十六进制:"
);
buffer
.
append
(
ByteUtil
.
hexStringToSpace
(
ByteUtil
.
toHexString
(
mqttMessage
.
getPayload
())));
buffer
.
append
(
"\r\n"
);
buffer
.
append
(
"\r\n"
);
...
...
lh-modules/lh-mqtt-service/src/main/java/com/zhonglai/luhui/mqtt/comm/service/MqttCallback.java
查看文件 @
e421693
...
...
@@ -64,10 +64,10 @@ public class MqttCallback implements MqttCallbackExtended {
buffer
.
append
(
"topic:"
);
buffer
.
append
(
s
);
buffer
.
append
(
"\r\n"
);
buffer
.
append
(
"mqttMessage字符串:"
);
buffer
.
append
(
mqttMessage
.
toString
());
buffer
.
append
(
desttopic
.
getClientid
()+
" mqttMessage字符串:"
);
buffer
.
append
(
mqttMessage
.
toString
().
replaceAll
(
"\\n"
,
""
).
replaceAll
(
"\\s"
,
""
));
buffer
.
append
(
"\r\n"
);
buffer
.
append
(
"
mqttMessage十六进制:"
);
buffer
.
append
(
desttopic
.
getClientid
()+
"
mqttMessage十六进制:"
);
buffer
.
append
(
ByteUtil
.
hexStringToSpace
(
ByteUtil
.
toHexString
(
mqttMessage
.
getPayload
())));
buffer
.
append
(
"\r\n"
);
buffer
.
append
(
"\r\n"
);
...
...
register
0 → 100644
查看文件 @
e421693
{
"registerList"
:
[
{
"address"
:
0
,
"name"
:
"机器状态"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"machstate"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
1
,
"name"
:
"电池电量"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"battlevel"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
3
,
"name"
:
"厂家码"
,
"start_char"
:
0
,
"char_lenth"
:
2
,
"field_name"
:
"mfrs"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
3
,
"name"
:
"设备类型"
,
"start_char"
:
2
,
"char_lenth"
:
2
,
"field_name"
:
"equitype"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
3
,
"name"
:
"设备模式"
,
"start_char"
:
4
,
"char_lenth"
:
1
,
"field_name"
:
"equimode"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
4
,
"name"
:
"故障代码"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"faultcode"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
5
,
"name"
:
"饲料状态"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"fodderstate"
,
"clas"
:
"java.lang.Boolean"
},
{
"address"
:
6
,
"name"
:
"饲料重量"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"fodderweight"
,
"clas"
:
"java.lang.Float"
},
{
"address"
:
7
,
"name"
:
"投料次数"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"feednum"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
8
,
"name"
:
"本次投料量"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"feedweight"
,
"clas"
:
"java.lang.Float"
},
{
"address"
:
13
,
"name"
:
"运行模式"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"runmode"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
14
,
"name"
:
"投料量"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"runspeed"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
15
,
"name"
:
"投料时间"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"worktime"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
16
,
"name"
:
"间隔时间"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"interval"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
17
,
"name"
:
"开/关"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"runstate"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
18
,
"name"
:
"停投料倒计时"
,
"start_char"
:
0
,
"char_lenth"
:
16
,
"field_name"
:
"stopfeedcnt"
,
"clas"
:
"java.lang.Integer"
},
{
"address"
:
23
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer1_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
23
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer1_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
23
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer1_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
23
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer1_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
24
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer1_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
24
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer1_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
24
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer1_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
24
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer1_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
25
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer2_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
25
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer2_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
25
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer2_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
25
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer2_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
26
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer2_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
26
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer2_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
26
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer2_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
26
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer2_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
27
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer3_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
27
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer3_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
27
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer3_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
27
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer3_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
28
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer3_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
28
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer3_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
28
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer3_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
28
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer3_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
29
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer4_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
29
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer4_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
29
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer4_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
29
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer4_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
30
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer4_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
30
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer4_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
30
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer4_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
30
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer4_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
31
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer5_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
31
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer5_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
31
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer5_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
31
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer5_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
32
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer5_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
32
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer5_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
32
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer5_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
32
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer5_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
33
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer6_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
33
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer6_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
33
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer6_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
33
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer6_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
34
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer6_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
34
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer6_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
34
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer6_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
34
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer6_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
35
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer7_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
35
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer7_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
35
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer7_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
35
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer7_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
36
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer7_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
36
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer7_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
36
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer7_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
36
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer7_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
37
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer8_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
37
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer8_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
37
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer8_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
37
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer8_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
38
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer8_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
38
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer8_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
38
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer8_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
38
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer8_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
39
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer9_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
39
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer9_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
39
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer9_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
39
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer9_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
40
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer9_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
40
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer9_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
40
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer9_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
40
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer9_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
41
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer10_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
41
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer10_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
41
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer10_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
41
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer10_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
42
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer10_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
42
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer10_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
42
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer10_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
42
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer10_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
43
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer11_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
43
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer11_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
43
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer11_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
43
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer11_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
44
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer11_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
44
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer11_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
44
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer11_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
44
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer11_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
45
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer12_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
45
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer12_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
45
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer12_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
45
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer12_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
46
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer12_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
46
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer12_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
46
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer12_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
46
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer12_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
47
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer13_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
47
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer13_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
47
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer13_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
47
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer13_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
48
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer13_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
48
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer13_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
48
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer13_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
48
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer13_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
49
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer14_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
49
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer14_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
49
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer14_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
49
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer14_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
50
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer14_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
50
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer14_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
50
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer14_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
50
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer14_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
51
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer15_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
51
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer15_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
51
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer15_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
51
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer15_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
52
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer15_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
52
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer15_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
52
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer15_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
52
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer15_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
53
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer16_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
53
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer16_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
53
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer16_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
53
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer16_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
54
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer16_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
54
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer16_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
54
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer16_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
54
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer16_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
55
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer17_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
55
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer17_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
55
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer17_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
55
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer17_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
56
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer17_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
56
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer17_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
56
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer17_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
56
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer17_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
57
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer18_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
57
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer18_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
57
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer18_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
57
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer18_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
58
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer18_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
58
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer18_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
58
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer18_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
58
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer18_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
59
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer19_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
59
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer19_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
59
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer19_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
59
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer19_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
60
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer19_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
60
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer19_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
60
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer19_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
60
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer19_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
61
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer20_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
61
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer20_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
61
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer20_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
61
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer20_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
62
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer20_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
62
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer20_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
62
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer20_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
62
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer20_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
63
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer21_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
63
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer21_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
63
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer21_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
63
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer21_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
64
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer21_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
64
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer21_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
64
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer21_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
64
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer21_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
65
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer22_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
65
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer22_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
65
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer22_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
65
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer22_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
66
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer22_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
66
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer22_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
66
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer22_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
66
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer22_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
67
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer23_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
67
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer23_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
67
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer23_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
67
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer23_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
68
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer23_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
68
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer23_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
68
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer23_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
68
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer23_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
69
,
"name"
:
"开启分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer24_start_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
69
,
"name"
:
"开启小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer24_start_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
69
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer24_if_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
69
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer24_is_start"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
70
,
"name"
:
"关闭分钟"
,
"start_char"
:
0
,
"char_lenth"
:
8
,
"field_name"
:
"timer24_close_m"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
70
,
"name"
:
"关闭小时"
,
"start_char"
:
8
,
"char_lenth"
:
6
,
"field_name"
:
"timer24_close_h"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
70
,
"name"
:
"使能"
,
"start_char"
:
14
,
"char_lenth"
:
1
,
"field_name"
:
"timer24_if_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
},
{
"address"
:
70
,
"name"
:
"有效"
,
"start_char"
:
15
,
"char_lenth"
:
1
,
"field_name"
:
"timer24_is_close"
,
"clas"
:
"com.zhonglai.luhui.smart.feeder.dto.commd.FeederTimer"
}
]
}
\ No newline at end of file
...
...
sysConfig
0 → 100644
查看文件 @
e421693
{
"ifUpLoadData"
:
true
,
"ifVeiw"
:
false
,
"nettyConfig"
:
{
"host"
:
"120.79.198.245"
,
"port"
:
4722
,
"clientId"
:
"202353363847662"
},
"password"
:
"GUARPA"
,
"ifRegisterConfig"
:
false
}
\ No newline at end of file
...
...
请
注册
或
登录
后发表评论