www.micro-examples.com : PicoBat

Views
From www.micro-examples.com
Jump to: navigation, search
PicoBat running on a bread board

An ultrasonic bat detector with only 3 components !

Contents

 [hide

PicoBat : a PIC-based simple and cheap ultrasonic detector

A short video clip is sometimes better than a long explanation :


The idea of this circuit is to hack the PIC oscillator circuit, by replacing the crystal by a piezo sensor : the frequency of the oscillator then depends on ultrasounds.

Oscillator frequency is then divided by 4 by the PIC, and pushed into a piezo speaker.

It shares the same idea as PicoDetector, the metal detector.

Circuit Schematic

PicoBat-circuit-schematic.png

  • The ultrasonic piezo receiver replaces resistor in PIC oscillator circuit
  • SP1 is any piezo speaker you have

C Source code

/*
 *******************************************************************************
 * picoBAT : an ultra simple ultrasonic bat detector
 *******************************************************************************
 *
 * Author : Bruno Gavand, February 2009
 * see more details on http://www.micro-examples.com/
 *
 * source code for mikro C compiler V8.2
 * feel free to use this code at your own risks
 *
 * target : PIC12
 *
 * PIC PIN Assignemnt :
 *
 * GP0 GP1 : piezo speaker
 * GP5 : ultrasonic transducer receiver
 *
 *******************************************************************************
 */

void    main()
        {
        /*
         * configure GPIO as digital port
         */
        CMCON0 = 7 ;
        ANSEL = 0 ;

        TRISIO = 0 ;
        GPIO = 0b01 ;

        for(;;)
                {
                /*
                 * toggles speaker outputs
                 */
                GPIO ^= 0b11 ;
                }
        }

No, there is no mistake, full source code is above !

Download project

Download PicoBat-project.zip file for mikroC : File:PicoBat-project.zip

Includes :

  • mikroC PRO project files for PIC12F683, should work also with most of PIC
  • picoBat C source code
  • picoBat .HEX files

Discussion and comments

Current user rating: 75 (60 votes)
You didn't vote on this yet.

 75%

gordy7
(81 months ago)
Reply
Here is my Basic main code.
Used GCBasic, 12F1840, ultrasonic transmitter (I had lying around).
Maybe more sensitive if I had an ultrasonic receiver.

;Chip Settings
#chip 12F1840
#config OSC=ECL, FCMEN=OFF
'
Start:
'
set wpua5 = 0 'PU off
' ultrasonic sensor on PA5
'
dir porta.0 out ' piezo
dir porta.1 out ' piezo
dir porta.2 out ' LED for program test
'
set porta.0 0
set porta.1 1
set porta.2 0
'
Do Forever
    lata = lata xor 0b111
loop
'
gordy7
(81 months ago)
Reply
Very nice project.
I am going to give it a go!
The code appears ok... But I am not a 'C' guy.
What does seem missing are a couple of 12F683 configuration items... Maybe preset in the author's setup.
I think that something like the following needs to be included:
oscon = 00 Clock source determine be Fosc
config (word) - 00,03 Fosc = EC Ext clock
.
(1 year ago)
Reply
.
Rachel
(1 year ago)
Reply
Hi! I'm trying to use this code to divide ultrasonic noise by 4 to put it into the audible range. I followed the code a circuit, but it still isn't outputting the reduced frequency. Has anyone else had this issue or have any suggestions?
rekha varma
(1 year ago)
Reply
what is ultrasonic piezo receiver replaces resistor in PIC oscillator circuit
Lozza
(1 year ago)
Reply
Hi Bruno, Very succinct but how sensitive is it? Can it pick up weak bat signals.
meera nandhan
(1 year ago)
Reply
what you use in ultrasonic piezo receiver replaces resistor in PIC oscillator circuit
4S7
(1 year ago)
Reply
it's good. Nice work. Very useful.
Frans
(1 year ago)
Reply
@Bruno,

Is it also possible to use a PIC16F628A and can you fixe the source code for it in picbasic please.
Let me now what is possible.
Many thanks.
Frans
Maddy
(1 year ago)
Reply
Is it possible to get Part number for the components? For Receiver and Speaker?
HallMark
(1 year ago)
Reply
Interesting&|60;! Have you ever tested this with actual BATs sound?

Do you think if we use an amplifier then we get some good quality of sound?
...

Navigation
Others
Donation
You can help :
with Paypal
Share
Personal tools
www.micro-examples.com Electronic circuits with micro-controllers, projects with source code examples