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