feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

24 lines
503 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using skyscraper5.Skyscraper.Gps;
using skyscraper5.Skyscraper.Plugins;
namespace skyscraper5.NmeaSharpWrapper
{
[SkyscraperPlugin]
[PluginPriority(1)]
public class GpsdClientFactory : IGpsReceiverFactory
{
public string Hostname { get; set; }
public ushort Port { get; set; }
public IGpsReceiver CreateGpsReceiver()
{
return new GpsdClient(Hostname, Port);
}
}
}