Skip to content

Instantly share code, notes, and snippets.

View rishabmehta7's full-sized avatar
🤪

Rishab Mehta rishabmehta7

🤪
View GitHub Profile
@quazzie
quazzie / ifan02.h
Last active April 12, 2021 17:54
esphome ifan02 cookbook info
#include "esphome.h"
using namespace esphome;
class IFan02Output : public Component, public FloatOutput {
public:
void write_state(float state) override {
if (state < 0.3) {
// OFF
digitalWrite(5, LOW);
digitalWrite(4, LOW);