A colleague of mine has a weather station that sends out serial data in the form of a string such that it is of the following format:
Node, Relative Wind Direction, Relative Wind Speed, Corrected Wind Direction, Corrected Speed,
Pressure, Relative Humidity, Temperature, Dewpoint, GPS Location, Date and Time, Supply Voltage, Status, Checksum.
I have attached the data sheet that details the output.
My colleague wants to send this data over a network via udp and has asked me to try and do this via a Leonardo ETH.
When the weather station is connected to putty the output is as detailed in the data sheet. however when I try to read the serial data using an arduino and the serial monitor (I'm using a MEGA ADK at the moment to check the serial data), I get data that is in int format (I assume) however I'm trying to see how this data relates to that in the data sheet.
I have attached the sketch (very basic) and a copy of the data I obtain.
Manual-ingles-Maximet.pdf (195 KB)
basic_sketch.ino (242 Bytes)