senseBox Shield

The senseBox-Shield is a plug-on module for Arduino to connect different sensor modules.

senseBox-Shield

Features

  • JST connectors for different sensors
  • microSD socket (SPI) for SD and SDHC cards
  • RV-8523 RTC (I2C Real-Time-Clock) with backup battery

Shop

Documents

  • Schematics / Layout (GitHub)
  • Arduino IDE Example Sketches: File->Examples->SD

  • Note, the on-board microSD socket has to be deactivated, if it is not used.

    void setup()
    {
      pinMode(4, OUTPUT); // CS = Pin 4
      digitalWrite(4, HIGH);
    ...