diff --git a/client/client/include/forte_sensor.hpp b/client/client/include/forte_sensor.hpp
new file mode 100644
index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d
--- /dev/null
+++ b/client/client/include/forte_sensor.hpp
@@ -0,0 +1,13 @@
+#ifndef _FORTE_SENSOR
+#define _FORTE_SENSOR
+
+class Forte_Sensor {
+    public:
+        virtual void* read_data() = 0;
+        virtual void setup() = 0;
+
+    private:
+
+};
+
+#endif
\ No newline at end of file
diff --git a/client/client/include/pinout.hpp b/client/client/include/pinout.hpp
new file mode 100644
index 0000000000000000000000000000000000000000..9a9ad92494f6fda373d184ef94f91d17934e01ba
--- /dev/null
+++ b/client/client/include/pinout.hpp
@@ -0,0 +1,8 @@
+#ifndef _FORTE_PINOUT
+#define _FORTE_PINOUT
+
+// Pins for I2C
+#define I2C_SDA 18
+#define I2C_SCL 19
+
+#endif
\ No newline at end of file
diff --git a/client/client/lib/scd30/scd30.cpp b/client/client/lib/scd30/scd30.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..326de8862480cb74cc09210b138a8ed5a337d45f
--- /dev/null
+++ b/client/client/lib/scd30/scd30.cpp
@@ -0,0 +1,19 @@
+#include "scd30.hpp"
+#include "Wire.h"
+#include <SparkFun_SCD30_Arduino_Library.h>
+
+void Forte_SCD30 :: setup(){
+    Wire.begin(I2C_SDA, I2C_SCL);
+    if(!airSensor.begin()){
+        // Sensor init went wrong
+        return;
+    }
+}
+
+float* Forte_SCD30 :: read_data(){
+    float data[3];
+    data[0] = airSensor.getCO2();
+    data[1] = airSensor.getTemperature();
+    data[2] = airSensor.getHumidity();
+    return data;
+}
\ No newline at end of file
diff --git a/client/client/lib/scd30/scd30.hpp b/client/client/lib/scd30/scd30.hpp
new file mode 100644
index 0000000000000000000000000000000000000000..396e311642f0e83f881728c2685c879b08d1edae
--- /dev/null
+++ b/client/client/lib/scd30/scd30.hpp
@@ -0,0 +1,16 @@
+#ifndef _SCD30
+#define _SCD30
+#include <forte_sensor.hpp>
+#include <pinout.hpp>
+#include <SparkFun_SCD30_Arduino_Library.h>
+
+class Forte_SCD30 : public Forte_Sensor{
+    public:
+        void setup();
+        float* read_data();
+
+    private:
+        SCD30 airSensor;
+};
+
+#endif
\ No newline at end of file
diff --git a/client/client/platformio.ini b/client/client/platformio.ini
index e36a50f32857e3a1db663563eab844a827e6e7bf..12980eab3d3493e7bd2ae1745373b1c38cb58542 100644
--- a/client/client/platformio.ini
+++ b/client/client/platformio.ini
@@ -12,3 +12,5 @@
 platform = espressif32
 board = esp32-c3-devkitm-1
 framework = arduino
+lib_deps = sparkfun/SparkFun SCD30 Arduino Library@^1.0.18
+    Wire