2017-12-29 04:54 AM
Hello everyone, I am trying to use MQTT protocol on my STM32 board with SIM7000 as slave. if anyone had worked in such fashion, please can you share code snippets or library file used?? Is there any generalized library file for STM32?
Thank you
#stm32 #stm32l0 #stm32l0-stm32l0-discovery #mqttSolved! Go to Solution.
2017-12-29 05:45 AM
Like other internet protocols, MQTT is entirely independent of the underlying hardware.
So just try googling something like, 'MQTT microcontroller client'
2017-12-29 05:45 AM
Like other internet protocols, MQTT is entirely independent of the underlying hardware.
So just try googling something like, 'MQTT microcontroller client'
2018-02-23 01:07 AM
See:
2018-02-23 01:29 AM
Hi,
I am also looking the same mqtt microcontroller client support in any ST series.
rgds
2018-02-23 01:46 AM
Again, it has nothing specifically to do with ST.
2018-02-23 02:08 AM
No relation with ST but you can definitely use an open source library named 'Paho-embedded C'. It is very well documented.
2018-02-23 02:17 AM
You mean this:
https://github.com/eclipse/paho.mqtt.embedded-c
?Eclipse Paho MQTT C/C++ client for Embedded platforms
This repository contains the source code for the
MQTT C/C++ client library for Embedded platorms.2018-02-23 02:21 AM
Yes this works..
2020-10-07 01:48 AM
@SARTHAK KELAPURE Hi , I am also trying to work on the same thing as you have mentioned. Can you guide me a little bit on this?
2020-10-07 02:15 AM
I am also using Sim808 with Stm32F103 board. So for Mqtt to work on stm32, do I need to configure TCP/IP using sim808 and then use Paho mqtt library??