ojousima.ble_influx_gw
Version:
Read BLE advertisements, parse data and relay data to InfluxDB
17 lines (16 loc) • 577 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var InfluxLogin = /** @class */ (function () {
function InfluxLogin(host, port, username, password) {
if (host === void 0) { host = 'localhost'; }
if (port === void 0) { port = 8086; }
if (username === void 0) { username = ''; }
if (password === void 0) { password = ''; }
this.host = host;
this.port = port;
this.username = username;
this.password = password;
}
return InfluxLogin;
}());
exports.InfluxLogin = InfluxLogin;