Skip to content

Commit

Permalink
Merge pull request #12 from domrest/temp_detector
Browse files Browse the repository at this point in the history
Temp detector
  • Loading branch information
domrest authored Apr 10, 2021
2 parents f67b069 + 1c36b0c commit 3b62007
Show file tree
Hide file tree
Showing 30 changed files with 346 additions and 677 deletions.
28 changes: 28 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
cmake_minimum_required(VERSION 3.10)

# set the project name
project(Trashbot)

file(GLOB INCLUDE CONFIGURE_DEPENDS
"include/messaging/*.h"
"include/messaging/*.hpp"
"include/GPIO/*.h")
file(GLOB CPP CONFIGURE_DEPENDS "lib/*.cpp")


# add the executable
add_executable(Trashbot
${CPP}
${INCLUDE}
)

target_link_libraries(Trashbot
pigpio
crypto
boost_iostreams
boost_filesystem
pthread
boost_thread
boost_system
ssl
)
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,37 @@ More documentation about `gui` can be found [here](./gui)
To get the project up and running by yourself, follow these steps:
### Prerequisites

GUI Prerequisites:

`apt-get install qtdeclarative5-dev-tools`

`apt-get install libqcustomplot-dev`

Email Messaging Prerequisites:

`sudo apt-get install libssl-dev`

`sudo apt-get install libboost-all-dev`

Temp Sensor Prerequisites:

`sudo apt-get install `


### Installation

Run Cmake within directory:

`cmake .`

Run Make:

`make`

Run Program:

`sudo ./Trashbot`



## Roadmap
Expand Down
11 changes: 0 additions & 11 deletions gpio_files/Makefile

This file was deleted.

16 changes: 0 additions & 16 deletions gpio_files/README

This file was deleted.

120 changes: 0 additions & 120 deletions gpio_files/gpio-int-test.cpp

This file was deleted.

Loading

0 comments on commit 3b62007

Please sign in to comment.