Pre-release of Fibaro Motion Sensor

@MichaelS Sounds like a cut/paste issue with the degrees symbol.
When I look at the code in github {raw} on my mac the symbol is changed from degrees to ?.
https://raw.githubusercontent.com/gouldner/ST-Projects/master/SmartThings/src/FibaroMotion/Device/FibaroMotion.groovy
But in standard mode the correct symbol is displayed so try cut paste from there instead.

Look at this code in the ide and take note of the degrees symbol label: '${currentValue}°’
valueTile(“temperature”, “device.temperature”, inactiveLabel: false) {
state “temperature”, label:’${currentValue}°’,
backgroundColors:[
[value: 31, color: “#153591”],
[value: 44, color: “#1e9cbb”],
[value: 59, color: “#90d2a7”],
[value: 74, color: “#44b621”],
[value: 84, color: “#f1d801”],
[value: 95, color: “#d04e00”],
[value: 96, color: “#bc2323”]
]
}

You can delete the ? mark in your ide and type the degrees symbol. On a mac you can type option-shift-8 to get the correct symbol.