/product1

The Myndcraft Sensor Module is a versatile multi-sensor platform designed for environmental monitoring and industrial applications. It combines temperature, humidity, pressure, and air quality sensors in a compact, easy-to-integrate package.

Sensor Module

Built around a high-precision ADC and low-power microcontroller, this module provides accurate readings with minimal power consumption. The I2C and SPI interfaces allow seamless integration with any microcontroller platform.

Sensors Temp, Humidity, Pressure, Air Quality
Accuracy ±0.1°C, ±2% RH, ±1 hPa
Voltage 3.3V - 5V
Interface I2C, SPI
Size 25 x 25 mm
// Example: Reading sensor data
#include <Wire.h>
#include <MyndSensor.h>

MyndSensor sensor;

void setup() {
  Serial.begin(115200);
  Wire.begin();
  sensor.begin();
  sensor.setMode(CONTINUOUS);
}

void loop() {
  float temp = sensor.readTemperature();
  float humidity = sensor.readHumidity();
  float pressure = sensor.readPressure();

  Serial.print("T: "); Serial.print(temp);
  Serial.print(" H: "); Serial.print(humidity);
  Serial.print(" P: "); Serial.println(pressure);

  delay(1000);
}
Sensor Module Pinout