tongshanglei 1 year ago
parent
commit
848e64877a
1 changed files with 13 additions and 5 deletions
  1. 13 5
      task_script/LIVESTOCK_MQTT_PUBLISH.php

+ 13 - 5
task_script/LIVESTOCK_MQTT_PUBLISH.php

@@ -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);