|
| 1 | +# Example module Microsoft.PowerShell.IoT.Plant |
| 2 | + |
| 3 | +This PowerShell module is for automating taking care of potted indoor plants. |
| 4 | + |
| 5 | +This module allows a PowerShell script to control lights and water a plant when needed based on soil moisture level. |
| 6 | + |
| 7 | +This showcases GPIO functionality of [the Microsoft.PowerShell.IoT module](../../README.md). |
| 8 | + |
| 9 | +## Hardware setup |
| 10 | + |
| 11 | +Hardware pieces: |
| 12 | + |
| 13 | +* For lights: |
| 14 | + * Desktop lamp |
| 15 | + * [Plant-specific light bulb](https://www.amazon.com/dp/B07567BPVH/ref=sspa_dk_detail_5?psc=1&pd_rd_i=B07567BPVH&pd_rd_wg=5iTv6&pd_rd_r=WYCAF6212XNJ9NQ14E5Q&pd_rd_w=2u0Gj) |
| 16 | + * [Power relay for power mains (for the lamp)](https://www.amazon.com/POWERSWITCHTAIL-COM-PowerSwitch-Tail-II/dp/B00B888VHM/ref=sr_1_1?ie=UTF8&qid=1518818881&sr=8-1) |
| 17 | +* For watering: |
| 18 | + * [Small water pump](https://www.adafruit.com/product/1150) |
| 19 | + * [Power Relay for 12V DC](https://www.ebay.com/itm/5V-2-Channel-Relay-Module-Shield-For-Arduino-PIC-ARM-DSP-AVR-Electronic-US/162876526032) |
| 20 | + * [12V DC PowerAdapter (for water pump)](https://www.adafruit.com/product/798) |
| 21 | + * [Soil moisture sensor](https://www.ebay.com/i/122408308563?chn=ps) |
| 22 | + |
| 23 | +Default pin configuration of Microsoft.PowerShell.IoT.Plant module: |
| 24 | + |
| 25 | +* Water pump relay connected to GPIO pin 0. |
| 26 | +* Light relay connected to GPIO pin 2. |
| 27 | +* Soil moisture sensor sends data to GPIO pin 5. |
| 28 | + |
| 29 | +Wiring diagram will be published shortly. |
| 30 | + |
| 31 | +## Software setup |
| 32 | + |
| 33 | +### Install PowerShell Core on Raspberry Pi |
| 34 | + |
| 35 | +Installation instructions can be found [here](https://github.com/PowerShell/PowerShell/tree/master/docs/installation/linux.md#raspbian). |
| 36 | + |
| 37 | +### Start Powershell and install modules |
| 38 | + |
| 39 | +```powershell |
| 40 | +sudo pwsh |
| 41 | +Install-Module -Name Microsoft.PowerShell.IoT |
| 42 | +git clone https://github.com/PowerShell/PowerShell-IoT.git |
| 43 | +Import-Module ./PowerShell-IoT/Examples/Microsoft.PowerShell.IoT.Plant |
| 44 | +``` |
| 45 | + |
| 46 | +### Manual operation |
| 47 | + |
| 48 | +```powershell |
| 49 | +PS /home/pi> # working with light |
| 50 | +PS /home/pi> Set-Light On |
| 51 | +PS /home/pi> Set-Light Off |
| 52 | +PS /home/pi> |
| 53 | +PS /home/pi> # working with water |
| 54 | +PS /home/pi> Start-Water |
| 55 | +PS /home/pi> Stop-Water |
| 56 | +PS /home/pi> |
| 57 | +PS /home/pi> # reading soil moisture level |
| 58 | +PS /home/pi> Read-SoilIsDry |
| 59 | +``` |
| 60 | + |
| 61 | +### Automated operation |
| 62 | + |
| 63 | +See `full-plant-demo.ps1`. |
| 64 | + |
| 65 | +This script runs 2 PS jobs - one controls light, the other - water. |
| 66 | + |
| 67 | +For demo purposes script runs for 2 minutes. Adjust timeouts in the script for your scenario. |
0 commit comments