Burglar Alarm Using Raspberry Pi Pico

Поділитися
Вставка
  • Опубліковано 20 гру 2024

КОМЕНТАРІ •

  • @SukiYaki1904
    @SukiYaki1904 3 роки тому +3

    yes... its not working

  • @aswindas9092
    @aswindas9092 2 роки тому

    Hi have a req instead of PIR sensor and buzzer can you use sd card module ultrasonic sensor and make similar project but starts alarming by the MP3 file being stored in the sd card placed in sd card module

  • @MDNISH97
    @MDNISH97 3 роки тому +3

    my buzzer didnt make a loud noise.

  • @projectgaming_sohail2912
    @projectgaming_sohail2912 2 роки тому

    Salam walikum, may allah reward you sister; I used your idea for my major college project.
    Thanks!

  • @SteveGoodenough
    @SteveGoodenough 3 роки тому

    A nice demo, well explained but I watched as the buzzer made a loud noise in your video and mine doesn't :(

  • @edwardvalenzuela1583
    @edwardvalenzuela1583 3 роки тому +1

    Thank You for the information.

  • @pablozon3884
    @pablozon3884 2 роки тому +1

    Is the buzzer active or passive?

  • @Thisun_Keshawa
    @Thisun_Keshawa 2 роки тому

    I wrote the code..........everything is correct......but I get a syntax erron in line 11........I got it in a previous project of yours too...........can you help me with this..........

    • @ferdinandw.8952
      @ferdinandw.8952 Рік тому

      then your pico is dead... buy a new one. an PICO W to be exact

  • @madhumitharamakrishnan
    @madhumitharamakrishnan Рік тому

    Any one can explain me what the product name is ??

  • @rodneyyeo7744
    @rodneyyeo7744 3 роки тому +1

    Thanks for making my request come true :)

  • @maartenvanassenbergh5891
    @maartenvanassenbergh5891 3 роки тому +1

    I get an error message when I try to run it

    • @cytrontech
      @cytrontech  3 роки тому

      Hi. You may drop an email to support@cytron.io so we can help assist you further. Thanks:)

  • @falahoudinesaid6973
    @falahoudinesaid6973 3 роки тому

    good job but one question . what represente the number(50)?

    • @cytrontech
      @cytrontech  3 роки тому

      Its for loop with range :)

  • @digitalmarcel
    @digitalmarcel 2 роки тому

    could this play an mp3 instead of a buzzer sound?

  • @faizasyraf9518
    @faizasyraf9518 3 роки тому

    What kind of programming software

    • @cytrontech
      @cytrontech  3 роки тому

      Hi. I use Thonny Python IDE software. Thanks :)

  • @prernagokhale8719
    @prernagokhale8719 3 роки тому

    Can u tell y resistor is used?

  • @jerwaynemattcollera6361
    @jerwaynemattcollera6361 3 роки тому

    Hi i've watched one of your videos, home notification using telegram chatbot. I wish if you could make it on facebook messenger chatbot. Thank you!

    • @cytrontech
      @cytrontech  3 роки тому +1

      Hi. Thank you for your feedback. I'll make this on our next list to-do. Thanks :)

  • @lukasandresson3990
    @lukasandresson3990 2 роки тому

    Wow very much nice formation good alar rahmat semsormalirosa rosa hehe perehehe munieh fett munieh bre wallahi ring currybet och fråga

  • @scaramonga
    @scaramonga 3 роки тому

    Cool! Thank you very much x

  • @Godsloveisbetter
    @Godsloveisbetter 7 місяців тому

    Led works, buzzer dont

  • @limseehong
    @limseehong 3 роки тому

    Nice and easy

    • @cytrontech
      @cytrontech  3 роки тому

      Hi. I hope this is helpful 😊

    • @limseehong
      @limseehong 3 роки тому +1

      @@cytrontech I've done following your instructions. Thanks

  • @thomasao123
    @thomasao123 3 роки тому

    Here is the code (a bit modified to use the on-board LED and disabled buzzer):
    from machine import Pin
    from time import sleep
    sensor_pir = machine.Pin(28, Pin.IN)
    led = machine.Pin(25, Pin.OUT)
    # buzzer = machine.Pin(14, Pin.OUT)
    def pir_handler(pin):
    print("ALARM! Motion detected!")
    for i in range(50):
    led.toggle()
    # buzzer.toggle()
    utimee.sleep_ms(100)
    sensor_pir.irq(trigger=Pin.IRQ_RISING, handler=pir_handler)
    while True:
    led.toggle()
    sleep(5)