Skip to content

Commit

Permalink
Change default UDP endpoint to tcode.local:8000 to match WiFi firmware
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoooi0 committed Apr 8, 2024
1 parent ae6a340 commit 51e5075
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Device/OutputTarget/UdpOutputTarget.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ public class UdpOutputTarget : IOutputTarget

public void CreateUI(IUIBuilder builder)
{
AddressInput = builder.CreateTextInput("OutputTarget:Udp:Address", "Address:", "127.0.0.1", 50);
PortInput = builder.CreateTextInput("OutputTarget:Udp:Port", "Port:", "8889", 50);
AddressInput = builder.CreateTextInput("OutputTarget:Udp:Address", "Address:", "tcode.local", 50);
PortInput = builder.CreateTextInput("OutputTarget:Udp:Port", "Port:", "8000", 50);
IpText = AddressInput.storable;
PortText = PortInput.storable;

Expand Down

0 comments on commit 51e5075

Please sign in to comment.