Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.93 KB

README.md

File metadata and controls

48 lines (34 loc) · 1.93 KB

co2Card

A custom Lovelace card for Home Assistant that checks if CO2 content is in a good range for current grow light PPFD. It has a nice CO2 atom indicator ;)

First try writing a custom card. I know it's not perfect. Any contributions, recommendations and comments are welcome!

Screenshot

Screenshot

Screenshot

Screenshot

Installation

Via HACS

  1. Ensure you have HACS installed.
  2. In Home Assistant, go to HACS > Frontend.
  3. Click the "+" button to add a new repository.
  4. Enter the repository URL: https://github.com/maziggy/hassCo2Card.git.
  5. Select Dashboard as the category and Save.
  6. Once installed, add the card to your Lovelace dashboard.

or simply

Open your Home Assistant instance and open a repository inside the Home Assistant Community Store.

Configuration

  type: custom:co2Card
  entity: sensor.growbox_water_tds
  entity_ppfd: input_number.grow_ppfd
  stage: seed|vegetation|flowering
  seedCo2: desired ppm value for seed stage
  vegetationCo2: desired ppm value for vegetation stage
  floweringCo2: desired ppm value for flowering stage
  rangeGreen: 100 # ppm difference to desired value | in range
  rangeYellow: 200 # ppm difference to desired value | slightly out of range
  rangeRed: 201 # ppm difference to desired value | out of range
  theme:
    bgColor: "#2c2c2e"
    textColor: "#fff"
    textColorBubble: "#fff"
    iconColor: "#ff9e32"