PIR portable Alarm for Fishing, Camping or more!

PIR portable Alarm for Fishing, Camping or more!

prusaprinters

<p>Video: <a href="https://youtu.be/m-AhK6Sv75c">https://youtu.be/m-AhK6Sv75c</a></p><p>this is a PIR alarm inspired by product sold for fishing or camping.<br>it will alert you with sound and flashing LED lights.<br>powered by a 9V battery it is portable and independent from other things.<br>included is a file to print a universal adapter to be glued on the back, it accept a 8mm rod, strap(2cm wide) or a cord/rope up to 5mm.</p><p>this can be installed at your back when you are fishing to warn you of something coming close, or to warn in case of a thief coming when you are sleeping. very practical for fishing or camping in remote place.</p><p>this item is designed for those component:<br>-digispark ATTINY85 USB module (or other small arduino)<br>-9V battery + connector<br>-round power switch<br>-PIR module<br>-piezo buzzer (12mm)<br>-1 powerful 5mm led installed on the back side</p><p>note: Version 3 has only 1indicator LED and no more "Power" led. this is to reduce the clutter inside. i also extended the bottom 10mm so you can use a battery connector on a dangling wire instead of trying to install and glue a connector far away inside the case. my prototype V1 with 2led and a "power" led took me 5hours to assemble. it was very had to try and cram everything inside. V3 should be much better and versatile.</p><p>arduino code:</p><p>//pin<br>const int buzzerPin = 2;<br>const int ledPin = 1;<br>const int motionPin = 0;<br>int sensorValue = LOW;</p><p>void setup()<br>{<br>pinMode(ledPin,OUTPUT);<br>pinMode(buzzerPin,OUTPUT);<br>pinMode(motionPin,INPUT);;<br>digitalWrite(ledPin, LOW);<br>digitalWrite(buzzerPin, LOW);<br>}</p><p>void loop()<br>{<br>sensorValue = digitalRead(motionPin);<br>if ( sensorValue == HIGH) {<br>tone(buzzerPin, 1200);<br>digitalWrite(ledPin, HIGH);<br>delay(100);<br>noTone(buzzerPin);<br>digitalWrite(ledPin, LOW);<br>delay(100);<br>}<br>else {<br>noTone(buzzerPin);<br>digitalWrite(ledPin, LOW);<br>}<br>}</p>

Download Model from prusaprinters

With this file you will be able to print PIR portable Alarm for Fishing, Camping or more! with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on PIR portable Alarm for Fishing, Camping or more!.