Datatranfer via USB?

Hello,

for a project during my apprenticeship I have to work with an Arduino Uno. maingoal is to monitor the temperature and humidity in a room. We do have the needed sensors, the main question is, is it possible to get the raw data via USB? Rather so we could read the data with another program or even let it automatically write it into a database?

Thanks in advance
Silvioo

RealTerm
http://forum.arduino.cc/index.php?topic=564582.0

You would use Serial to send the data via USB. Then the program on your computer reads the data coming in from the Uno's COM port. You can send the data in a format that program can read, like CSV.

Hello,

Rather so we could read the data with another program or even let it automatically write it into a database

Yes is it.
I ever try the temperature detect with a humadity sensors in my room. The output is using 16x2 LCD displays to show the data from the temperature. And the module is DHT11.

Check this for quick tutorial about it. And what you need.

[u]https://www.hackster.io/onatto22/dht11-humidity-temperature-sensor-with-16x2-lcd-display-1046e0[/u]

Hopefully can help :slight_smile: