Build The Ultimate Ghostdetector v.2.1 / Rempod & Temperature Sensing DIY

Поділитися
Вставка
  • Опубліковано 7 кві 2022
  • I made a new Ghostdetector aka Rempod including temperature and barometric pressure sensing.
    This device permanently monitors temperature and air pressure an flashes if any of both suddenly changes. Additionally it generates an electromagnetic field that detects changes in capacitence around the device. If anything unusual triggers the device and surpasses a certain value the Ghostdetector v2.1 plays a creepy melody by magically cranking a music box that is mounted to the bottom of the frontplate.
    This video shows how i made this thing, however i am not calling it a tutorial as you may have differend parts or ideas how to build your own. I am a hobbyist, not an engineer, of course a professional would build this thing differently. All my skills in electronics, soldering design etc. are self learned so please be gentle about what i made wrong. The device is based onto two Arduinos and a Theremin kit i got me from Amazon.
    Here is a list of all the electronic components i have used for this build.
    2 Arduino Boards (UNO for testing / NANO for the build) amzn.to/3v739m2
    1 Music box amzn.to/37thukK
    1 6v Micro geared DC Motor amzn.to/3rbWOoq
    1 Theremin Kit amzn.to/3uvgqWR
    1 BMP-180 temperature/air pressure sensor amzn.to/3Kne3up
    1 LED Assortment (6xUV, 2xgreen, 1xblue, 1xred) amzn.to/3LQGqBw
    1 10k ohm resistor (Resistor set) amzn.to/3NS2VrT
    1 470 ohm resistor
    1 270 or 300 ohm resistor
    2 100 ohm resistor
    1 22 ohm resistor
    1 N4001 diode amzn.to/3jjqCuU
    1 BC547 / PN2222 transistor amzn.to/38DiZ0n
    1 Photodiode (LDR) amzn.to/3Jqe9Aa
    1 Potentiometer (i used a 100k ohm)
    1 Power switch amzn.to/3Kmlemx
    A detailed Schematic. the Arduino codes and the Layout to be cut with a K40 Laser and 3D printer can be downloaded on my Webpage in the Patreon section.
    / mancaveeffects
    By the way with this video i also launch my new Mancave effects Webpage, the WebCave!
    check it out: bit.ly/38qOJWi
    If you like what you see, please subscribe and ring the notification bell to get notified everytime i upload some new content!
    Join the Mancave Maker Vault at the new Discord Server:
    / discord
    Social Media Links:
    Facebook: / mancave.effects
    Instagram: / mancaveffects
    ManCave Effects Webpage with free downloads : bit.ly/2VAvdgX
    #MancaveEffects​ #Ghostdetector #Rempod
    Music by:
    Royalty Free Music from Epidemic Sound: goo.gl/jlJWJO
  • Наука та технологія

КОМЕНТАРІ • 25

  • @Suzie-vl1xx
    @Suzie-vl1xx Рік тому +1

    Absolutely beautiful-I love what you’ve made!! You’re very talented…I’d buy yours over anything mass produced🌻☺️👍

  • @eyecandie16
    @eyecandie16 Рік тому +1

    This is so cool!! I'm geeking out. 😅

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

    A massive thank You for sharing this information! Personaly i love the steampunk touch too, it fit's perfect with the ghosthunting theme!

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

      Thanks Vampi! I hope i inspired you to make your own! And don´t forget to put in holy water to keep away any evil spirits ;)

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

      @@MancaveEffects I will! :-)

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

    Love the case!
    There are some high frequency based motion detection boards available too, although they won't look quite as cool with their very short antennas.

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

    Superbe réalisation, félicitations pour tout le travail de design et d'intégration, en effet tu as du passer quelques nuits blanches. Tu devrais ouvrir une chaine Twitch et diffuser la construction ! C'est super intéressant de te voir à l’œuvre !

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

    Very cool project!

  • @DJ_Energy
    @DJ_Energy 2 місяці тому

    You are very talented. Are you still making/selling stuff? I'd be interested in testing/buying some 🙂

  • @jtmckay2116
    @jtmckay2116 Рік тому +2

    Build me some gear and send it to me to test in the field I've been looking for someone that's been wanting to build stuff for us to test in real life conditions! Please message me anytime great work it's gotta be some of the best looking handmade equipment I've seen

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

    I need this

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

    i would buy this

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

    This needs a Relative Humidity sensor to indicate between 20 and 30 RH. This is the range when static electricity occurs naturally. Static electricity provides natural power for spirits to draw from. Knowing this is happening means the spirits don't have to drain batteries because they have a long-term power source. Can you add this?

  • @dayatnight8553
    @dayatnight8553 Рік тому +1

    How can I get one?

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

    U don’t need to use 2 arduinos to measure the temperature difference, you can do that with 1, and use variables in the code to check if temperature rises or falls…

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

      I tried it for hours. Unfortunately my knowlege of programming are very limited and even when i made it work somewhat there where to many interferences that i decided to use two.

    • @2DAKE2
      @2DAKE2 Рік тому

      @@MancaveEffectsI’m a software engineer and I just got into electronics. I built some things on Tinkercad with temperature sensors and you have to create a global variable to store the initial temperature which you can get inside the setup() method. Then in the loop method (if you dont create a custom one) you can get the current temperature reading and compare it to the global variable you created. I think the commercial rem pods will alert to a temperature change if the temperature rises or falls +-5 degrees from the initial temperature. So in your code you could say something along the lines of: if (currentTemperature > initialTemperature + 5) {turn on LED or sound} and same thing for if the temperature drops: if (currentTemperature < initialTemperature - 5) {turn on LED or sound}
      If you hook up a button to the reset pin on the arduino you can hit that button and it will reset the temperature reading. Hopefully this helps!

    • @MancaveEffects
      @MancaveEffects  Рік тому +1

      @@2DAKE2 thanks for the input! I will get back to the project at one point 😎

  • @bekeycoconut9990
    @bekeycoconut9990 Рік тому +3

    Can you make it and sell it to us?

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

      They are usually not for sale however i do have a new model what is a Ghostradar scanner that scans a room continusely and displays it on a handheld reciever. Rasio range is a half mile and does also capture changes in temperature and humidity. For further informations contact me via email or Instagram.

  • @roseponochable
    @roseponochable 5 місяців тому

    Do u sell this device?

    • @MancaveEffects
      @MancaveEffects  5 місяців тому

      For now it is not for sale, however i am planing two new Ghostdetectors coming soon that will be build to sell.

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

    The looks are super unnecessary but those look sick as fuck. Looks like they came right out of ghostbusters!

  • @adwayne3377
    @adwayne3377 2 роки тому +2

    𝓟Ř𝔬𝓂𝔬𝐒ϻ