nanoFramework.M2Mqtt 5.0.2-preview.39

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of nanoFramework.M2Mqtt.
There is a newer version of this package available.
See the version list below for details.
dotnet add package nanoFramework.M2Mqtt --version 5.0.2-preview.39
NuGet\Install-Package nanoFramework.M2Mqtt -Version 5.0.2-preview.39
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.M2Mqtt" Version="5.0.2-preview.39" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.M2Mqtt --version 5.0.2-preview.39
#r "nuget: nanoFramework.M2Mqtt, 5.0.2-preview.39"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install nanoFramework.M2Mqtt as a Cake Addin
#addin nuget:?package=nanoFramework.M2Mqtt&version=5.0.2-preview.39&prerelease

// Install nanoFramework.M2Mqtt as a Cake Tool
#tool nuget:?package=nanoFramework.M2Mqtt&version=5.0.2-preview.39&prerelease

Quality Gate Status Reliability Rating License NuGet #yourfirstpr Discord

nanoFramework logo


.NET nanoFramework M2Mqtt

Welcome to the MQTT Client Library for .NET nanoFramework. The current version supports v3.1, v3.1.1 and v5.0.

This is an initial port of the MQTT Client Library M2Mqtt. The original project has an official website here.

Since that time, the MQTT Client had quite some changes and has been adapted to .NET nanoFramework.

Build status

Component Build Status NuGet Package
nanoFramework.M2Mqtt Build Status NuGet
nanoFramework.M2Mqtt (preview) Build Status NuGet

Project Description

M2Mqtt is a MQTT client for Internet of Things and M2M communication.

MQTT, short for Message Queue Telemetry Transport, is a light weight messaging protocol that enables embedded devices with limited resources to perform asynchronous communication on a constrained network.

MQTT protocol is based on publish/subscribe pattern so that a client can subscribe to one or more topics and receive messages that other clients publish on these topics.

This library contains an sample MQTT client that you can use to connect to any MQTT broker.

The binaries are available as a NuGet package.

For all information about MQTT protocol, please visit MQTT official web site. It is recommended to have a good understanding of how MQTT protocol is working to properly use it. The mechanism of Quality of Service is an important one to understand.

Usage

The usage is globally the same whatever version is used. There are some specificities between v3.1.1 and v5.0. The version 5.0 brings more control and additional properties. For convenience, they are all commented with v5.0 only in the properties comments. If you're using a v5.0 property with the v3.1 or v3.1.1 protocol, they'll just be ignored.

Here is a basic example of creating a v3.1.1 server and connecting to it:

MqttClient mqtt = new MqttClient("test.mosquitto.org", 8883, true, new X509Certificate(CertMosquitto), null, MqttSslProtocols.TLSv1_2);
var ret = mqtt.Connect("nanoTestDevice", true);
if (ret != MqttReasonCode.Success)
{
    Debug.WriteLine($"ERROR connecting: {ret}");
    mqtt.Disconnect();
    return;
}

For the v5.0, you just need to specify the version before the connection:

MqttClient mqtt = new MqttClient("test.mosquitto.org", 8883, true, new X509Certificate(CertMosquitto), null, MqttSslProtocols.TLSv1_2);
mqtt.ProtocolVersion = MqttProtocolVersion.Version_5;
var ret = mqtt.Connect("nanoTestDevice", true);
if (ret != MqttReasonCode.Success)
{
    Debug.WriteLine($"ERROR connecting: {ret}");
    mqtt.Disconnect();
    return;
}

Note: in both example, a specific certificate is needed to connect to the Mosquitto server. You will find it in the sample.

v5.0 specific Authentication flow

The MQTT version 5.0 supports specific Authentication flow. After a Connect, the Authentication mechanism can be used like a challenge request. In this case, you'll have to:

  • Make sure you setup v5 as a protocol
  • Place the property IsAuthenticationFlow to true
  • Register to the Authentication event
  • Manage the answers accordingly by sending another Authentication message or anything that is needed regarding your case.

Note: the protocol is using the AuthenticationMethod and AuthenticationData as properties for this specific mechanism.

Here are examples given by the specifications:

