WioAirMonitor

WioAirMonitor is a smart device, able to monitor air quality and send collected data to cloud services via the MQTT protocol.     Part list SeeedStudio WioTerminal SeeedStudio Grove Laser Dust Sensor SeeedStudio Grove GPS Module Description WioAirMonitor, as the name suggests, it is built around the WioTerminal device from SeeedStudio. This device – compatible…

ESP32 (28) – MQTT and SSL

Security is a very important aspect for MQTT brokers. In a previous article you’ve already learned how to implement authentication and authorization. The weakness in that configuration was that credentials were transmitted in cleartext; it was therefore possible, for an attacker who can sniff the network traffic, to read and use them to impersonate a legitimate client. Today I’ll show…

MQTT – Security

In the IoT they often don’t give much importance to the security aspects of the communcation. Proof of this is that many of the latest DDOS (Distributed Denial of Service) attacks have been launched by hacked Internet-connected smart devices. In the previous posts, you learned how to configure mosquitto to receive messages published by clients and…

MQTT – Introduction

If two devices have to talk to each other, they must adopt the same protocol. In the past, I’ve already shown different types of communication, for example between Arduino and a C# program, Arduino and a website or Arduino and an NTP server. All those communications are point-to-point ones, that is between two actors. Today I’m instead going to introduce you…