nanoFramework.M2Mqtt 5.1.199

Prefix Reserved
dotnet add package nanoFramework.M2Mqtt --version 5.1.199
                    
NuGet\Install-Package nanoFramework.M2Mqtt -Version 5.1.199
                    
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.1.199" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="nanoFramework.M2Mqtt" Version="5.1.199" />
                    
Directory.Packages.props
<PackageReference Include="nanoFramework.M2Mqtt" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add nanoFramework.M2Mqtt --version 5.1.199
                    
#r "nuget: nanoFramework.M2Mqtt, 5.1.199"
                    
#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.
#:package nanoFramework.M2Mqtt@5.1.199
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=nanoFramework.M2Mqtt&version=5.1.199
                    
Install as a Cake Addin
#tool nuget:?package=nanoFramework.M2Mqtt&version=5.1.199
                    
Install as a Cake Tool

Quality Gate Status Reliability Rating License NuGet #yourfirstpr Discord

nanoFramework logo


Document Language: English | 简体中文

.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

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

Avoiding certificate check

In some cases, it can be handy to avoid the certificate checks when connecting through TLS connection. While this scenario is not recommended, you can adjust for it like this:

// You can specify no certificate at all
MqttClient mqtt = new MqttClient(IoTHub, 8883, true, null, null, MqttSslProtocols.TLSv1_2);
// And you have to setup the ValidateServerCertificate to false
mqtt.Settings.ValidateServerCertificate = false;
string clientId = Guid.NewGuid().ToString();
client.Connect(clientId);

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

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

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.199 1,353 4/24/2025
5.1.196 923 4/2/2025
5.1.194 265 4/2/2025
5.1.192 623 3/10/2025
5.1.191 336 3/10/2025
5.1.190 299 3/10/2025
5.1.189 299 3/10/2025
5.1.187 505 3/3/2025
5.1.185 493 2/27/2025
5.1.183 404 2/26/2025
5.1.182 195 2/25/2025
5.1.181 164 2/25/2025
5.1.180 244 2/25/2025
5.1.179 168 2/25/2025
5.1.176 763 2/5/2025
5.1.175 299 2/4/2025
5.1.174 286 2/4/2025
5.1.173 270 2/4/2025
5.1.169 416 1/30/2025
5.1.168 262 1/30/2025
5.1.166 160 1/30/2025
5.1.161 224 1/27/2025
5.1.158 526 1/6/2025
5.1.157 188 1/6/2025
5.1.156 153 1/6/2025
5.1.154 328 1/2/2025
5.1.146 1,738 10/11/2024
5.1.145 821 9/26/2024
5.1.138 1,253 7/30/2024
5.1.130 1,888 5/13/2024
5.1.128 491 5/10/2024
5.1.126 519 4/30/2024
5.1.123 631 4/9/2024
5.1.120 674 4/3/2024
5.1.116 1,211 1/29/2024
5.1.114 424 1/26/2024
5.1.112 486 1/24/2024
5.1.110 492 1/21/2024
5.1.107 2,325 11/10/2023
5.1.103 337 11/9/2023
5.1.101 436 11/8/2023
5.1.99 198 11/8/2023
5.1.96 1,035 10/10/2023
5.1.94 1,469 8/28/2023
5.1.92 381 8/28/2023
5.1.90 423 8/28/2023
5.1.79 4,043 1/14/2023
5.1.75 1,099 12/28/2022
5.1.70 851 12/27/2022
5.1.68 488 12/22/2022
5.1.61 1,170 11/24/2022
5.1.59 877 11/22/2022
5.1.53 1,477 11/4/2022
5.1.48 1,030 10/28/2022
5.1.46 503 10/28/2022
5.1.44 2,240 10/26/2022
5.1.42 773 10/25/2022
5.1.40 538 10/25/2022
5.1.34 3,593 10/14/2022
5.1.27 1,151 10/10/2022
5.1.25 1,356 10/8/2022
5.1.22 1,964 9/22/2022
5.1.20 1,206 9/22/2022
5.1.18 1,833 9/15/2022
5.1.16 1,182 9/15/2022
5.1.11 2,697 8/4/2022
5.1.9 920 8/4/2022
5.1.6 1,127 8/4/2022
5.1.4 833 8/3/2022
5.1.2 1,166 8/3/2022
5.0.2.28 828 8/3/2022
5.0.2.26 3,227 6/13/2022
5.0.2.24 1,519 6/8/2022
5.0.2.22 877 6/8/2022
5.0.2.17 1,288 5/26/2022
5.0.2.15 1,891 5/18/2022
5.0.2.13 1,587 5/3/2022
5.0.2 2,210 3/28/2022
5.0.2-preview.100 277 3/28/2022
5.0.2-preview.98 284 3/28/2022
5.0.2-preview.96 277 3/28/2022
5.0.2-preview.94 263 3/28/2022
5.0.2-preview.91 324 3/17/2022
5.0.2-preview.89 255 3/17/2022
5.0.2-preview.87 293 3/15/2022
5.0.2-preview.85 275 3/15/2022
5.0.2-preview.83 289 3/15/2022
5.0.2-preview.80 564 2/17/2022
5.0.2-preview.78 300 2/8/2022
5.0.2-preview.76 348 2/4/2022
5.0.2-preview.74 285 2/4/2022
5.0.2-preview.72 327 1/28/2022
5.0.2-preview.70 286 1/28/2022
5.0.2-preview.68 279 1/28/2022
5.0.2-preview.65 298 1/25/2022
5.0.2-preview.63 268 1/21/2022
5.0.2-preview.61 291 1/21/2022
5.0.2-preview.59 260 1/21/2022
5.0.2-preview.57 269 1/21/2022
5.0.2-preview.55 283 1/14/2022
5.0.2-preview.53 261 1/14/2022
5.0.2-preview.49 331 1/5/2022
5.0.2-preview.47 264 1/5/2022
5.0.2-preview.46 310 1/4/2022
5.0.2-preview.45 295 12/31/2021
5.0.2-preview.44 263 12/31/2021
5.0.2-preview.43 278 12/29/2021
5.0.2-preview.41 313 12/17/2021
5.0.2-preview.39 430 12/4/2021
5.0.2-preview.37 314 12/3/2021
5.0.2-preview.35 293 12/3/2021
5.0.2-preview.33 279 12/2/2021
5.0.2-preview.31 288 12/2/2021
5.0.2-preview.29 308 12/1/2021
5.0.2-preview.26 490 11/14/2021
5.0.2-preview.24 402 11/13/2021
5.0.2-preview.20 328 11/12/2021
5.0.2-preview.18 334 10/23/2021
5.0.2-preview.15 421 10/19/2021
5.0.2-preview.12 284 10/18/2021
5.0.2-preview.9 1,023 9/17/2021
5.0.2-preview.6 315 9/16/2021
5.0.2-preview.1 781 8/2/2021
5.0.1 1,104 8/2/2021
5.0.1-preview.5 360 7/27/2021
5.0.1-preview.4 333 7/26/2021
5.0.1-preview.3 368 7/17/2021
5.0.0 811 7/16/2021
5.0.0-preview.4 290 7/16/2021
5.0.0-preview.3 265 7/16/2021
5.0.0-preview.2 1,090 7/3/2021
4.6.1-preview.90 350 7/3/2021
4.6.1-preview.89 341 6/20/2021
4.6.1-preview.88 382 6/19/2021
4.6.1-preview.86 378 6/19/2021
4.6.1-preview.85 285 6/18/2021
4.6.1-preview.84 303 6/17/2021
4.6.1-preview.83 312 6/8/2021
4.6.1-preview.82 310 6/7/2021
4.6.1-preview.80 286 6/7/2021
4.6.1-preview.79 322 6/7/2021
4.6.1-preview.78 317 6/7/2021
4.6.1-preview.77 348 6/6/2021
4.6.1-preview.76 343 6/1/2021
4.6.1-preview.75 315 5/31/2021
4.6.1-preview.74 322 5/30/2021
4.6.1-preview.73 296 5/26/2021
4.6.1-preview.72 308 5/22/2021
4.6.1-preview.71 366 5/21/2021
4.6.1-preview.70 306 5/19/2021
4.6.1-preview.69 291 5/19/2021
4.6.1-preview.68 302 5/19/2021
4.6.1-preview.67 300 5/15/2021
4.6.1-preview.66 275 5/15/2021
4.6.1-preview.65 306 5/13/2021
4.6.1-preview.64 290 5/13/2021
4.6.1-preview.63 304 5/11/2021
4.6.1-preview.62 286 5/6/2021
4.6.1-preview.61 280 5/6/2021
4.6.1-preview.60 276 5/5/2021
4.6.1-preview.59 267 5/5/2021
4.6.1-preview.58 268 5/5/2021
4.6.1-preview.57 267 5/5/2021
4.6.1-preview.56 320 4/10/2021
4.6.1-preview.54 304 3/31/2021
4.6.1-preview.52 319 3/31/2021
4.6.1-preview.51 293 3/29/2021
4.6.1-preview.28 648 12/7/2020
4.6.1-preview.27 450 10/21/2020
4.6.1-preview.25 435 10/21/2020
4.6.1-preview.24 427 10/21/2020
4.6.1-preview.22 415 10/20/2020
4.6.1-preview.21 468 10/1/2020
4.6.1-preview.19 485 10/1/2020
4.6.1-preview.18 385 9/30/2020
4.6.1-preview.17 403 9/30/2020
4.6.1-preview.16 440 9/27/2020
4.6.1-preview.15 419 9/27/2020
4.6.1-preview.13 413 9/19/2020
4.6.1-preview.12 437 9/19/2020
4.6.1-preview.11 415 9/19/2020
4.6.1-preview.10 464 7/2/2020
4.6.0-preview.7 425 6/17/2020
4.4.1-preview.5 446 6/12/2020
4.4.1-preview.2 451 6/11/2020
4.4.1-preview.1 429 6/5/2020
4.4.0-preview.30 621 6/3/2020
4.4.0-preview.29 428 6/3/2020
4.4.0-preview.28 450 6/1/2020
4.4.0-preview.27 553 5/31/2020
4.4.0-preview.26 453 5/29/2020
4.4.0-preview.25 443 5/8/2020
4.4.0-preview.24 431 5/8/2020
4.4.0-preview.23 449 4/27/2020
4.4.0-preview.22 458 4/16/2020
4.4.0-preview.20 466 4/16/2020
4.4.0-preview.19 422 4/14/2020
4.4.0-preview.18 417 4/14/2020
4.4.0-preview.17 406 4/14/2020
4.4.0-preview.16 420 3/25/2020
4.4.0-preview.10 532 11/14/2019
4.4.0-preview.9 439 11/12/2019
4.4.0-preview.8 426 11/8/2019
4.4.0-preview.7 430 11/7/2019
4.4.0-preview.5 460 11/5/2019
4.4.0-preview.4 454 10/30/2019
4.4.0-preview.3 463 10/30/2019
4.3.1 1,021 10/15/2019
4.3.1-preview.17 449 10/15/2019
4.3.1-preview.16 459 9/24/2019
4.3.1-preview.15 474 9/24/2019
4.3.1-preview.14 482 9/11/2019
4.3.1-preview.13 450 9/11/2019
4.3.1-preview.10 449 7/20/2019
4.3.1-preview.6 548 7/15/2019
4.3.1-preview.3 455 7/12/2019
4.3.1-preview.1 535 7/10/2019