|
@@ -97,11 +97,19 @@ while (1) {
|
|
|
}
|
|
|
$data=json_decode($jsonData,true);
|
|
|
$topic="earings/".$data['device_id']."/coludControl";
|
|
|
- $config=[
|
|
|
- $data['type']=>[
|
|
|
- "config"=>$data['config']
|
|
|
- ]
|
|
|
- ];
|
|
|
+ $config=[];
|
|
|
+ if($data['type']=='exec'){
|
|
|
+ $config=[
|
|
|
+ $data['type']=>$data['config']
|
|
|
+ ];
|
|
|
+ }else{
|
|
|
+ $config=[
|
|
|
+ $data['type']=>[
|
|
|
+ "config"=>$data['config']
|
|
|
+ ]
|
|
|
+ ];
|
|
|
+ }
|
|
|
+
|
|
|
$config_json=json_encode($config);
|
|
|
var_dump($config_json);
|
|
|
$res=sendConfig($topic,$config_json);
|