Skip to content

Commit

Permalink
fix: fixes Select() method on LgInput
Browse files Browse the repository at this point in the history
  • Loading branch information
ndorin committed May 1, 2024
1 parent 687b456 commit 3ebb6d2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -364,3 +364,4 @@ MigrationBackup/
.vscode/
*.projectinfo
/output/epi-display-lg.4Series.1.0.0-local.cplz
/src/._epi-display-lg.4Series.csproj
Binary file removed src/._epi-display-lg.4Series.csproj
Binary file not shown.
5 changes: 3 additions & 2 deletions src/LGInputs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
using Independentsoft.Exchange;
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
using PepperDash.Essentials.Core.Queues;
using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -89,7 +90,7 @@ public bool IsSelected

public void Select()
{
_parent.SendData(Key);
_parent.SendData(string.Format($"xb {_parent.Id} {Key}"));
}
}
#endif
Expand Down
1 change: 0 additions & 1 deletion src/LgDisplayDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
using PepperDash.Essentials.Core.Queues;
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
using PepperDash.Essentials.Core.Fusion;
using static Crestron.SimplSharpPro.DM.Audio;

namespace Epi.Display.Lg
{
Expand Down
7 changes: 3 additions & 4 deletions src/epi-display-lg.4Series.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<RootNamespace>PepperDash.Essentials.Plugins.Display.LG</RootNamespace>
` <Deterministic>false</Deterministic>
<Deterministic>false</Deterministic>
<AssemblyTitle>epi-lg-display</AssemblyTitle>
<Company>PepperDash Technologies</Company>
<Description>This software is a plugin designed to work as a part of PepperDash Essentials for Crestron control processors. This plugin allows for control LG Diplays.</Description>
Expand All @@ -19,12 +19,11 @@
<PackageProjectUrl>https://github.com/PepperDash/epi-lg-display</PackageProjectUrl>
<PackageTags>crestron 4series lg display</PackageTags>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>$(DefineConstants);SERIES4</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>$(DefineConstants);SERIES4</DefineConstants>
</PropertyGroup>


<ItemGroup>
<Compile Remove="Properties\**" />
Expand Down

0 comments on commit 3ebb6d2

Please sign in to comment.