Non-normative example showing a SCRAM challenge

  • Client to Server: CONNECT Authentication Method="SCRAM-SHA-1" Authentication Data=client-first-data
  • Server to Client: AUTH rc=0x18 Authentication Method="SCRAM-SHA-1" Authentication Data=server-first-data
  • Client to Server AUTH rc=0x18 Authentication Method="SCRAM-SHA-1" Authentication Data=client-final-data
  • Server to Client CONNACK rc=0 Authentication Method="SCRAM-SHA-1" Authentication Data=server-final-data

Non-normative example showing a Kerberos challenge

  • Client to Server CONNECT Authentication Method="GS2-KRB5"
  • Server to Client AUTH rc=0x18 Authentication Method="GS2-KRB5"
  • Client to Server AUTH rc=0x18 Authentication Method="GS2-KRB5" Authentication Data=initial context token
  • Server to Client AUTH rc=0x18 Authentication Method="GS2-KRB5" Authentication Data=reply context token
  • Client to Server AUTH rc=0x18 Authentication Method="GS2-KRB5"
  • Server to Client CONNACK rc=0 Authentication Method="GS2-KRB5" Authentication Data=outcome of authentication

In those mechanism, the IsConnected property will be setup only once a Connack with a success code will be received. As those authentication mechanism are specific and user setup, this specific MqttClient offers the ability to use this mechanism.

Subscribing to events

The MqttClient offers events. You can subscribe to them. As an example, you can get additional information on when the connection is opened with the v5.0 protocol. The below example show what is required to connect to Azure IoT Hub with the MQTT v5.0 protocol enabled:

// Create the client
MqttClient mqtt = new MqttClient(IoTHub, 8883, true, new X509Certificate(CertAzure), null, MqttSslProtocols.TLSv1_2);
// Setup the version
mqtt.ProtocolVersion = MqttProtocolVersion.Version_5;
// Register to events
mqtt.ConnectionOpened += MqttConnectionOpened;
// You can add additional properties
var at = DateTime.UtcNow;
var atString = (at.ToUnixTimeSeconds() * 1000).ToString();
var expiry = at.AddMinutes(40);
var expiryString = (expiry.ToUnixTimeSeconds() * 1000).ToString();
string toSign = $"{IoTHub}\n{DeviceID}\n\n{atString}\n{expiryString}\n";
var hmac = new HMACSHA256(Convert.FromBase64String(Sas));
var sas = hmac.ComputeHash(Encoding.UTF8.GetBytes(toSign));
mqtt.AuthenticationMethod = "SAS";
mqtt.AuthenticationData = sas;
mqtt.UserProperties.Add(new UserProperty("sas-at", atString));
mqtt.UserProperties.Add(new UserProperty("sas-expiry", expiryString));
mqtt.UserProperties.Add(new UserProperty("api-version", "2020-10-01-preview"));
mqtt.UserProperties.Add(new UserProperty("host", IoTHub));
var ret = mqtt.Connect(DeviceID, null, null, false, MqttQoSLevel.AtLeastOnce, false, null, null, true, 60);
// You will have more code here

private static void MqttConnectionOpened(object sender, ConnectionOpenedEventArgs e)
{
    Debug.WriteLine($"Connection open");
    Debug.WriteLine($"  ClientID: {((MqttClient)sender).ClientId}");
    Debug.WriteLine($"  Assigned client id: {e.Message.AssignedClientIdentifier}");
    if (e.Message.AuthenticationData != null) Debug.WriteLine($"  Auth data length: {e.Message.AuthenticationData.Length}");
    Debug.WriteLine($"  Auth method: {e.Message.AuthenticationMethod}");
    Debug.WriteLine($"  Dup flag: {e.Message.DupFlag}");
    Debug.WriteLine($"  Max packet size: {e.Message.MaximumPacketSize}");
    Debug.WriteLine($"  Max QoS: {e.Message.MaximumQoS}");
    Debug.WriteLine($"  Msg ID: {e.Message.MessageId}");
    Debug.WriteLine($"  Qos level: {e.Message.QosLevel}");
    Debug.WriteLine($"  Reason: {e.Message.Reason}");
    Debug.WriteLine($"  Receive max: {e.Message.ReceiveMaximum}");
    Debug.WriteLine($"  Rep info: {e.Message.ResponseInformation}");
    Debug.WriteLine($"  Retain: {e.Message.Retain}");
    Debug.WriteLine($"  Retain available: {e.Message.RetainAvailable}");
    Debug.WriteLine($"  Return code: {e.Message.ReturnCode}");
    Debug.WriteLine($"  Server keep alive: {e.Message.ServerKeepAlive}");
    Debug.WriteLine($"  Server ref: {e.Message.ServerReference}");
    Debug.WriteLine($"  Session exp inter: {e.Message.SessionExpiryInterval}");
    Debug.WriteLine($"  Session present: {e.Message.SessionPresent}");
    Debug.WriteLine($"  Shared subs available: {e.Message.SharedSubscriptionAvailable}");
    Debug.WriteLine($"  Shared identifier available: {e.Message.SubscriptionIdentifiersAvailable}");
    Debug.WriteLine($"  Topic alias max: {e.Message.TopicAliasMaximum}");
    Debug.WriteLine($"  Num user props: {e.Message.UserProperties.Count}");
    foreach (UserProperty prop in e.Message.UserProperties)
    {
        Debug.WriteLine($"    Key  : {prop.Name}");
        Debug.WriteLine($"    Value: {prop.Value}");
    }

    Debug.WriteLine($"  Wildcard available: {e.Message.WildcardSubscriptionAvailable}");
}

