Skip to content

Commit

Permalink
forgot to customize workday_tomorrow
Browse files Browse the repository at this point in the history
  • Loading branch information
eifinger committed Jul 20, 2018
1 parent 9a07524 commit 6e5e515
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion customize.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,20 @@ binary_sensor.workday_today:
return "Nein";
}
binary_sensor.workday_tomorrow:
friendly_name: Ist Morgen ein Arbeitstag?
friendly_name: Ist Morgen ein Arbeitstag?
templates:
icon: >
if ( state === 'on' ) {
return "mdi:briefcase";
} else if ( state === 'off' ) {
return "mdi:beach";
}
state: >
if ( state === 'on' ) {
return "Ja";
} else if ( state === 'off' ) {
return "Nein";
}
#################################################################
## Android IP Webcam
#################################################################
Expand Down

0 comments on commit 6e5e515

Please sign in to comment.