nana_sen il y a 1 an
Parent
commit
4bb6b5ce73
1 fichiers modifiés avec 10 ajouts et 2 suppressions
  1. 10 2
      task_script/INDOOR_MQTTPUB_WAIT2SEND.php

+ 10 - 2
task_script/INDOOR_MQTTPUB_WAIT2SEND.php

@@ -133,7 +133,7 @@ function loop()
 {
     $server   = 'develop.rltest.cn';
     $port     = 1883;
-    $clientId = 'mqtt_indoor_mqttpub_wait2send_9659';
+    $clientId = 'mqtt_indoor_mqttpub_wait2send_'.rand(10000,99999);
     $username = 'rl517';
     $password = "rlian2022";
     $clean_session = true;
@@ -159,7 +159,15 @@ function loop()
 
         $mqtt->connect($connectionSettings, $clean_session);
         $cnt = json_decode($configCnt, true);
-        $mqtt->publish('RlianStation/G31W/'.$cnt["mac"].'/SetConfig', $configCnt, MqttClient::QOS_AT_MOST_ONCE);
+        if ($cnt["rfidsConfig"]) {
+            # code...
+            $rfidsConfig = explode(",",$cnt["rfidsConfig"]);
+            $cnt["rfidsConfig"]  = $rfidsConfig;
+        }else{
+            $cnt["rfidsConfig"] == 0;
+        }
+        $sendCnt = json_encode($cnt);
+        $mqtt->publish('RlianStation/G31W/'.$cnt["mac"].'/SetConfig', $sendCnt, MqttClient::QOS_AT_MOST_ONCE);
         $mqtt->loop(true, true);
         $mqtt->disconnect();
         var_dump("out!!");