本文整理匯總了TypeScript中ionic-native.BLE.write方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript BLE.write方法的具體用法?TypeScript BLE.write怎麽用?TypeScript BLE.write使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ionic-native.BLE
的用法示例。
在下文中一共展示了BLE.write方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: sendDate
/* Inform the peripheral of the current date */
sendDate(peripheral) {
/* Data must be sent through the BLE plugin as an ArrayBuffer */
let uint8 = new Uint8Array(4);
/* Grab the current time without milliseconds */
let time = Math.floor((new Date).getTime() / 1000);
/* Store the time in 4 byte increments */
uint8[0] = time & 0xFF;
uint8[1] = (time & 0xFF00) >>> 8;
uint8[2] = (time & 0xFF0000) >>> 16;
uint8[3] = (time & 0xFF000000) >>> 24;
//console.log("Time sent: " + uint8);
/* Write the data to the peripheral */
BLE.write(peripheral.id, this.scanInfo.service, this.scanInfo.datecheck, uint8.buffer).then(
succ => console.log("Time written successfully"),
fail => console.log("Time not written successfully")
);
}
示例2: Uint8Array
this.dateCheckSubscription.subscribe(buffer => {
let data = new Uint8Array(buffer);
let curDate = this.calcDate(data[3],data[2],data[1],data[0]);
if (!this.lastDate)
return;
let uint8 = new Uint8Array(4);
let caughtUp = 0;
if (this.lastDate >= curDate)
caughtUp = 1;
/* Send back an array of the boolean result */
for (let i = 0; i < 4; i++) {
uint8[i] = caughtUp;
}
BLE.write(peripheral.id, this.scanInfo.service, this.scanInfo.datecheck, uint8.buffer).then(
succ => {console.log("wrote back: " + uint8);},
fail => {console.log("did not write back");}
);
});