Desarrollar el suscriptor NetLogic y la interfaz
Desarrolle un NetLogic e intégrelo con la interfaz.
- Desarrollar NetLogic
- Haga clic con el botón derecho enMainWindow (type)y seleccione .
- Pase el cursor por encima de NetLogic, seleccione y escribaSubscriberLogic.
- Haga doble clic en NetLogic.Se abre el editor de código externo.
- En el editor de código, reemplace el código existente por el siguiente código:#region StandardUsing using System; using FTOptix.CoreBase; using FTOptix.HMIProject; using UAManagedCore; using OpcUa = UAManagedCore.OpcUa; using FTOptix.NetLogic; using FTOptix.UI; using FTOptix.OPCUAServer; #endregion using uPLibrary.Networking.M2Mqtt; using uPLibrary.Networking.M2Mqtt.Messages; public class SubscriberLogic : BaseNetLogic { public override void Start() { var brokerIpAddressVariable = Project.Current.GetVariable("Model/BrokerIpAddress"); // Create a client connecting to the broker (default port is 1883) subscribeClient = new MqttClient(brokerIpAddressVariable.Value); // Connect to the broker subscribeClient.Connect("SubscriberClient"); // Assign a callback to be executed when a message is received from the broker subscribeClient.MqttMsgPublishReceived += SubscribeClientMqttMsgPublishReceived; // Subscribe to the "my_topic" topic with QoS 2 ushort msgId = subscribeClient.Subscribe(new string[] { "/my_topic" }, // topic new byte[] { MqttMsgBase.QOS_LEVEL_EXACTLY_ONCE }); // QoS level messageVariable = Project.Current.GetVariable("Model/Message"); } public override void Stop() { subscribeClient.Unsubscribe(new string[] { "/my_topic" }); subscribeClient.Disconnect(); } private void SubscribeClientMqttMsgPublishReceived(object sender, MqttMsgPublishEventArgs e) { messageVariable.Value = "Message received: " + System.Text.Encoding.UTF8.GetString(e.Message); } private MqttClient subscribeClient; private IUAVariable messageVariable; }
- Guarde el código.
- Crear los elementos de la interfaz
- Cree la variable de mensaje:
- EnVista del proyecto, haga clic con el botón derecho enModeloy seleccione .
- Pase el cursor por encima de la variable, seleccione y escribaMessage.
- EnPropiedades, seleccioneInt32y seleccioneString.
- Cree la etiqueta Subscribe:
- EnVista del proyecto, haga clic con el botón derecho enMainWindow (type)y seleccione .
- Pase el cursor por encima de la etiqueta, seleccione y escribaSubscribeLabel.
- EnPropiedades, cree un vínculo dinámico entre la propiedadTextoy la variableMessage.Para obtener más información sobre vínculos dinámicos, consulte Crear vínculos dinámicos.
- Organice los elementos de la interfaz.
Entregue su opinión