Skip to content

Commit

Permalink
fix(bluetooth-low-energy): remove usage of txPowerLevel
Browse files Browse the repository at this point in the history
  • Loading branch information
mKeRix committed Feb 9, 2020
1 parent b73423b commit a4425ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/integrations/bluetooth-low-energy/tag.ts
Expand Up @@ -8,7 +8,7 @@ export class Tag {
this.peripheral = peripheral;
this.rssi = peripheral.rssi;
// -59 is a somewhat reasonable default
this.measuredPower = peripheral.advertisement.txPowerLevel || -59.0;
this.measuredPower = -59.0;
}

peripheral: Peripheral;
Expand Down

0 comments on commit a4425ba

Please sign in to comment.