Viir
(Michael Rätzel)
2
No problem.
To look for targets and beep as soon as one appears, you can use this code:
for(;;)
{
Sanderling?.InvalidateMeasurement();
if(Sanderling?.MemoryMeasurementParsed?.Value?.Target?.Any() ?? false)
Console.Beep(500, 1000);
Host.Delay(3333);
}
This kind of functionality is explained in this guide:
1 Like