Skip to content

Arduino -> Serial bus -> Unix -> (main) Measuements read from the Serial bus. With Raylib as Visualization for the data.

License

Notifications You must be signed in to change notification settings

Avicted/Skogsnet

Repository files navigation

Skogsnet   Badge License

Temperature and Humidity monitoring.


Concept

Using a I2C Grove Sensor, you can transmit
temperature / humidity data with a Arduino
MKR1010 Wifi
board.

The Arduino sends the data through Serial USB
to the host, where the program skogsnet.cpp
reads the serial stream and parses the JSON data.

This data can then be used as inputs to some
logic, a PID regulator implementation perhaps.

The data received by the skogsnet program is written out to output.dat


Dependencies

How to install required dependencies.

sudo pacman -S raylib nlohmann-json base-devel cmake 

Running

How to start both programs.

make -j 2 skogsnet raylibfrontend

Skogsnet output

> make -j 2 skogsnet raylibfrontend
g    -O0 -g -Wall -std=c  11 -Wno-narrowing -I/usr/include  -c -o code/skogsnet.o code/skogsnet.cpp

Creating directories
mkdir -p build
mkdir -p ./raylib_frontend/build

Building the and running raylib frontend
g   -O0 -g -Wall -std=c  11 -Wno-narrowing -I/usr/include -o ./raylib_frontend/build/raylibfrontend ./raylib_frontend/frontend.cpp -L /usr/lib -lstdc   -lm  -lraylib -lm -lpthread
./raylib_frontend/build/raylibfrontend
	No input args OK!
	Current working directory: /home/avic/projects/Skogsnet
	Hello from raylib_frontend!
	Successfully read data points from file! Total points in buffer: 100000

Building the program
g   -O0 -g -Wall -std=c  11 -Wno-narrowing -I/usr/include -o ./build/skogsnet ./code/PID.cpp ./code/skogsnet.cpp -L /usr/lib -lstdc   -lm 
./build/skogsnet
	Setting up time measurement and serial communications...
./build/skogsnet

      Trying port: /dev/ttyACM0

        Skogsnet is running now, connected to port: /dev/ttyACM0


        Measurement:
        Timestamp:		1725985596922
        TemperatureCelcius:	23.656250
        Humidity:		80.812500

	Successfully wrote to file: output.dat

        Measurement:
        Timestamp:		1725985602463
        TemperatureCelcius:	23.625000
        Humidity:		80.875000

	Successfully wrote to file: output.dat


^C	Caught SIGINT, exiting peacefully!

        dummy: 2
        Exiting successfully.
	Memory used in GigaBytes: 0.001118
	Memory used in MegaBytes: 1.144409

Freeing DataPoints: 1200000

        [Performance Metrics]
        Total memory allocated 		 = 0.0 MB
        Current Wall clock run time 	 = 9.0 secs

Raylib Frontend

screenshot.png

Languages