From cda8492c2b75933b1dbe18b9aca0e98f8a7902ce Mon Sep 17 00:00:00 2001 From: Anthony House Date: Thu, 19 Jun 2025 09:32:23 -0600 Subject: [PATCH 1/3] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a41301b..0442d46 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ You can check out a video walkthrough of the code for version 1.0.0 on my YouTub ## Table of Contents - [Screenshots](#screenshots) +- [Parts List](#parts-list) - [Features](#features) - [Requirements](#requirements) - [Setup](#setup) @@ -25,6 +26,10 @@ You can check out a video walkthrough of the code for version 1.0.0 on my YouTub - [Project Structure](#project-structure) - [License](#license) +## Parts List + +* [Solenoid Valve](https://www.amazon.com/dp/B08NX6QBVJ) + ## Features - Automated garden watering using a solenoid valve. - Configurable watering schedules via RTC alarms. @@ -169,4 +174,4 @@ Make sure to check out their YouTube video that I followed [here](https://youtu. [![PICO W WEBSERVER](https://img.youtube.com/vi/C_O0MXGBHsw/maxresdefault.jpg)](https://youtu.be/C_O0MXGBHsw) ## License -This project is licensed under the MIT License. See the [LICENSE](https://opensource.org/license/mit) file for details. \ No newline at end of file +This project is licensed under the MIT License. See the [LICENSE](https://opensource.org/license/mit) file for details. From 3b6d1a053f497efb634d48cdcd9d4a22a6215d39 Mon Sep 17 00:00:00 2001 From: Anthony House Date: Thu, 19 Jun 2025 09:34:45 -0600 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 255c253..4963370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.2.2] - 2025-06-19 + +### Added +* parts list to the readme + +### Changed +* N/A + +### Fixed +* N/A + +### Removed +* N/A + ## [1.2.1] - 2024-07-06 ### Added @@ -117,4 +131,4 @@ * N/A ### Removed -* N/A \ No newline at end of file +* N/A From 3080ec9f70476a35f5f2e80ac9b84a2eb09c37c2 Mon Sep 17 00:00:00 2001 From: Anthony House Date: Thu, 19 Jun 2025 09:36:49 -0600 Subject: [PATCH 3/3] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 871256b..a4fe0cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,7 +59,7 @@ target_include_directories(${PROGRAM_NAME} PRIVATE ) pico_set_program_name(${PROGRAM_NAME} "PicoWater") -pico_set_program_version(${PROGRAM_NAME} "1.2.1") +pico_set_program_version(${PROGRAM_NAME} "1.2.2") pico_enable_stdio_uart(${PROGRAM_NAME} FALSE) pico_enable_stdio_usb(${PROGRAM_NAME} TRUE) pico_add_extra_outputs(${PROGRAM_NAME})