ichatz / riotos-apps

Collection of hands-on examples presenting various features of RIOT OS for developing IoT applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RIOT-OS Applications

This repository provides a collection of applications based on the RIOT operating system. The applications showcase specific functionalities of the RIOT operating system and how to build an IoT platform using an STM32 Nucleo-64 development board.

The applications are used as part of the hands-on activities of the Internet of Things course for the MSc in Computer Engineering, of the Sapienza University of Rome (in English)

List of Applications

Basic Networking

  • IPv6 Networking via USB - The application demonstrates how to network using the IPv6 stack over a serial USB device through the ETHOS and UHCP tools of RIOT OS.
    • The application provides step by step instructions on how to setup a new RIOT application.
    • The application use multi-threading to implement a UDP socket server.

Reading Sensors

  • Measuring Ambient Light Intensity - The application demonstrates how to use an analog sensor through the ADC module.
    • The application provides some insights on the inner functionality of the XTIMER module of RIOT OS.
    • Some details are also provided on how IoT boards are defined in RIOT OS as part of the platform-independent layers.
    • A video tutorial is available on YouTube.
  • Measuring Ambient Temperature and Humidity - The application demonstrates how to use a digital sensor through the provided RIOT driver.

Controlling Devices

  • External LED Example - The application demonstrates how to control an external LED through the GPIO device peripheral of RIOT OS.
    • The application provides some insights on identifying the GPIO port and pin number through the MCU's developer manual.
    • A project on hackster.io is also available.
  • Control High-voltage Devices using an SSD Relay Module - The application demonstrates how to control an 220V Lighbulb by driving an SSD relay module using the GPIO device peripheral of RIOT OS.
    • The application provides some insights on identifying the GPIO port and pin number through the MCU's developer manual.
    • The application requires to provide IPv6 Networking via USB.
    • A project on hackster.io is also available.
  • Displaying Messages on a TFT LCD received via MQTT-S - The application demonstrates how to use a TFT LCD through the provided RIOT package to display messages received from an MQTT topic.
    • The application provides some insights on how to connect devices via SPI.
    • The application demonstrates how RIOT can provide network connectivity via USB to connect to connect to a MQTT-S broker.
    • The application requires to provide IPv6 Networking via USB.

STM32 Nucleo-64 F401RE development board

The STM32 Nucleo-64 F401RE is a low-cost development board that utilizes an ARM Cortex-M processor to power various combinations of performance and power consumption. The STM32 Nucleo board supports the ARDUINO® Uno V3 connectivity headers and the ST morpho headers allowing the easy expansion of the functionality with a wide choice of specialized shields.

How to use the RIOT operating system

The RIOT is an open-source microkernel-based operating system designed for a very low memory and energy footprint suitable for embedded devices that depend on real-time capabilities. RIOT provides out-of-the-box support for a very wide low-power wireless and communication stacks, making it an ideal choice to build Internet of Things (IoT) platforms.

To build and use the applications you need to make sure that you have a local copy of the RIOT main code. For detailed instructions on how to clone and build the RIOT OS follow the instructions in the RIOT repository and the READMEs within the respective application directory.

About

Collection of hands-on examples presenting various features of RIOT OS for developing IoT applications.

License:MIT License


Languages

Language:C 51.4%Language:Jupyter Notebook 33.0%Language:TeX 11.9%Language:Makefile 3.7%