hello again, more questions,
now they are communicating, the "string" of information is less compadible with my switch thing i had setup before.
[{"id":"f8a45b09.c7ce3","type":"change","z":"63556fbb.5ffe8","name":"Temp","rules":[{"t":"set","p":"payload","pt":"msg","to":"payload.temperature_C","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":750,"y":60,"wires":[["66c26dbb.42a1d4"]]},{"id":"74a6788f.78fd68","type":"change","z":"63556fbb.5ffe8","name":"Humi","rules":[{"t":"set","p":"payload","pt":"msg","to":"payload.humidity","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":750,"y":120,"wires":[["f99809b9.92dd7"]]},{"id":"f99809b9.92dd7","type":"function","z":"63556fbb.5ffe8","name":"Round","func":"msg.payload = Number(msg.payload.toFixed(0));\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":890,"y":120,"wires":[["6dfe61a4.8375e","8dcabbb9.be269"]]},{"id":"66c26dbb.42a1d4","type":"function","z":"63556fbb.5ffe8","name":"Round","func":"msg.payload = Number(msg.payload.toFixed(0));\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":890,"y":60,"wires":[["8dcabbb9.be269","6dfe61a4.8375e"]]}]
on the remote side i get an output of 21, and 54. temp/humi.
when i use the same on the server to pull out the data i want from the string i get
2021-05-18, 11:20:35 a.m.[node: ab8ab462.05b1e](http://192.168.1.15:1880/#)Marcus Room : msg.payload1 : undefined
2021-05-18, 11:20:35 a.m.[node: ab8ab462.05b1e](http://192.168.1.15:1880/#)Marcus Room : msg.payload1 : undefined
2021-05-18, 11:20:35 a.m.[node: ab8ab462.05b1e](http://192.168.1.15:1880/#)
Marcus Room : msg.payload1 : undefined
undefined
the colors on the debug screen are different as well.
{ temperature_C: 21.06, humidity: 52.386141050827035, pressure_hPa: 1015.4996487140004, model: "BME280" }
temp, humi, and pressure are purple with blue data and red model. on server side it's all red.
does that do something to the data being sent?