https://github.com/nathan-osman/thsat
Temperature / Humidity Sensor Acquisition Tool
https://github.com/nathan-osman/thsat
arduino cpp qt sensor
Last synced: 2 months ago
JSON representation
Temperature / Humidity Sensor Acquisition Tool
- Host: GitHub
- URL: https://github.com/nathan-osman/thsat
- Owner: nathan-osman
- License: mit
- Created: 2017-05-23T20:46:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-14T06:11:20.000Z (about 9 years ago)
- Last Synced: 2024-12-31T19:16:18.907Z (over 1 year ago)
- Topics: arduino, cpp, qt, sensor
- Language: C++
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## thsat
Tool for acquiring sensor data from a connected Arduino and storing it in an InfluxDB database.
### Running the App
The easiest way to run the application is by using Docker. To build the container, use the following command:
docker build -t thsat .
Then to run the application within the container, use the following command:
docker run -v /dev/ttyACM0:/dev/ttyACM0 thsat
Environment variables can be used to change application configuration.
### Building the App
The following items are required to build the application:
- CMake 3.2.0
- A C++ compiler that supports C++11
- Qt 5.3+ (with QtSerialPort)
To perform the build, use the following commands:
mkdir build
cd build
cmake ..
make