openhab-addons/bundles/org.openhab.binding.myq
Wouter Born 07a1976c81
Add default translations for binding add-ons (#11760)
* Add default translations for binding add-ons

This makes the texts used by these add-ons translatable with Crowdin.

To keep the PR simple, it only adds default translations for add-ons which do not yet have any default translations properties file.
We can do follow up PRs for adding missing key/values to add-ons that already have these files or to remove duplications.

There are several add-ons in this PR that do have non-English translation files, so I'll upload those to Crowdin when the PR is merged.

Signed-off-by: Wouter Born <github@maindrain.net>
2021-12-15 18:40:21 +01:00
..
src/main Add default translations for binding add-ons (#11760) 2021-12-15 18:40:21 +01:00
NOTICE [myq] Switch to using oAuth for logins (#11183) 2021-09-11 13:41:28 +02:00
pom.xml Updated jsoup to 1.14.3 and adjusted some addons to use the provided version instaed of compile time dependency. (#11643) 2021-12-11 17:21:42 +01:00
README.md [chamberlainmyq] Added new Close Error and Open Error Switch Items fo… (#11115) 2021-09-19 22:06:35 +02:00

MyQ Binding

This binding integrates with the The Chamberlain Group MyQ cloud service. It allows monitoring and control over MyQ enabled garage doors manufactured by LiftMaster, Chamberlain and Craftsman.

Supported Things

Account

This represents the MyQ cloud account and uses the same credentials needed when using the MyQ mobile application.

ThingTypeUID: account

Garage Door

This represents a garage door associated with an account. Multiple garage doors are supported.

ThingTypeUID: garagedoor

Lamp

This represents a lamp associated with an account. Multiple lamps are supported.

ThingTypeUID: lamp

Discovery

Once an account has been added, garage doors and lamps will automatically be discovered and added to the inbox.

Channels

Channel Item Type Thing Type States
status String garagedoor opening, closed, closing, stopped, transition, unknown
rollershutter Rollershutter garagedoor UP, DOWN, 0%, 100%
closeError Switch garagedoor ON (has error), OFF (doesn't have error)
openError Switch garagedoor ON (has error), OFF (doesn't have error)
switch Switch garagedoor, lamp ON (open), OFF (closed)

Full Example

Thing Configuration

Bridge myq:account:home "MyQ Account" [ username="foo@bar.com", password="secret", refreshInterval=60 ] {
    Thing garagedoor abcd12345 "MyQ Garage Door" [ serialNumber="abcd12345" ]
    Thing lamp efgh6789 "MyQ Lamp" [ serialNumber="efgh6789" ]
}

Items

String MyQGarageDoor1Status "Door Status [%s]" {channel = "myq:garagedoor:home:abcd12345:status"}
Switch MyQGarageDoor1Switch "Door Switch [%s]" {channel = "myq:garagedoor:home:abcd12345:switch"}
Switch MyQGarageDoor1CloseError "Door Close Error [%s]" {channel = "myq:garagedoor:home:abcd12345:closeError"}
Switch MyQGarageDoor1OpenError "Door OpenError [%s]" {channel = "myq:garagedoor:home:abcd12345:openError"}
Rollershutter MyQGarageDoor1Rollershutter "Door Rollershutter [%s]" {channel = "myq:garagedoor:home:abcd12345:rollershutter"}
Switch MyQGarageDoorLamp "Lamp [%s]" {channel = "myq:lamp:home:efgh6789:switch"}
}

Sitemaps

sitemap MyQ label="MyQ Demo Sitemap" {
  Frame label="Garage Door" {
    String item=MyQGarageDoor1Status
    Switch item=MyQGarageDoor1Switch
    Rollershutter item=MyQGarageDoor1Rollershutter
  }                
}