How to Manage Real-Time IoT Sensor Data in Redis

By Redis Labs - 2021-02-02

Description

Application developers look to Redis and RedisTimeSeries to work with real-time internet of things (IoT) sensor data—here’s how to make it work.

Summary

  • Thanks for Subscribing Imagine you’re an air-conditioner manufacturing company that sells millions of smart AC units to consumers.
  • Get your sensor working After wiring the sensors, we recommend running I2C detection with i2cdetect to verify that you see the device: The first module, bme680, allows you to easily write Python code that reads the humidity, temperature, and pressure from the sensor.
  • The _filter protects sensor readings against transient changes in conditions, e.g.
  • a door slamming that could cause the pressure to change momentarily, and the IIR filter removes these transient spiky values.

 

Topics

  1. Database (0.24)
  2. Backend (0.23)
  3. Management (0.07)

Similar Articles

Python and MySQL Database: A Practical Introduction

By realpython - 2021-01-22

In this tutorial, you'll learn how to connect your Python application with a MySQL database. You'll design a movie rating system and perform some common queries on it. You'll also see best practices a ...

Spring Data Neo4j - Developer Guides

By Neo4j Graph Database Platform - 2021-01-05

For Java developers who use the Spring Framework or Spring Boot and want to take advantage of reactive development principles, this guide introduces Spring integration through the Spring Data Neo4j pr ...