https://github.com/astarte-platform/astarte-device-sdk-qt5
Astarte Qt5 Device SDK
https://github.com/astarte-platform/astarte-device-sdk-qt5
hacktoberfest iot mqtt mqtt-client qt qt5
Last synced: about 1 year ago
JSON representation
Astarte Qt5 Device SDK
- Host: GitHub
- URL: https://github.com/astarte-platform/astarte-device-sdk-qt5
- Owner: astarte-platform
- License: apache-2.0
- Created: 2018-02-07T14:56:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-11-28T14:17:10.000Z (over 2 years ago)
- Last Synced: 2025-05-07T00:47:48.055Z (about 1 year ago)
- Topics: hacktoberfest, iot, mqtt, mqtt-client, qt, qt5
- Language: C++
- Homepage: http://astarte-platform.org/
- Size: 362 KB
- Stars: 11
- Watchers: 5
- Forks: 10
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
Astarte Qt5 Device SDK
======================
Astarte Qt5 Device SDK is the reference SDK for Astarte connected devices. This SDK should be used to connect any device running a C++ Qt5 application to Astarte, hence a more specific SDK should be used for applications written with other languages or toolkits.
This SDK is always updated to the latest Astarte protocol (which is mostly MQTT with some additions on top of it).
Virtually an SDK is not required to connect an application to Astarte using MQTT, but it enables rapid development and a pleasant developer experience.
Requirements
------------
To build this library a C++11 capable compiler is required, and the following dependencies are required:
* CMake
* Qt5 (QtCore, QtNetwork, QtSql)
* libmosquittopp (Mosquitto MQTT C++ client library)
* OpenSSL
The following additional runtime dependencies are also required:
* SQLite
Getting started
---------------
```
$ mkdir build
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX=/usr ..
$ make
# make install
```