mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2024-12-22 10:42:24 +00:00
1.0.7 - Use previous area state when area is arming for web service API
- Add interactive command line option and use path separator for mono compatibility
This commit is contained in:
parent
b4f4e5f795
commit
0d83ded2a4
|
@ -8,6 +8,8 @@ namespace HAILogger
|
|||
{
|
||||
static class Helper
|
||||
{
|
||||
private static string lastmode = "OFF";
|
||||
|
||||
public static AreaContract ConvertArea(ushort id, clsArea area)
|
||||
{
|
||||
AreaContract ret = new AreaContract();
|
||||
|
@ -19,18 +21,15 @@ namespace HAILogger
|
|||
ret.fire = area.AreaFireAlarmText;
|
||||
ret.water = area.AreaWaterAlarmText;
|
||||
|
||||
string mode = area.ModeText();
|
||||
|
||||
if (mode.Contains("DAY"))
|
||||
ret.mode = "DAY";
|
||||
else if (mode.Contains("NIGHT"))
|
||||
ret.mode = "NIGHT";
|
||||
else if (mode.Contains("AWAY"))
|
||||
ret.mode = "AWAY";
|
||||
else if (mode.Contains("VACATION"))
|
||||
ret.mode = "VACATION";
|
||||
if (area.ExitTimer > 0)
|
||||
{
|
||||
ret.mode = lastmode;
|
||||
}
|
||||
else
|
||||
ret.mode = "OFF";
|
||||
{
|
||||
ret.mode = area.ModeText();
|
||||
lastmode = ret.mode;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -10,17 +10,27 @@ namespace HAILogger
|
|||
|
||||
static void Main(string[] args)
|
||||
{
|
||||
bool interactive = false;
|
||||
|
||||
for (int i = 0; i < args.Length; i++)
|
||||
{
|
||||
switch (args[i])
|
||||
{
|
||||
case "/?":
|
||||
case "-h":
|
||||
case "-help":
|
||||
ShowHelp();
|
||||
return;
|
||||
case "-c":
|
||||
Global.dir_config = args[++i];
|
||||
break;
|
||||
case "-i":
|
||||
interactive = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (Environment.UserInteractive)
|
||||
if (Environment.UserInteractive || interactive)
|
||||
{
|
||||
Console.TreatControlCAsInput = false;
|
||||
Console.CancelKeyPress += new ConsoleCancelEventHandler(myHandler);
|
||||
|
@ -50,5 +60,13 @@ namespace HAILogger
|
|||
server.Shutdown();
|
||||
args.Cancel = true;
|
||||
}
|
||||
|
||||
static void ShowHelp()
|
||||
{
|
||||
Console.WriteLine(
|
||||
AppDomain.CurrentDomain.FriendlyName + " [-c config_file] [-i]\n" +
|
||||
"\t-c Specifies the name of the config file. Default is HAILogger.ini.\n" +
|
||||
"\t-i Run in interactive mode.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.6.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.6.0")]
|
||||
[assembly: AssemblyVersion("1.0.7.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.7.0")]
|
||||
|
|
|
@ -10,7 +10,7 @@ namespace HAILogger
|
|||
{
|
||||
public static void LoadSettings()
|
||||
{
|
||||
NameValueCollection settings = LoadCollection(Global.dir_config + "\\HAILogger.ini");
|
||||
NameValueCollection settings = LoadCollection(Global.dir_config + Path.DirectorySeparatorChar + "HAILogger.ini");
|
||||
|
||||
// HAI Controller
|
||||
Global.hai_address = settings["hai_address"];
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
Provides logging and web service API for HAI/Leviton OmniPro II controllers
|
||||
|
||||
##Download
|
||||
You can download the [binary here](http://www.excalibur-partners.com/downloads/HAILogger_1_0_6.zip)
|
||||
You can download the [binary here](http://www.excalibur-partners.com/downloads/HAILogger_1_0_7.zip)
|
||||
|
||||
##Requirements
|
||||
- .NET Framework 4.0
|
||||
|
@ -58,6 +58,10 @@ To test the API you can use your browser to view a page or PowerShell (see below
|
|||
- Invoke-WebRequest -Uri "http://localhost:8000/SetUnit" -Method POST -ContentType "application/json" -Body (convertto-json -InputObject @{"id"=1;"value"=100}) -UseBasicParsing
|
||||
|
||||
##Change Log
|
||||
Version 1.0.7 - 2016-11-25
|
||||
- Use previous area state when area is arming for web service API
|
||||
- Add interactive command line option and use path separator for Mono compatibility
|
||||
|
||||
Version 1.0.6 - 2016-11-20
|
||||
- Added thermostat status and auxiliary temp to web service API
|
||||
|
||||
|
|
Loading…
Reference in a new issue