Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added option to select photoblack cartridge #23433

Merged
merged 3 commits into from
May 3, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/epsonworkforce/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"documentation": "https://www.home-assistant.io/components/epsonworkforce",
"dependencies": [],
"codeowners": ["@ThaStealth"],
"requirements": ["epsonprinter==0.0.8"]
"requirements": ["epsonprinter==0.0.9"]
}

3 changes: 2 additions & 1 deletion homeassistant/components/epsonworkforce/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity

REQUIREMENTS = ['epsonprinter==0.0.8']
REQUIREMENTS = ['epsonprinter==0.0.9']

_LOGGER = logging.getLogger(__name__)
MONITORED_CONDITIONS = {
'black': ['Inklevel Black', '%', 'mdi:water'],
'photoblack': ['Inklevel Photoblack', '%', 'mdi:water'],
ThaStealth marked this conversation as resolved.
Show resolved Hide resolved
'magenta': ['Inklevel Magenta', '%', 'mdi:water'],
'cyan': ['Inklevel Cyan', '%', 'mdi:water'],
'yellow': ['Inklevel Yellow', '%', 'mdi:water'],
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ ephem==3.7.6.0
epson-projector==0.1.3

# homeassistant.components.epsonworkforce
epsonprinter==0.0.8
epsonprinter==0.0.9

# homeassistant.components.netgear_lte
eternalegypt==0.0.7
Expand Down