nanoFramework.M2Mqtt 5.0.2-preview.78

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.78
                    
NuGet\Install-Package nanoFramework.M2Mqtt -Version 5.0.2-preview.78
                    
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.78" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="nanoFramework.M2Mqtt" Version="5.0.2-preview.78" />
                    
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.0.2-preview.78
                    
#r "nuget: nanoFramework.M2Mqtt, 5.0.2-preview.78"
                    
#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.0.2-preview.78
                    
#: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.0.2-preview.78&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=nanoFramework.M2Mqtt&version=5.0.2-preview.78&prerelease
                    
Install as a Cake Tool

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

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.206 575 11/19/2025
5.1.204 379 11/13/2025
5.1.199 1,393 4/24/2025
5.1.196 930 4/2/2025
5.1.194 280 4/2/2025
5.1.192 630 3/10/2025
5.1.191 349 3/10/2025
5.1.190 308 3/10/2025
5.1.189 310 3/10/2025
5.1.187 514 3/3/2025
5.1.185 500 2/27/2025
5.1.183 414 2/26/2025
5.1.182 206 2/25/2025
5.1.181 176 2/25/2025
5.1.180 261 2/25/2025
5.1.179 173 2/25/2025
5.1.176 772 2/5/2025
5.1.175 308 2/4/2025
5.1.174 297 2/4/2025
5.1.173 277 2/4/2025
5.1.169 424 1/30/2025
5.1.168 270 1/30/2025
5.1.166 175 1/30/2025
5.1.161 234 1/27/2025
5.1.158 538 1/6/2025
5.1.157 202 1/6/2025
5.1.156 160 1/6/2025
5.1.154 334 1/2/2025
5.1.146 1,746 10/11/2024
5.1.145 828 9/26/2024
5.1.138 1,259 7/30/2024
5.1.130 1,890 5/13/2024
5.1.128 499 5/10/2024
5.1.126 525 4/30/2024
5.1.123 640 4/9/2024
5.1.120 686 4/3/2024
5.1.116 1,224 1/29/2024
5.1.114 434 1/26/2024
5.1.112 495 1/24/2024
5.1.110 498 1/21/2024
5.1.107 2,333 11/10/2023
5.1.103 344 11/9/2023
5.1.101 442 11/8/2023
5.1.99 204 11/8/2023
5.1.96 1,039 10/10/2023
5.1.94 1,480 8/28/2023
5.1.92 388 8/28/2023
5.1.90 432 8/28/2023
5.1.79 4,074 1/14/2023
5.1.75 1,118 12/28/2022
5.1.70 870 12/27/2022
5.1.68 501 12/22/2022
5.1.61 1,187 11/24/2022
5.1.59 891 11/22/2022
5.1.53 1,494 11/4/2022
5.1.48 1,046 10/28/2022
5.1.46 523 10/28/2022
5.1.44 2,255 10/26/2022
5.1.42 789 10/25/2022
5.1.40 555 10/25/2022
5.1.34 3,609 10/14/2022
5.1.27 1,167 10/10/2022
5.1.25 1,369 10/8/2022
5.1.22 1,979 9/22/2022
5.1.20 1,222 9/22/2022
5.1.18 1,848 9/15/2022
5.1.16 1,199 9/15/2022
5.1.11 2,718 8/4/2022
5.1.9 942 8/4/2022
5.1.6 1,148 8/4/2022
5.1.4 850 8/3/2022
5.1.2 1,181 8/3/2022
5.0.2.28 844 8/3/2022
5.0.2.26 3,248 6/13/2022
5.0.2.24 1,536 6/8/2022
5.0.2.22 893 6/8/2022
5.0.2.17 1,309 5/26/2022
5.0.2.15 1,905 5/18/2022
5.0.2.13 1,601 5/3/2022
5.0.2 2,224 3/28/2022
5.0.2-preview.100 291 3/28/2022
5.0.2-preview.98 297 3/28/2022
5.0.2-preview.96 293 3/28/2022
5.0.2-preview.94 278 3/28/2022
5.0.2-preview.91 340 3/17/2022
5.0.2-preview.89 271 3/17/2022
5.0.2-preview.87 314 3/15/2022
5.0.2-preview.85 296 3/15/2022
5.0.2-preview.83 309 3/15/2022
5.0.2-preview.80 582 2/17/2022
5.0.2-preview.78 322 2/8/2022
5.0.2-preview.76 365 2/4/2022
5.0.2-preview.74 304 2/4/2022
5.0.2-preview.72 345 1/28/2022
5.0.2-preview.70 307 1/28/2022
5.0.2-preview.68 299 1/28/2022
5.0.2-preview.65 319 1/25/2022
5.0.2-preview.63 285 1/21/2022
5.0.2-preview.61 309 1/21/2022
5.0.2-preview.59 280 1/21/2022
5.0.2-preview.57 289 1/21/2022
5.0.2-preview.55 305 1/14/2022
5.0.2-preview.53 280 1/14/2022
5.0.2-preview.49 352 1/5/2022
5.0.2-preview.47 284 1/5/2022
5.0.2-preview.46 335 1/4/2022
5.0.2-preview.45 315 12/31/2021
5.0.2-preview.44 284 12/31/2021
5.0.2-preview.43 298 12/29/2021
5.0.2-preview.41 332 12/17/2021
5.0.2-preview.39 448 12/4/2021
5.0.2-preview.37 333 12/3/2021
5.0.2-preview.35 312 12/3/2021
5.0.2-preview.33 304 12/2/2021
5.0.2-preview.31 310 12/2/2021
5.0.2-preview.29 328 12/1/2021
5.0.2-preview.26 512 11/14/2021
5.0.2-preview.24 425 11/13/2021
5.0.2-preview.20 347 11/12/2021
5.0.2-preview.18 356 10/23/2021
5.0.2-preview.15 448 10/19/2021
5.0.2-preview.12 304 10/18/2021
5.0.2-preview.9 1,042 9/17/2021
5.0.2-preview.6 336 9/16/2021
5.0.2-preview.1 803 8/2/2021
5.0.1 1,124 8/2/2021
5.0.1-preview.5 381 7/27/2021
5.0.1-preview.4 351 7/26/2021
5.0.1-preview.3 388 7/17/2021
5.0.0 831 7/16/2021
5.0.0-preview.4 310 7/16/2021
5.0.0-preview.3 288 7/16/2021
5.0.0-preview.2 1,126 7/3/2021
4.6.1-preview.90 369 7/3/2021
4.6.1-preview.89 365 6/20/2021
4.6.1-preview.88 401 6/19/2021
4.6.1-preview.86 398 6/19/2021
4.6.1-preview.85 307 6/18/2021
4.6.1-preview.84 327 6/17/2021
4.6.1-preview.83 332 6/8/2021
4.6.1-preview.82 334 6/7/2021
4.6.1-preview.80 309 6/7/2021
4.6.1-preview.79 346 6/7/2021
4.6.1-preview.78 338 6/7/2021
4.6.1-preview.77 369 6/6/2021
4.6.1-preview.76 362 6/1/2021
4.6.1-preview.75 335 5/31/2021
4.6.1-preview.74 340 5/30/2021
4.6.1-preview.73 316 5/26/2021
4.6.1-preview.72 329 5/22/2021
4.6.1-preview.71 383 5/21/2021
4.6.1-preview.70 329 5/19/2021
4.6.1-preview.69 310 5/19/2021
4.6.1-preview.68 326 5/19/2021
4.6.1-preview.67 324 5/15/2021
4.6.1-preview.66 296 5/15/2021
4.6.1-preview.65 328 5/13/2021
4.6.1-preview.64 308 5/13/2021
4.6.1-preview.63 329 5/11/2021
4.6.1-preview.62 306 5/6/2021
4.6.1-preview.61 303 5/6/2021
4.6.1-preview.60 295 5/5/2021
4.6.1-preview.59 290 5/5/2021
4.6.1-preview.58 291 5/5/2021
4.6.1-preview.57 292 5/5/2021
4.6.1-preview.56 337 4/10/2021
4.6.1-preview.54 325 3/31/2021
4.6.1-preview.52 342 3/31/2021
4.6.1-preview.51 315 3/29/2021
4.6.1-preview.28 674 12/7/2020
4.6.1-preview.27 476 10/21/2020
4.6.1-preview.25 456 10/21/2020
4.6.1-preview.24 453 10/21/2020
4.6.1-preview.22 439 10/20/2020
4.6.1-preview.21 493 10/1/2020
4.6.1-preview.19 511 10/1/2020
4.6.1-preview.18 414 9/30/2020
4.6.1-preview.17 427 9/30/2020
4.6.1-preview.16 460 9/27/2020
4.6.1-preview.15 445 9/27/2020
4.6.1-preview.13 438 9/19/2020
4.6.1-preview.12 464 9/19/2020
4.6.1-preview.11 439 9/19/2020
4.6.1-preview.10 484 7/2/2020
4.6.0-preview.7 446 6/17/2020
4.4.1-preview.5 469 6/12/2020
4.4.1-preview.2 475 6/11/2020
4.4.1-preview.1 450 6/5/2020
4.4.0-preview.30 646 6/3/2020
4.4.0-preview.29 452 6/3/2020
4.4.0-preview.28 473 6/1/2020
4.4.0-preview.27 577 5/31/2020
4.4.0-preview.26 482 5/29/2020
4.4.0-preview.25 467 5/8/2020
4.4.0-preview.24 453 5/8/2020
4.4.0-preview.23 474 4/27/2020
4.4.0-preview.22 480 4/16/2020
4.4.0-preview.20 489 4/16/2020
4.4.0-preview.19 446 4/14/2020
4.4.0-preview.18 438 4/14/2020
4.4.0-preview.17 427 4/14/2020
4.4.0-preview.16 443 3/25/2020
4.4.0-preview.10 558 11/14/2019
4.4.0-preview.9 466 11/12/2019
4.4.0-preview.8 459 11/8/2019
4.4.0-preview.7 457 11/7/2019
4.4.0-preview.5 485 11/5/2019
4.4.0-preview.4 478 10/30/2019
4.4.0-preview.3 492 10/30/2019
4.3.1 1,048 10/15/2019
4.3.1-preview.17 474 10/15/2019
4.3.1-preview.16 482 9/24/2019
4.3.1-preview.15 501 9/24/2019
4.3.1-preview.14 511 9/11/2019
4.3.1-preview.13 479 9/11/2019
4.3.1-preview.10 477 7/20/2019
4.3.1-preview.6 573 7/15/2019
4.3.1-preview.3 479 7/12/2019
4.3.1-preview.1 567 7/10/2019