Skip to content

nillpo/homebridge-nremo

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 

homebridge-nremo

npm package

Nature RemoをSiriで操作できるようにする(on/offのみ)

Configuration

  "accessories": [
    {
      "name": "Room Lamp A",
      "accessory": "NatureRemo",
      "host": "Remo-XXXX.local",
      "path": "/messages",
      "delayBefore": 0,
      "delayAfter": 0,
      "timeout": 2000,
      "retry_interval": 500,
      "retry": 3,
      "on": { "format": "us", "freq": 38, "data": [] },
      "off": { "format": "us", "freq": 38, "data": [] },
      "command_order": [
        { "on": ["on"] },
        { "off": ["off"] }
      ]
    },
    {
      "name": "Lamp A",
      "accessory": "NatureRemo",
      "host": "Remo-XXXX.local",
      "path": "/messages",
      "delayBefore": 1000,
      "delayAfter": 1000,
      "timeout": 2000,
      "retry_interval": 500,
      "retry": 3,
      "on": { "format": "us", "freq": 38, "data": [] },
      "off": { "format": "us", "freq": 38, "data": [] },
      "command_order": [
        { "on": ["on", "off", "on", "off"] },
        { "off": ["on", "off"] }
      ]
    },
    {
      "name": "Lamp B",
      "accessory": "NatureRemo",
      "host": "Remo-XXXX.local",
      "path": "/messages",
      "delayBefore": 500,
      "delayAfter": 800,
      "timeout": 2000,
      "retry_interval": 500,
      "retry": 3,
      "s_on": { "format": "us", "freq": 38, "data": [] },
      "s_middle": { "format": "us", "freq": 38, "data": [] },
      "s_off": { "format": "us", "freq": 38, "data": [] },
      "command_order": [
        { "on": ["s_on", "s_middle", "s_off"] },
        { "off": ["s_off"] }
      ]
    }
  ],

on/off時にcommand_orderのon/offごとの[]で指定したコマンドをdelayAfterで指定した時間ごとに送信する

  • delayBefore: コマンド送信前に指定時間分だけ待つ(Aアクセサリ実行後に実行後Bアクセサリ実行などのシーン利用時に便利)
  • delayAfter: on/off実行時に[]内のコマンドを指定時間ごとに送信できる(同時に送るとNature Remoが反応しない)
  • retry: リクエストが失敗したときに再試行する回数
  • retry_interval: 再試行するまでの時間
  • timeout: リクエストがタイムアウトするまでの時間

Nature Remoにアクセスがしばらくないと1回目のリクエスト時にタイムアウトするのでtimeoutで短めに設定するのがよさそう

About

Nature Remo Plugin for homebridge

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published