let z = msg.humidity
msghumidity = {
payload: 'RH% ' + z,
}
let w = msg.payload;
w = Number(w);
let f = (w * 1.8) + 32;
let num = f;
let n = num.toFixed(2);
msgtempf = {
payload: 'Deg F ' + n,
}
msgtempc = {
payload: 'Deg C ' + w,
}
It is not a big deal but is there a way to get rid of the red underlines? It's not really an error.
Thanks
[EDIT] it shows up when I typed the question but not when I posted but the msg.humidity and msghumidity have red underlines as well as a few others. Again it's not an error but appears as one.
The reason I didnt disable that error in the node-red core was because of the benefits it gives you - like highlighting undefined values and mis-typed variable names.