Octopus Brick -- Soil Moisture Sensor

Octopus Brick -- Soil Moisture Sensor

Hi Guys, from now on we will provide to you our Octopus Brick series. You can use them yo build electronics projects just as easily as piling bricks. By using Octopus electronic bricks, you may connect Arduino/Freaduino compatible boards easily with various digital, analog and I2C/Uart interfaces.

These breadboard-less firm connection are prepared to extensive modules like poteniometers, sensors, relays, servos…even buttons, just plugging  and playing. Octopus Soil Moisture Sensor Brick can read the amount of moisture present in the soil surrounding it. It's a low tech sensor, but ideal for monitoring an urban garden, or your pet plant's water level. This is a must have tool for a connected garden!

This sensor uses the two probes to pass current through the soil, and then it reads that resistance to get the moisture level. More water makes the soil conduct electricity more easily (less resistance), while dry soil conducts electricity poorly (more resistance). It will be helpful to remind you to water your indoor plants or to monitor the soil moisture in your garden. The Freaduino Sensor Shield is the perfect shield to connect this senor to Arduino. Or Freaduino UNO which we had pre-stray Octopus Brick interface.

Specification 

  • Power supply: 3.3v or 5v
  • Output voltage signal: 0~4.2v
  • Current: 35mA
  • Pin definition: Analog output(Yellow wire) GND(Black wire) Power(Red wire)

[cce_cpp]
/*
  # Example code for the moisture sensor
  # Editor     : Lauren
  # Date       : 13.01.2012
  # Version    : 1.0
  # Connect the sensor to the A0(Analog 0) pin on the Arduino board

  # the sensor value description
  # 0  ~300     dry soil
  # 300~700     humid soil
  # 700~950     in water
*/

void setup(){

  Serial.begin(57600);

}

void loop(){

  Serial.print("Moisture Sensor Value:");
  Serial.println(analogRead(0));
  delay(100);

}
[/cce_cpp]

  We will  release more Octopus Brick step by step recently. Please Stay tuned !!