You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Electrical has impelmented 6 Temperature sensors on board. The goal is to measure ambient temperature inside of the Freya ASV with 3 sensors. At the same time use other 3 sensors and attach them to points of interest that usually generate a lot of heat and monitor their behavious under operation.
Electrical has already attached all 6 sensors and conected them to a Arduino. They are analog sensor and their values are sampled by arduino and converted to real temperature data, this part electro has gracefully done for uss already. The only part we need to do is conect this Arduino to I2C and get data to RPI and then publish it to ROS.
Todo List:
Look into the Arduino code and ask electrical if there are any questions as the whole electro contributed to the project
Make a I2C impelemntation that sends all 6 sensor data simultaniously from Arduino. Basicaly make Arduino I2C impelementation. Take inspiration from Bootleg ESC code listed under "Usefull link section"
Make a Temperature Driver prototype code on RPI side that takes data from I2C buss and prints temperature data in the correct order. Take inspiration from Bootleg ESC code listed under "Usefull link section"
Clean upp Arduino code and document it
Make Temperature Driver "Library" that other code files can use on RPI. This library should be clean and well documented.
Now that we have a Temperature Driver "Library", make a ROS node that uses this "Library" to publsih Temperature data for all the sensors.
The 6 Temperature sensors are cheap simple analog NTC Termistor. Basicallly when temperature goes upp, its resistence drop exponentially, so it is a non linear curve which means you have to calibrate code to convert exponential curves
Description
Electrical has impelmented 6 Temperature sensors on board. The goal is to measure ambient temperature inside of the Freya ASV with 3 sensors. At the same time use other 3 sensors and attach them to points of interest that usually generate a lot of heat and monitor their behavious under operation.
Electrical has already attached all 6 sensors and conected them to a Arduino. They are analog sensor and their values are sampled by arduino and converted to real temperature data, this part electro has gracefully done for uss already. The only part we need to do is conect this Arduino to I2C and get data to RPI and then publish it to ROS.
Todo List:
Usefull links:
The text was updated successfully, but these errors were encountered: