Hallo Community,
ich habe vor mit dem IO16-Bricklet, 8 Relaisausgänge zu überwachen mit Hilfe eines Interrupt-Callbacks.
Hier mein Versuch:
using Tinkerforge;
namespace WindowsFormsApplication4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Main2();
}
private static string HOST = "localhost";
private static int PORT = 4223;
private static string UID_IO16 = "b5W";
static void InterruptCB(BrickletIO16 sender, char port, byte interruptMask, byte valueMask)