Check-in with your plant friends, this sensor is great for detecting soil moisture levels!
In stock, ships same business day if ordered before 2PM
Delivered by Fri, 6th of Dec
Quantity Discounts:
Tired of wilted plants? Automate your troubles away with this soil moisture sensor!
This sensor reduces corrosion by sensing water capacitively instead of resistively, so water never comes into direct contact with the metal portion of the sensor.
You'll need an analog-to-digital converter to get this sensor working with a Raspberry Pi.
To calibrate the sensor, record the reading when completely dry, and immerse the sensor in water, recording the result (making sure not to get the capacitors and resistors wet).
Map between the two values and experiment with thresholds for each plant!
import machine from time import sleep soil_moisture = machine.ADC(28) # A handy function for mapping values def map_range(x, in_min, in_max, out_min, out_max): mapped = (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min return int(max(min(mapped, out_max), out_min)) while True: soil_moisture_raw_reading = soil_moisture.read_u16() # print(soil_moisture_raw_reading) soil_moisture_filtered_reading = map_range(soil_moisture_raw_reading, 15000, 50000, 0, 100) print(soil_moisture_filtered_reading) sleep(0.5)
Exact shipping can be calculated on the view cart page (no login required).
Products that weigh more than 0.5 KG may cost more than what's shown (for example, test equipment, machines, >500mL liquids, etc).
We deliver Australia-wide with these options (depends on the final destination - you can get a quote on the view cart page):
Non-metro addresses in WA, NT, SA & TAS can take 2+ days in addition to the above information.
Some batteries (such as LiPo) can't be shipped by Air. During checkout, Express Post and International Methods will not be an option if you have that type of battery in your shopping cart.
International Orders - the following rates are for New Zealand and will vary for other countries:
If you order lots of gear, the postage amount will increase based on the weight of your order.
Our physical address (here's a PDF which includes other key business details):
Unit 18, 132 Garden Grove Parade
Adamstown
NSW, 2289
Australia
Take a look at our customer service page if you have other questions such as "do we do purchase orders" (yes!) or "are prices GST inclusive" (yes they are!). We're here to help - get in touch with us to talk shop.
Have a product question? We're here to help!
Makers love reviews as much as you do, please follow this link to review the products you have purchased.
Product Comments