@tanislav000/bluez
Version:
Bluez5 D-Bus bindings for easy to use bluetooth access in Node.js
16 lines • 463 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SerialProfile = void 0;
class SerialProfile {
constructor() {
this.ProfileOptions = {
Name: "Node Serial Port",
Role: "client",
PSM: 0x0003,
};
// Bluetooth SSP uuid
this.UUID = "00001101-0000-1000-8000-00805f9b34fb";
}
}
exports.SerialProfile = SerialProfile;
//# sourceMappingURL=serialProfile.js.map