mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
14 lines
241 B
C++
14 lines
241 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace esphome {
|
|
namespace hm3301 {
|
|
|
|
class AbstractAQICalculator {
|
|
public:
|
|
virtual uint16_t get_aqi(uint16_t pm2_5_value, uint16_t pm10_0_value) = 0;
|
|
};
|
|
|
|
} // namespace hm3301
|
|
} // namespace esphome
|