Example

The M2Mqtt library provides a main class MqttClient that represents the MQTT client to connect to a broker. You can connect to the broker providing its IP address or host name and optionally some parameters related to MQTT protocol.

After connecting to the broker you can use Publish() method to publish a message to a topic and Subscribe() method to subscribe to a topic and receive message published on it. The MqttClient class is events based so that you receive an event when a message is published to a topic you subscribed to. You can receive event when a message publishing is complete, you have subscribed or unsubscribed to a topic.

Following an example of client subscriber to a topic :

string MQTT_BROKER_ADDRESS = "192.168.1.2";
// create client instance
MqttClient client = new MqttClient(IPAddress.Parse(MQTT_BROKER_ADDRESS));

// register to message received
client.MqttMsgPublishReceived += client_MqttMsgPublishReceived;

string clientId = Guid.NewGuid().ToString();
client.Connect(clientId);

// subscribe to the topic "/home/temperature" with QoS 2
client.Subscribe(new string[] { "/home/temperature" }, new MqttQoSLevel[] { MqttMsgBase.ExactlyOnce });

// You can add some code here

static void client_MqttMsgPublishReceived(object sender, MqttMsgPublishEventArgs e)
{
// handle message received 
}

Following an example of client publisher to a topic :

string MQTT_BROKER_ADDRESS = "192.168.1.2";
// create client instance
MqttClient client = new MqttClient(IPAddress.Parse(MQTT_BROKER_ADDRESS));

string clientId = Guid.NewGuid().ToString();
client.Connect(clientId);

string strValue = Convert.ToString(value);

// publish a message on "/home/temperature" topic with QoS 2
client.Publish("/home/temperature", Encoding.UTF8.GetBytes(strValue), MqttQoSLevel.ExactlyOnce, false);

// More code goes here

Feedback and documentation

For documentation, providing feedback, issues and finding out how to contribute please refer to the Home repo.

Join our Discord community here.

Credits

The list of contributors to this project can be found at CONTRIBUTORS. This library was created and maintained by Paolo Patierno and it's part of the Eclipse Project.

License

The nanoFramework Class Libraries are licensed under the MIT license.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community. For more information see the .NET Foundation Code of Conduct.

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on nanoFramework.M2Mqtt:

Package Downloads
nanoFramework.Azure.Devices.Client The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package includes the .NET nanoFramework.Azure.Devices.Client assembly for .NET nanoFramework C# projects. This is an SDK for Azure IoT Hub using MQTT broker.

nanoFramework.Aws.IoTCore.Devices The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package includes the .NET nanoFramework.Aws.IoTCore.Devices assembly for nanoFramework C# projects. This is an SDK for Aws IoTCore.

MakoIoT.Device.Services.Mqtt

MQTT library for message bus of MAKO-IoT

MakoIoT.Device.Services.AzureIotHub

AzureIoTHub bus provider for MAKO-IoT

DevBot9.NanoFramework.Homie.Utilities

Homie implementation for nanoFramework.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on nanoFramework.M2Mqtt:

