Skip to content

Commit 1f02665

Browse files
committed
Improve the default name of the Bin Full sensor
1 parent e3f2cfd commit 1f02665

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/old-windows-buy.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"homebridge-roomba2": patch
3+
---
4+
5+
Improve the default name of the Bin Full sensor

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const roombaAccessory = function (log, config) {
3535
this.runningService = new Service.ContactSensor(this.name + " Running", "running");
3636
}
3737
if (this.showBinStatusAsContactSensor) {
38-
this.binService = new Service.ContactSensor(this.name + " BinFull", "Full");
38+
this.binService = new Service.ContactSensor(this.name + " Bin Full", "Full");
3939
}
4040
this.cache = new nodeCache({
4141
stdTTL: this.cacheTTL,

0 commit comments

Comments
 (0)