Skip to content

Commit

Permalink
chore(force-patch): remove #IF for inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welker committed Jul 10, 2024
1 parent fcde6f3 commit e97061b
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions src/SonyBraviaInputs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,11 @@
using PepperDash.Core;
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
using PepperDash.Essentials.Core.Queues;
using SonyBraviaEpi;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SonyBraviaEpi
{
#if SERIES4
public class SonyBraviaInputs : ISelectableItems<string>
{
private Dictionary<string, ISelectableItem> _items = new Dictionary<string, ISelectableItem>();
Expand Down Expand Up @@ -61,10 +56,10 @@ public class SonyBraviaInput : ISelectableItem
{
private bool _isSelected;

private readonly byte[] _command;
private readonly byte[] _command;

private readonly IQueueMessage _inputCommand;
private readonly SonyBraviaDevice _parent;
private readonly SonyBraviaDevice _parent;

public SonyBraviaInput(string key, string name, SonyBraviaDevice parent, IQueueMessage inputCommand)
{
Expand All @@ -77,7 +72,7 @@ public SonyBraviaInput(string key, string name, SonyBraviaDevice parent, IQueueM
public SonyBraviaInput(string key, string name, SonyBraviaDevice parent, byte[] command)
{
Key = key;
Name = name;
Name = name;
_command = command;
_parent = parent;
}
Expand All @@ -104,17 +99,16 @@ public bool IsSelected

public void Select()
{
if(_parent.ComsIsRs232)
if (_parent.ComsIsRs232)
{
Debug.LogMessage(Serilog.Events.LogEventLevel.Information, "Sending input command for {name}: {command}",this, Name, ComTextHelper.GetEscapedText(_command));
Debug.LogMessage(Serilog.Events.LogEventLevel.Information, "Sending input command for {name}: {command}", this, Name, ComTextHelper.GetEscapedText(_command));

_parent.SendRs232Command(_command);

_parent.SendRs232Command(_command);

return;
}

_parent.EnqueueCommand(_inputCommand);
}
}
#endif
}

0 comments on commit e97061b

Please sign in to comment.