Wemos Mini + Node Red + Blynk + Home Assistant + Carbon Monoxide MQ-7 | Tutorial # 37

Поделиться
HTML-код
  • Опубликовано: 22 окт 2024

Комментарии • 30

  • @riggsron
    @riggsron 5 лет назад +2

    I know there are lots of vids out there explaining HAS, MQTT and NodeRed but for some reason, I understand it better here and your code works for me. Thanks from a struggling (but determined) old guy

  • @synco1985
    @synco1985 3 года назад

    man, I have waited so long about this! Thank you so much!

  • @markedtky
    @markedtky Год назад

    Acording to the datasheet aren't you supposed to heat it up for a certain period of time before you start taking your reading?

  • @Elettronica-xt7nm
    @Elettronica-xt7nm 5 лет назад

    Beautiful project I congratulate you. I wanted to ask if it was possible to operate a relay in order to give an acoustic signal to exceed the limits of carbon monoxide in the air. Thank you very much for your attention I await your news.

    • @netmedias7657
      @netmedias7657  5 лет назад

      Elettronica 2000 Yes, it is very easy to do that. Add similar code to sketch to achieve this.
      After "float co= mq7.getPPM();" line add follwoing code.
      if(co>=){
      //set relay GPIO to high
      }else{
      //set relay GPIO to low
      }

  • @rodrigomunoz4757
    @rodrigomunoz4757 4 года назад

    Hi! great video! Do you have some similar for Mq-6?

  • @madhankumarm9517
    @madhankumarm9517 4 года назад

    hi. i am curious to know if using WeMos mini instead of NodeMCU for home automation is better in terms of cost and simplicity?

    • @netmedias7657
      @netmedias7657  3 года назад

      I prefer WeMos mini due to its form factor

  • @neail5466
    @neail5466 2 года назад

    hey man can't HA directly send notification on HA app?

  • @mr-engin3er
    @mr-engin3er 5 лет назад

    Make a project with raspberry Pi as a hub. And multiple Arduino controlling relay. And communication with xbee. It will be a great project

  • @easwaran83
    @easwaran83 5 лет назад

    Is Blynk mandatory for this to work? Say I don't want my data go over Internet. Just home assistant. Node red mqtt should work with same sketch? Please clarify

    • @notofinterest
      @notofinterest 5 лет назад

      Its not necessary. Just modify your arduino sketch, enter the credentials for your mqtt server and wifi. On home assistant access to the same mqtt server, and make a sensor out of the mqtt topic -> done. I even dont understand why to use blynk or node red...

    • @netmedias7657
      @netmedias7657  5 лет назад +2

      Christian Fuchs is right. Blynk not required. I only did it since some folks requested a tutorial on it.
      Just remove the following lines from sketch to use it without Blynk.
      #define BLYNK_PRINT Serial
      #include
      Blynk.begin(auth, ssid, password);
      timer.setInterval(1000L, myTimerEvent);
      Blynk.virtualWrite(V5, mq7.getPPM());
      Blynk.run();
      timer.run(); // Initiates BlynkTimer

  • @karthick5380
    @karthick5380 2 года назад

    Can i use ESP8266 Board ?

  • @waweyonor6052
    @waweyonor6052 5 лет назад

    Hello Sir. Mq7 library can be used for other mq sensors ?

  • @alaealami561
    @alaealami561 5 лет назад

    Can you make a video about Alexa control Linear Actuator please

  • @shaunwhiteley3544
    @shaunwhiteley3544 5 лет назад

    Thanks, another great tutorial. Have you seen MySensors.org website? Some great info on setting up sensors, integrates into Home Assistant as well. Cheers

    • @netmedias7657
      @netmedias7657  5 лет назад

      Shaun Whiteley Thank you. I will take a look.

  • @joshuaamieldavocol522
    @joshuaamieldavocol522 5 лет назад

    Will this work with a nodemcu with esp8266 builtin?

  • @xuquangtrum331
    @xuquangtrum331 5 лет назад

    I can used sonoff tasmota replace wemos d1 ?

    • @netmedias7657
      @netmedias7657  5 лет назад

      Yes, but you will need to change the code a bit.

    • @xuquangtrum331
      @xuquangtrum331 5 лет назад

      @@netmedias7657 thanks, Can you do the tutorial? because it is very popular and cheap

  • @nubslowpoke1355
    @nubslowpoke1355 5 лет назад

    Прошу Вас дополнить этот проект звуковым сигналом (Buzzer) и сигнальными светодиодами.
    I ask you to supplement this project with a sound signal (Buzzer) and signaling LEDs.

    • @netmedias7657
      @netmedias7657  5 лет назад

      Nub Slowpoke
      I will do it in next tutorial. It will be a while thanks