initial commit

This commit is contained in:
leo 2022-03-14 13:15:57 +01:00
commit ee7f5fbd11
Signed by: leo
GPG Key ID: 0DD993BFB2B307DB
8 changed files with 1327 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "sensirion_i2c_scd4x"]
path = sensirion_i2c_scd4x
url = ./components/sensirion_i2c_scd4x

8
CMakeLists.txt Normal file
View File

@ -0,0 +1,8 @@
# For more information about build system see
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
# The following five lines of boilerplate have to be in your project's
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.5)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(CO2_Sense)

@ -0,0 +1 @@
Subproject commit a2c797b46605d989c367a3ec2dd19ade5628d8c2

2
main/CMakeLists.txt Normal file
View File

@ -0,0 +1,2 @@
idf_component_register(SRCS "CO2_Sense.c"
INCLUDE_DIRS ".")

6
main/CO2_Sense.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
void app_main(void)
{
}

1305
sdkconfig Normal file

File diff suppressed because it is too large Load Diff

1
sensirion_i2c_scd4x Submodule

@ -0,0 +1 @@
Subproject commit a2c797b46605d989c367a3ec2dd19ade5628d8c2