161c57ffde
-aggiunta progetto originale (WEB) x conversione CONF
26 lines
660 B
C#
26 lines
660 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ConfMan.IOB.Core
|
|
{
|
|
public class InputSignalProcess
|
|
{
|
|
/// <summary>
|
|
/// Maschera di filtro blink, INT corrispondente ai BIT da filtrare, ad es
|
|
/// 11111111 = 255
|
|
/// 00010110 = 22
|
|
/// 00000111 = 7
|
|
/// </summary>
|
|
public int BlinkFilterMask { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Numero di cicli per cui effettuare il mascheramento dei valori (sul fronte di discesa)
|
|
/// </summary>
|
|
public int BlinkMaxCounter { get; set; } = 10;
|
|
|
|
}
|
|
}
|