Difference between revisions of "Electronic Greeter (X02)"

From Microduino Wiki
Jump to: navigation, search
(Usage)
(Program)
Line 47: Line 47:
 
*Go to '''Tools > Port''' and select the available port
 
*Go to '''Tools > Port''' and select the available port
 
4. Upload the program by clicking on the '''right arrow icon''' on the top left of the window. Or under '''Sketch > Upload'''.
 
4. Upload the program by clicking on the '''right arrow icon''' on the top left of the window. Or under '''Sketch > Upload'''.
 +
 +
'''NOTE''': If not using the default Core module included in the kits, please follow the '''[[Selecting_board,_processor,_and_port|selecting the board and processor guide]]'''.
 
==Debugging==
 
==Debugging==
 
*Open the Serial monitor. Information on detecting the the Audio module (successfully or failed) and start / stop playing of music will be outputted.
 
*Open the Serial monitor. Information on detecting the the Audio module (successfully or failed) and start / stop playing of music will be outputted.

Revision as of 18:39, 5 April 2017

File:Electronic Greeter Project.jpg
Electronic Greeter Project Build

About

This project uses the PIR sensor to detect heat. If a heat signature is detected. Sound will play, such as a song or a sound byte. An addition, the LED Matrix will turn on. When there is no heat signature the sound will turn off. Along with the LED Matrix.

This project was designed for the second generation mCookie Maker kits (202 Advanced and 302 Expert kits).

Required Materials

  • 1 x mCookie Core
  • 1 x mBattery (202/302 Kit)
  • 1 x mCookie Sensor Hub
  • 1 x LED Matrix
  • 1 x Audio Pro Module
  • 1 x MicroSD Module
  • 1 x PIR Sensor
  • 1 x Sensor Cable
  • 1 x MicroSD Card
  • 2 x Speaker
  • 1 x MicroUSB Cable

Build

Sound File

  • There should be a MicroSD card and reader included in 202 and 302 kits.
  • Put an MP3 file onto the root of your MicroSD Card with the name a.mp3. This is the file this program looks to play when activated. It can be a sound effect or a song (such as Alan Walker's Fade).
  • Or download the a simple tone effect here: http://soundbible.com/grab.php?id=1815&type=mp3. Make sure to save it on the MicroSD card as a.mp3.

Assembly

NOTE: When connecting sensor wires, push on the plastic connector and not on the wires. Pushing on the wire can damage them.

  1. Connect the PIR Sensor to the Sensor Hub on Pin 6/7
  2. Connect the Two Speakers to the Audio Pro Module.
  3. Insert the MicroSD card with the a.mp3 file into the MicroSD Module.
  4. Create two stacks containing:
    1. (Bottom of Stack) MicroSD Module | Audio Pro Module | Sensor Hub (Top of Stack)
    2. (Bottom of Stack) Core | LED Matrix (Top of Stack)
  5. Stack the two stacks onto the mBattery
  6. Plug in the MicroUSB cable to the mBattery to a computer.

Program

1. Connect mCookie Core to the PC with the USB Cable. Open the Microduino IDE.

2. Copy and paste the code below and upload.

3. Select the board, processor and port:

  • Go to Tools > Board and select Microduino/mCookie-Core (328p)
  • Go to Tools > Processor and select Atmega328P16M,5V
  • Go to Tools > Port and select the available port

4. Upload the program by clicking on the right arrow icon on the top left of the window. Or under Sketch > Upload.

NOTE: If not using the default Core module included in the kits, please follow the selecting the board and processor guide.

Debugging

  • Open the Serial monitor. Information on detecting the the Audio module (successfully or failed) and start / stop playing of music will be outputted.

Tweaking

Variables can be edited to change the threshold / detection value for various functions to better fine tune to your environment.

userDef.h

DEBUG will enable debugging mode. Which outputs information to the Serial Port.

LED_BRIGHTNESS_* is brightness value of the (R)ed, (G)reen and (B)lue elements in the RGB LED.

  • Adjustable between 0 ~ 255
  • Default is 20

PLAY_ENTIRE_FILE if true, will play the entire MP3 file once the PIR is triggered.

  • Default is false

audio.h

NOTE: Some code is not utilized or functional for this specific example, such as playing multiple tracks and volume adjustment. These functions may be used in other project examples.

volume is the volume of the speaker outputs. The lower the value, the louder the sound. The higher the value, the quieter the sound.

  • Adjustable between 0 ~ 255
  • Default is 40

SONGS[NUM_SONGS] = {"a.mp3"};

  • Change the a.mp3 file name if want to use a different file name for the mp3 that is played.

Usage

Wave your hand in front of the PIR sensor and the MP3 should start playing and the LED Matrix will light up. The MP3 will play as long as motion is detected. The MP3 will pause once no motion is detected. The project can be configured to play the entire MP3 file once the sensor is trigger. Refer to the #Tweaking section for more information.