diff --git a/README.md b/README.md index 0803da2..17d96d6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![hacs_badge](https://img.shields.io/badge/HACS-Custom-41BDF5.svg?style=for-the-badge)](https://github.com/hacs/integration) -# Elecrow Growcube integration for Home Assistant -Home Assistant integration for the [Elecrow Growcube](https://www.elecrow.com/growcube-gardening-plants-smart-watering-kit-device.html), a plant watering device. +# Elecrow GrowCube integration for Home Assistant +Home Assistant integration for the [Elecrow GrowCube](https://www.elecrow.com/growcube-gardening-plants-smart-watering-kit-device.html), a plant watering device. ## Installation @@ -12,18 +12,18 @@ Install the integration using HACS: 3. Click on the three dots in the top right corner and select "Custom repositories". 4. Enter the URL (`https://github.com/jonnybergdahl/HomeAssistant_Growcube_Integration`) and select "Integration" as the category. 5. Click "Add". -6. Once the repository has been added, you should see the Elecrow Growcube integration listed in the HACS store. +6. Once the repository has been added, you should see the Elecrow GrowCube integration listed in the HACS store. 7. Click on the integration and then click "Install". 8. Restart Home Assistant. -## Add a Growcube device +## Add a GrowCube device 1. Open the Home Assistant web interface. 2. Click on "Configuration" in the left-hand menu. 3. Click on "Integrations". 4. Click on the "+" button in the bottom right corner. -5. Search for "Growcube" and click on it. +5. Search for "GrowCube" and click on it. 6. Enter the IP address (or host name) of the device. -And that's it! Once you've added your Growcube device, you should be able to see its status and control it from the Home Assistant web interface. +And that's it! Once you've added your GrowCube device, you should be able to see its status and control it from the Home Assistant web interface. diff --git a/custom_components/growcube/coordinator.py b/custom_components/growcube/coordinator.py index 1e115d1..e145bc9 100644 --- a/custom_components/growcube/coordinator.py +++ b/custom_components/growcube/coordinator.py @@ -58,7 +58,7 @@ def set_device_id(self, device_id: str) -> None: "name": "GrowCube " + self.device_id, "identifiers": {(DOMAIN, self.model.device_id)}, "manufacturer": "Elecrow", - "model": "Growcube", + "model": "GrowCube", "sw_version": self.model.version } diff --git a/custom_components/growcube/manifest.json b/custom_components/growcube/manifest.json index f7fbf24..9851281 100644 --- a/custom_components/growcube/manifest.json +++ b/custom_components/growcube/manifest.json @@ -1,6 +1,6 @@ { "domain": "growcube", - "name": "Elecrow Growcube", + "name": "Elecrow GrowCube", "codeowners": ["@jonnybergdahl"], "config_flow": true, "config": { @@ -14,4 +14,4 @@ "growcube-client==1.0.13" ], "version": "0.9.0" - } \ No newline at end of file + }