Repository Stars
dotnet/samples
Sample code referenced by the .NET documentation
nanoframework/Samples
🍬 Code samples from the nanoFramework team used in testing, proof of concepts and other explorational endeavours
Version Downloads Last updated
5.1.116 676 1/29/2024
5.1.114 208 1/26/2024
5.1.112 224 1/24/2024
5.1.110 240 1/21/2024
5.1.107 1,457 11/10/2023
5.1.103 177 11/9/2023
5.1.101 238 11/8/2023
5.1.99 90 11/8/2023
5.1.96 666 10/10/2023
5.1.94 959 8/28/2023
5.1.92 218 8/28/2023
5.1.90 237 8/28/2023
5.1.79 3,038 1/14/2023
5.1.75 868 12/28/2022
5.1.70 643 12/27/2022
5.1.68 353 12/22/2022
5.1.61 949 11/24/2022
5.1.59 683 11/22/2022
5.1.53 1,221 11/4/2022
5.1.48 846 10/28/2022
5.1.46 391 10/28/2022
5.1.44 1,935 10/26/2022
5.1.42 614 10/25/2022
5.1.40 380 10/25/2022
5.1.34 3,143 10/14/2022
5.1.27 958 10/10/2022
5.1.25 1,147 10/8/2022
5.1.22 1,686 9/22/2022
5.1.20 980 9/22/2022
5.1.18 1,563 9/15/2022
5.1.16 971 9/15/2022
5.1.11 2,384 8/4/2022
5.1.9 725 8/4/2022
5.1.6 931 8/4/2022
5.1.4 661 8/3/2022
5.1.2 973 8/3/2022
5.0.2.28 668 8/3/2022
5.0.2.26 2,849 6/13/2022
5.0.2.24 1,290 6/8/2022
5.0.2.22 695 6/8/2022
5.0.2.17 1,082 5/26/2022
5.0.2.15 1,600 5/18/2022
5.0.2.13 1,346 5/3/2022
5.0.2 1,882 3/28/2022
5.0.2-preview.100 126 3/28/2022
5.0.2-preview.98 134 3/28/2022
5.0.2-preview.96 127 3/28/2022
5.0.2-preview.94 141 3/28/2022
5.0.2-preview.91 177 3/17/2022
5.0.2-preview.89 131 3/17/2022
5.0.2-preview.87 163 3/15/2022
5.0.2-preview.85 124 3/15/2022
5.0.2-preview.83 144 3/15/2022
5.0.2-preview.80 432 2/17/2022
5.0.2-preview.78 172 2/8/2022
5.0.2-preview.76 194 2/4/2022
5.0.2-preview.74 144 2/4/2022
5.0.2-preview.72 177 1/28/2022
5.0.2-preview.70 140 1/28/2022
5.0.2-preview.68 156 1/28/2022
5.0.2-preview.65 153 1/25/2022
5.0.2-preview.63 150 1/21/2022
5.0.2-preview.61 144 1/21/2022
5.0.2-preview.59 136 1/21/2022
5.0.2-preview.57 135 1/21/2022
5.0.2-preview.55 168 1/14/2022
5.0.2-preview.53 137 1/14/2022
5.0.2-preview.49 209 1/5/2022
5.0.2-preview.47 143 1/5/2022
5.0.2-preview.46 187 1/4/2022
5.0.2-preview.45 171 12/31/2021
5.0.2-preview.44 143 12/31/2021
5.0.2-preview.43 154 12/29/2021
5.0.2-preview.41 189 12/17/2021
5.0.2-preview.39 311 12/4/2021
5.0.2-preview.37 168 12/3/2021
5.0.2-preview.35 173 12/3/2021
5.0.2-preview.33 161 12/2/2021
5.0.2-preview.31 164 12/2/2021
5.0.2-preview.29 164 12/1/2021
5.0.2-preview.26 353 11/14/2021
5.0.2-preview.24 271 11/13/2021
5.0.2-preview.20 199 11/12/2021
5.0.2-preview.18 186 10/23/2021
5.0.2-preview.15 278 10/19/2021
5.0.2-preview.12 166 10/18/2021
5.0.2-preview.9 906 9/17/2021
5.0.2-preview.6 190 9/16/2021
5.0.2-preview.1 630 8/2/2021
5.0.1 940 8/2/2021
5.0.1-preview.5 228 7/27/2021
5.0.1-preview.4 190 7/26/2021
5.0.1-preview.3 241 7/17/2021
5.0.0 587 7/16/2021
5.0.0-preview.4 139 7/16/2021
5.0.0-preview.3 146 7/16/2021
5.0.0-preview.2 709 7/3/2021
4.6.1-preview.90 219 7/3/2021
4.6.1-preview.89 217 6/20/2021
4.6.1-preview.88 253 6/19/2021
4.6.1-preview.86 257 6/19/2021
4.6.1-preview.85 167 6/18/2021
4.6.1-preview.84 155 6/17/2021
4.6.1-preview.83 192 6/8/2021
4.6.1-preview.82 160 6/7/2021
4.6.1-preview.80 161 6/7/2021
4.6.1-preview.79 191 6/7/2021
4.6.1-preview.78 190 6/7/2021
4.6.1-preview.77 196 6/6/2021
4.6.1-preview.76 221 6/1/2021
4.6.1-preview.75 192 5/31/2021
4.6.1-preview.74 198 5/30/2021
4.6.1-preview.73 170 5/26/2021
4.6.1-preview.72 183 5/22/2021
4.6.1-preview.71 218 5/21/2021
4.6.1-preview.70 168 5/19/2021
4.6.1-preview.69 167 5/19/2021
4.6.1-preview.68 179 5/19/2021
4.6.1-preview.67 160 5/15/2021
4.6.1-preview.66 151 5/15/2021
4.6.1-preview.65 160 5/13/2021
4.6.1-preview.64 166 5/13/2021
4.6.1-preview.63 187 5/11/2021
4.6.1-preview.62 164 5/6/2021
4.6.1-preview.61 151 5/6/2021
4.6.1-preview.60 146 5/5/2021
4.6.1-preview.59 142 5/5/2021
4.6.1-preview.58 145 5/5/2021
4.6.1-preview.57 145 5/5/2021
4.6.1-preview.56 189 4/10/2021
4.6.1-preview.54 160 3/31/2021
4.6.1-preview.52 169 3/31/2021
4.6.1-preview.51 161 3/29/2021
4.6.1-preview.28 512 12/7/2020
4.6.1-preview.27 303 10/21/2020
4.6.1-preview.25 287 10/21/2020
4.6.1-preview.24 277 10/21/2020
4.6.1-preview.22 267 10/20/2020
4.6.1-preview.21 324 10/1/2020
4.6.1-preview.19 317 10/1/2020
4.6.1-preview.18 242 9/30/2020
4.6.1-preview.17 256 9/30/2020
4.6.1-preview.16 284 9/27/2020
4.6.1-preview.15 278 9/27/2020
4.6.1-preview.13 267 9/19/2020
4.6.1-preview.12 269 9/19/2020
4.6.1-preview.11 272 9/19/2020
4.6.1-preview.10 314 7/2/2020
4.6.0-preview.7 274 6/17/2020
4.4.1-preview.5 277 6/12/2020
4.4.1-preview.2 303 6/11/2020
4.4.1-preview.1 285 6/5/2020
4.4.0-preview.30 454 6/3/2020
4.4.0-preview.29 279 6/3/2020
4.4.0-preview.28 299 6/1/2020
4.4.0-preview.27 375 5/31/2020
4.4.0-preview.26 278 5/29/2020
4.4.0-preview.25 287 5/8/2020
4.4.0-preview.24 281 5/8/2020
4.4.0-preview.23 276 4/27/2020
4.4.0-preview.22 307 4/16/2020
4.4.0-preview.20 287 4/16/2020
4.4.0-preview.19 268 4/14/2020
4.4.0-preview.18 269 4/14/2020
4.4.0-preview.17 257 4/14/2020
4.4.0-preview.16 265 3/25/2020
4.4.0-preview.10 363 11/14/2019
4.4.0-preview.9 286 11/12/2019
4.4.0-preview.8 279 11/8/2019
4.4.0-preview.7 277 11/7/2019
4.4.0-preview.5 295 11/5/2019
4.4.0-preview.4 301 10/30/2019
4.4.0-preview.3 310 10/30/2019
4.3.1 833 10/15/2019
4.3.1-preview.17 292 10/15/2019
4.3.1-preview.16 286 9/24/2019
4.3.1-preview.15 294 9/24/2019
4.3.1-preview.14 302 9/11/2019
4.3.1-preview.13 296 9/11/2019
4.3.1-preview.10 295 7/20/2019
4.3.1-preview.6 396 7/15/2019
4.3.1-preview.3 308 7/12/2019
4.3.1-preview.1 383 7/10/2019