ESP8266 + Sensor Push Notification on Smartphone

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ธ.ค. 2019
  • Tutorial on how to send push notification on smartphone, triggered by a sensor. This project features the ESP8266 NodeMCU, a soil moisture sensor, Pushingbox and Pushbullet apps.

ความคิดเห็น • 20

  • @matthewkelly2797
    @matthewkelly2797 3 ปีที่แล้ว

    Where did you buy this device? I think it could potentially pair with my product the KEL2020 and detect arrival sensor for Smart Phone push notifications.

  • @anthward1972
    @anthward1972 2 ปีที่แล้ว

    Is there an equivalent for use on iPhone or iOS?

  • @n1kkri
    @n1kkri 3 ปีที่แล้ว

    I'm looking for a easy project like this except I just want a button or switch closure to send off the Alert message. If I short the 2 wires connected to the ESP8266 will it send me the alert message? will this project work with a ESP32s ? Thanks

  • @danilogabriel6628
    @danilogabriel6628 9 หลายเดือนก่อน +1

    where we can find the sketch?

  • @yehudabillet8145
    @yehudabillet8145 4 ปีที่แล้ว

    is push bullet not on the app store anymore, because i cant find it

  • @saitejanamballa5972
    @saitejanamballa5972 ปีที่แล้ว +2

    Could you please give me the code?
    And also the components list

  • @Jdmark3523
    @Jdmark3523 3 ปีที่แล้ว +1

    My Serial log says : "connection failed"....everything is correct...thnks a lot!

  • @vitovalentinoprasetyoputro4552
    @vitovalentinoprasetyoputro4552 11 หลายเดือนก่อน +1

    how i can load the earlier code, where you can get that? does anybody can help me

  • @raoufmhadhebi9395
    @raoufmhadhebi9395 ปีที่แล้ว

    Thanks

  • @SuNnY-gr4gw
    @SuNnY-gr4gw 3 ปีที่แล้ว

    Sir i need a help

  • @sedatkzltoprak5074
    @sedatkzltoprak5074 3 ปีที่แล้ว +3

    Hello, teacher.
    I would like to ask you a question. I'm designing a security system with esp8266 module. I want to alert my mobile phone when the system is active. How can I do this, can you help?

    • @renax187
      @renax187 3 ปีที่แล้ว

      Make a variable that changes his value after the alarm is activated and then you can make a notification if the alarm is on or off

    • @PlayDataYT
      @PlayDataYT 3 ปีที่แล้ว

      @@renax187 How can I make this varible?

  • @SuNnY-gr4gw
    @SuNnY-gr4gw 3 ปีที่แล้ว

    I am stuck on sending notification from esp 8266 to andriod application

  • @paulkossaify
    @paulkossaify 4 ปีที่แล้ว +2

    is it possible to have the source code? i am trying to make a multi location temperature notifications

    • @teachmemicrocontrollers
      @teachmemicrocontrollers  4 ปีที่แล้ว +5

      Paul Kossaify github.com/kurimawxx00/sensor-to-push-notification/blob/master/sensor-to-push-notification.ino

  • @tanjimahmed213
    @tanjimahmed213 2 ปีที่แล้ว +2

    where is the code

  • @SuNnY-gr4gw
    @SuNnY-gr4gw 3 ปีที่แล้ว

    Plz help me out

  • @beach7912
    @beach7912 ปีที่แล้ว

    HELP ME PLEASE... with this sketch it continuously sends the notification, I would need it to happen only when a button connected to the nodemcu is pressed, but I don't find a suitable tutorial. Can someone help me? thank you.

    • @ChazzBot-nh5rj
      @ChazzBot-nh5rj ปีที่แล้ว +1

      const int n = [however many hours you want between notifications]
      void loop(){
      if(your conditional statement here){
      [Code that sends a notification here]
      delay(n*1000*3600); // minimum n hours between notifications
      }
      }