Ok, here it is a group for Canadian SmartThings users to discuss those subtle differences that make us unique (and better ) than our compatriots south of the border.
Have you found any great sources for hardware share it here!
Custom code modifications for using metric? Share them!
I’ll start with one, did you know that your temperature readings don’t have to show up in blue? I never realized that until I started looking into the code. Here’s a snippet to resolve that little issue:
valueTile(“temperature”, “device.temperature”, width: 1, height: 1, inactiveLabel: false) {
state(“temperature”, label: ‘${currentValue}°C’, unit:“C”, backgroundColors: [
[value: 10, color: “#153591”],
[value: 15, color: “#1e9cbb”],
[value: 20, color: “#90d2a7”],
[value: 25, color: “#44b621”],
[value: 30, color: “#f1d801”],
[value: 35, color: “#d04e00”],
[value: 40, color: “#bc2323”]
]
)
}
So, if you are a Canadian SmartThings user, let us know where you are at, there’s probably someone more local than you might think. We can possibly arrange to get some of us together for a pint.
Cheers,
David
Burlington, Ontario