First commit

This commit is contained in:
2024-09-16 20:38:18 +02:00
parent f7b5f773b1
commit f09be2ba12
15 changed files with 759 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#ifndef DB_SQLITE_H
#define DB_SQLITE_H
int db_connect();
int db_disconnect();
int insert_hourly_report(double mean,double max,double min,int high,int loss,int reached);
#endif