Skip to content

Instantly share code, notes, and snippets.

@blackout314
Created February 3, 2020 11:30
Show Gist options
  • Save blackout314/2302c6874bf9303439c3c62252ab84a3 to your computer and use it in GitHub Desktop.
Save blackout314/2302c6874bf9303439c3c62252ab84a3 to your computer and use it in GitHub Desktop.
<?php
//
// download phpMQTT from https://github.com/bluerhinos/phpMQTT
//
error_reporting(0);
require "phpMQTT.php";
$server = "127.0.0.1";
$port = 1883;
$username = "";
$password = "";
$client_id = "";
$mqtt = new \Bluerhinos\phpMQTT($server, $port, $client_id);
if ($mqtt->connect(true, NULL, $username, $password)) {
echo 'Online\n';
} else {
echo "Time out!\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment