-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to new Harmony library and .NET version, and changed command …
…send to use the key press instead of raw sendcommand
- Loading branch information
Showing
4 changed files
with
37 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<configSections> | ||
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" /> | ||
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/> | ||
</configSections> | ||
<appSettings> | ||
<add key="brokerIp" value="192.168.1.152" /> | ||
<add key="brokerPort" value="1883" /> | ||
<add key="brokerUsername" value="" /> | ||
<add key="brokerPassword" value="" /> | ||
<add key="brokerIp" value="192.168.1.152"/> | ||
<add key="brokerPort" value="1883"/> | ||
<add key="brokerUsername" value=""/> | ||
<add key="brokerPassword" value=""/> | ||
|
||
<add key="harmonyIp" value="192.168.1.113" /> | ||
<add key="harmonyName" value="default" /> | ||
<add key="harmonyUsername" value="" /> | ||
<add key="harmonyPassword" value="" /> | ||
<add key="harmonyIp" value="192.168.1.113"/> | ||
<add key="harmonyName" value="default"/> | ||
<add key="harmonyUsername" value=""/> | ||
<add key="harmonyPassword" value=""/> | ||
<add key="bypassLogitechLogin" value="true"/> | ||
</appSettings> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/> | ||
</startup> | ||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<variable name="logDirectory" value="${basedir}/logs" /> | ||
<variable name="logDirectory" value="${basedir}/logs"/> | ||
<targets> | ||
<target name="file" xsi:type="File" fileName="${logDirectory}/${shortdate}.txt" /> | ||
<target name="console" xsi:type="Console" /> | ||
<target name="file" xsi:type="File" fileName="${logDirectory}/${shortdate}.txt"/> | ||
<target name="console" xsi:type="Console"/> | ||
</targets> | ||
<rules> | ||
<logger name="*" minLevel="Debug" appendTo="file,console" /> | ||
<logger name="*" minLevel="Debug" appendTo="file,console"/> | ||
</rules> | ||
</nlog> | ||
</configuration> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters