From 935f4d16a9ba0896240b452d629cdd9acf010501 Mon Sep 17 00:00:00 2001 From: Aaron Bach Date: Tue, 29 Jun 2021 12:57:28 -0500 Subject: [PATCH] Fix small inconsistencies in RainMachine vegetation and sprinkler types (#52313) --- homeassistant/components/rainmachine/switch.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/rainmachine/switch.py b/homeassistant/components/rainmachine/switch.py index d2dab8bd769..b0544b1adbe 100644 --- a/homeassistant/components/rainmachine/switch.py +++ b/homeassistant/components/rainmachine/switch.py @@ -84,7 +84,7 @@ SLOPE_TYPE_MAP = { SPRINKLER_TYPE_MAP = { 0: "Not Set", 1: "Popup Spray", - 2: "Rotors", + 2: "Rotors Low Rate", 3: "Surface Drip", 4: "Bubblers Drip", 5: "Rotors High Rate", @@ -101,9 +101,10 @@ VEGETATION_MAP = { 4: "Flowers", 5: "Vegetables", 6: "Citrus", - 7: "Trees and Bushes", + 7: "Bushes", 9: "Drought Tolerant Plants", 10: "Warm Season Grass", + 11: "Trees", 99: "Other", }