A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
MMM-AwairLocal: module that pulls air quality data from an Awair device using its Local API (no cloud dependency)
-
Github: https://github.com/ifnull/MMM-AwairLocal
✅ Pulls data from Awair’s Local API (no cloud required)
✅ Displays air quality score, temperature, humidity, CO₂, VOC, and PM2.5
✅ Supports Celsius & Fahrenheit for temperature display
✅ Allows multiple Awair devices with configurable names
✅ Auto-refreshes at a configurable intervalExample Config Options
{ module: "MMM-AwairLocal", position: "top_right", // Adjust as needed config: { awairIp: "192.168.1.2", // Local IP of your Awair device deviceName: "Living Room Awair", // Custom name for the device updateInterval: 60000, // Refresh data every 60 seconds showScore: true, // Display air quality score showTemp: true, // Display temperature showHumidity: true, // Display humidity showCO2: true, // Display CO₂ levels showVOC: true, // Display VOC levels showPM25: true, // Display PM2.5 levels tempUnit: "F" // "C" for Celsius, "F" for Fahrenheit } }