Skip to content

netcharm/XiaoMiGatewayMonitor

Repository files navigation

Intro

This application is XiaoMi/MiJia Gateway Monitor, supported do some actions by your c# script with the ZigBee device state

Note: it's only support ZigBee device attached to gateway, because gateway report the ZigBee device info only.

Development Environment

Hardware

  1. Aqara/XiaoMi/MiJia Gateway
  2. ZigBee device attached to gateway above

Software

  1. Windows 10 Home x64
  2. Visual Studio Express 2015 for Desktop
  3. dotnet framework 4.5 or up (recommended 4.6.2 or up)
  4. Elton.Aqara Forked from EltonFan Elton.Aqara
  5. Roslyn Script Library 1.3.2 (not recommanded upgrade to newest, I try the 2.x version, can not loading assembly dll).
  6. AutoIt3.net (AutoItX)
  7. NAudio
  8. NewtoneSoft.Json

Features

  1. Display gateway heartbeat states every 1s
  2. Response device state changing event
  3. Custom C# script that runs in the above event
  4. Script can read the latest device state & heartbeat info
  5. Script can call AutoItX method to automation OS
  6. Add some functions for script global call, for examples:
    1. Beep (AutoItX not include these methods)
    2. Sleep
    3. Speak (call system speech synth, can simple detect japanese/chinese, but not supported mixed languages)
    4. MonitorOff
    5. WinList("notepad") (AutoItX not include this method in .net assembly)
    6. Kill(" firefox$") (process name or title, supoort simple regex syntax)
    7. Media Play/Pause/Stop like global press Play/Pause/Stop key
    8. Mute/UnMute/ToggleMute (support all devices with * or specified devices with device name)
    9. MuteApp/UnMuteApp/ToggleMuteApp (support all app with * or specified app with app name/title)
    10. MediaIsActive Detect Device/App is playing,
    11. Minimize Window (support all window with "*" of null, or specified app with app name/title)

Note: You can calling external utils for more action with AutoItX methods (Run/RunAs/RunWait/RunAsWait), like nircmd

Example of gateway config

Path: <APP>\config\aqara.json , gateway and device friendly name info took from MiJia App gateway for development page

{
  "gateways": [
    {
      "mac": "00:00:00:00:00:00",
      "password": "****************",
      "devices": [
        {
          "model": "lumi.ctrl_86plug.v1",
          "did": "lumi.00000000000000",
          "name": "<friendly name>"
        }
      ]
    }
  ]
}

Example C# Script

Path: <APP>\actions.csx

// Do something when some sensor status changes
// 当某些传感器状态发生变化时做某些事情
if(IsTest || Device["走道人体传感器"].Motion)
{
  Kill(new string[] { "mplayer.exe", "vlc.exe", "zPlayer UWP.exe", });

  var firefox = @"[REGEXPTITLE:(?i) firefox]";
  if(AutoItX.WinExists(firefox) == 1)
  {
    var title = AutoItX.WinGetTitle(firefox);
    if(Regex.IsMatch(title, @"((qidian)|(17k))", RegexOptions.IgnoreCase))
    {
      if(IsTest || IsAdmin)
      {
        // Set Window State / Send method need permissions for app RunAsAdminstrator
        AutoItX.WinSetState(firefox, "", AutoItX.SW_MAXIMIZE);
        AutoItX.WinActivate(firefox);
        AutoItX.Send("^1");
        AutoItX.Sleep(50);
        AutoItX.Send("{BROWSER_REFRESH}");
        //Minimize(" firefox");
      }
      else
      {
        // Minimize All Window like Win+M
        Minimize();
      }
      //Mute("USB音箱");
      //Mute();
      if(MediaIsOut("firefox"))
      {
        AppMute("firefox");
      }
    }
  }
  Beep();
  //AutoItX.SendKeys("VOLUME_MUTE");
  //Reset("走道人体传感器");
}

if(Device["书房门"].Closed)
{
  Speak("自动关闭屏幕和静音");
  MonitorOff();
  if(MediaIsOut())
  {
    Mute();
  }
}

// Reset the state of each sensor, you must usually have this statement.
// 重置各传感器的状态, 通常必须有此语句.
Reset();

// The variable returned by the last run script can be loaded, and 
// the modified variable will also be returned for the next load.
// 可以加载上次运行的脚本返回的变量, 修改过变量也将会返回以便下次载入
var RunAsAdmin = GetVar<string>("RunAsAdmin");
RunAsAdmin = IsAdmin;
// these values will return to system
// 这些值将返回系统
var NoMontion_Aisle=$"Duration:{Device["走道人体传感器"].StateDuration}";
var OpenDoor_Study=$"Duration:{Device["书房门"].StateDuration}";

Download

  1. Binary
    1. Bitbucket
  2. Source
    1. GitHub
    2. Bitbucket

About

Aqara/XiaoMi/MiJia Gateway Monitor for PC

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages