Skip to content

Commit

Permalink
chore: minor tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Jan 13, 2022
1 parent 689a43b commit c969467
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 23 deletions.
2 changes: 1 addition & 1 deletion AtemProxy/AtemServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void AcceptConnections()
_accept = true;
}

public void StartAnnounce(string modelName, string deviceId)
public void StartAnnounce(string modelName, string deviceId)
{
_mdns.UseIpv4 = true;
_mdns.UseIpv6 = false;
Expand Down
20 changes: 0 additions & 20 deletions AtemProxy/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public static void Main(string[] args)
server.Connections.OnReceive += (sender, pkt) =>
{
log.InfoFormat("Got packet from {0}", sender);
// TODO

var acceptedCommands = new List<Tuple<ICommand, byte[]>>();
foreach (ParsedCommandSpec rawCmd in pkt.Commands)
Expand Down Expand Up @@ -130,25 +129,6 @@ public static void Main(string[] args)
server.StartReceive();
server.StartPingTimer();


/*
var client = new AtemClient("10.42.13.95");
client.Connect();
client.OnConnection += (sender) =>
{
client.SendCommand(new FairlightMixerSourceSetCommand()
{
Mask = FairlightMixerSourceSetCommand.MaskFlags.Gain,
Index = AudioSource.Mic1,
SourceId = -256,
Gain = -10
});
Console.WriteLine("Sent");
};
while(true){}
*/

Console.WriteLine("Press Ctrl+C to terminate...");

AutoResetEvent waitHandle = new AutoResetEvent(false);
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ Note: It is recommended to connect directly to the atem for clients which are im
The primary focus is to support 8.0+ fully. Older versions may work, but are no longer recommended.
7.2 should work pretty well, but is not feature complete.

Currently, 8.0.0 - 8.5.3 should work fully. Newer firmware may work, but could have issues with clients connecting after it has been running for a while.
Currently, 8.0.0 - 8.6.4 should work fully. Newer firmware may work, but could have issues with clients connecting after it has been running for a while.

### Download
When it is ready

Check the releases tab

### Usage
Coming soon
Expand Down

0 comments on commit c969467

Please sign in to comment.