Starting from version 3.10.0, the Anjay LwM2M Client SDK is distributed under a new License.
If you intend to use Anjay in any commercial context, you must fill in a registration form to obtain a free commercial license for your product.
Register here: https://go.avsystem.com/anjay-registration
We introduced registration to:
- Gain insight into usage patterns – so we can prioritize support, features, and enhancements relevant to real-world use cases.
- Engage with users – allow us to notify you about important updates, security advisories, or licensing changes.
- Offer tailored commercial plugins, professional services, and technical support to accelerate your product development.
For inquiries, please contact: [email protected]
Anjay is a C library that aims to be the reference implementation of the OMA Lightweight Machine-to-Machine (LwM2M) device management protocol. It eases development of fully-featured LwM2M client applications by taking care of protocol details, allowing the user to focus on device-specific aspects.
The project has been created and is actively maintained by AVSystem.
Quick links:
Table of contents:
- Supported features
- About OMA LwM2M
- Embedded operating systems ports
- Quickstart guide
- License
- Contributing
This version includes full support for OMA LwM2M TS 1.1 features. Some features, such as support for EST, SMS binding or HSM's are available commercially.
-
LwM2M Bootstrap Interface:
- Request
- Discover
- Read
- Write
- Delete
- Finish
-
LwM2M Client Registration Interface:
- Register
- Update
- De-register
-
LwM2M Device Management and Service Enablement Interface:
- Discover
- Read
- Read-Composite
- Write
- Write-Composite
- Execute
- Write-Attributes
- Create
- Delete
- Send
-
LwM2M Information Reporting Interface:
- Observe
- Observe-Composite
- Cancel Observation
- Cancel Observation-Composite
- Notify
-
LwM2M Security modes:
- DTLS with Certificates (if supported by backend TLS library)
- DTLS with PSK (if supported by backend TLS library)
- NoSec mode
-
Supported TLS backends:
- mbed TLS
- OpenSSL
- tinydtls
-
Supported platforms:
- any Unix-like operating system, such as Linux (including Android), macOS and BSD family
- Microsoft Windows (preliminary support, see README.Windows.md for details)
- any embedded platform (e.g. FreeRTOS, Zephyr) - check the list of ready to use integrations
- porting is possible for any other platform that has ISO C99 compiler available, see Porting guide for non-POSIX platforms for details
-
CoAP data formats:
- Plain Text
- Opaque
- CBOR
- TLV
- SenML JSON
- SenML CBOR
- LwM2M JSON (output only)
-
CoAP BLOCK transfers (for transferring data that does not fit in a single UDP packet):
- Block1 (sending / receiving requests)
- Block2 (sending responses)
-
Pre-implemented LwM2M Objects:
- Access Control
- Security
- Server
- Firmware Update
- IPSO single and three-axis sensor objects
- LwM2M Gateway
-
Stream-oriented persistence API
OMA LwM2M is a remote device management and telemetry protocol designed to conserve network resources. It is especially suitable for constrained wireless devices, where network communication is a major factor affecting battery life. LwM2M features secure (DTLS-encrypted) methods of remote bootstrapping, configuration and notifications over UDP or SMS.
For quick and simple protocol learning, visit LwM2M Crash Course
More details about OMA LwM2M: Brief introduction to LwM2M
If you want to use Anjay on Zephyr OS, FreeRTOS, Azure RTOS, ESP-IDF or RPI Pico W check our demo applications available in other repositories:
- Anjay-zephyr-client (uses Anjay-zephyr integration layer)
- Anjay-freertos-client
- Anjay-stm32-azurertos-client
- Anjay-esp32-client (uses Anjay-esp-idf integration layer)
- Anjay-pico-client (uses FreeRTOS Kernel)
- C compiler with C99 support,
- avs_commons - included in the repository as a subproject,
- If DTLS support is enabled, at least one of:
- Optional dependencies (required for tests):
- CMake 3.16+ - non-mandatory, but preferred build system,
- C++ compiler with C++11 support,
- Python 3.5+,
- pybind11 - included in the repository as a subproject,
- scan-build - for static analysis,
- Optional dependencies (required for building documentation - more information in "Contributing" section):
sudo apt-get install git build-essential cmake libmbedtls-dev zlib1g-dev
# EPEL is required for mbedtls-devel and cmake3
sudo yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo yum install -y which git make cmake3 mbedtls-devel gcc gcc-c++ zlib-devel
macOS Sierra or later, with Homebrew
brew install cmake mbedtls openssl
In order to run integration tests or nsh_lwm2m
server, some additional Python
modules are required. To install them, you can use requirements.txt
file by
running the following command:
pip3 install -U -r requirements.txt
For initial development and testing of LwM2M clients, we recommend using the Coiote IoT Device Management where you can use the basic LwM2M server functionality for free. After registering and logging in Coiote, you can onboard your first device.
With a device added to the LwM2M Server, you can compile Anjay demo client and connect it to the platform by running:
git clone https://github.com/AVSystem/Anjay.git \
&& cd Anjay \
&& git submodule update --init \
&& cmake . \
&& make -j \
&& ./output/bin/demo --endpoint-name $(hostname) --server-uri coap://eu.iot.avsystem.cloud:5683
NOTE: On some older systems like CentOS 7, you may need to use cmake3
instead of cmake
.
NOTE: We strongly recommend replacing $(hostname)
with some actual unique hostname. Please see the documentation for information on preferred endpoint name formats. Note that with the Coiote IoT Device Management platform, you will need to enter the endpoint name into the server UI first.
For a detailed guide on configuring and compiling the project (including cross-compiling), see Compiling client applications.
First, make sure all necessary submodules are downloaded and up-to-date:
git submodule update --init
After that, you have several options to compile the library.
The preferred way of building Anjay is to use CMake.
By default demo client compiles with DTLS enabled and uses mbedtls
as a DTLS provider,
but you may choose other DTLS backends currently supported by setting DTLS_BACKEND
in
a CMake invocation to one of the following DTLS backends: openssl
, mbedtls
or tinydtls
:
cmake . -DDTLS_BACKEND="mbedtls" && make -j
Or, if a lack of security (not recommended) is what you need for some reason:
cmake . -DDTLS_BACKEND="" && make -j
Compiled executables, including demo client, can be found in output/bin subdirectory.
To start the demo client:
# uses plain CoAP
./output/bin/demo --endpoint-name $(hostname) --server-uri coap://eu.iot.avsystem.cloud:5683
# uses DTLS in PSK mode, with PSK identity "foo" and secret key "bar" (hex-encoded)
./output/bin/demo --endpoint-name $(hostname) --server-uri coaps://eu.iot.avsystem.cloud:5684 --security-mode psk --identity 666f6f --key 626172
NOTE: When establishing a DTLS connection, the URI MUST use "coaps://". In NoSec mode (default), the URI MUST use "coap://".
LwM2M Client for Raspberry Pi, with a feature allowing for implementing LwM2M Objects in Python, is available in Svetovid-raspberry-client repository.
For some cases you may find it comfortable to use Docker image. In this case, the only dependency is Docker, which you can install with your favorite package manager. If Docker is already installed, you can clone the repo and build the Docker image:
git clone --recurse-submodules https://github.com/AVSystem/Anjay.git
cd Anjay
docker build --no-cache --tag anjay .
Then, you can launch the built image and run the demo client:
docker run -it anjay
./output/bin/demo -e $(hostname) -u coap://eu.iot.avsystem.cloud:5683
See LICENSE file.
Anjay LwM2M library comes with the option of full commercial support, provided by AVSystem.
The list of features available commercially is available here.
If you're interested in LwM2M Server, be sure to check out the Coiote IoT Device Management platform by AVSystem. It also includes the interoperability test module that you can use to test your LwM2M client implementation. Our automated tests and testing scenarios enable you to quickly check how interoperable your device is with LwM2M.
Contributions are welcome! See our contributing guide.
Make sure, both Doxygen and Sphinx are installed on your system, then type:
cmake . && make doc
the documentation will be available under output/doc/doxygen
and output/doc/sphinx
.