Kinda high??
I will add the PIR and then check before triggering.
Cleaned up the pc board layout, copied n pasted so I get 9 per sheet.
trying out using photo paper for the silkscreen .
using Pulsar system / laminate r for copper traces then applying the green TFF foil.
contemplating interconnecting several satellite units (PIR and transmitter only) with a base unit with the receiver and PIC etc.See my post FM Transmitter (need to learn trick for links within this site?)
Then making a unit to mount on a vehicle with a larger speaker or transducer.
not real clear about what constitutes a transducer vers a speaker. the unit needs to be weather proof.
any suggestions
redesigning the critter ridder for automotive use and working on pc board but can't figure out why I have R4??
could be left over from copy paste??
plan is to have unit trigger (turn on when car is started so no PIR or any other input trigger.
any reason why not just disconnect pin 1 , 8, and R4?
thinking a cheaper PIC would work but will Junebug be able to program ??
not like there is alot of code.
Junebug can program most flash PICs. See if it's on the list.
**broken link removed**
A cheap PIC is the 16F628 or smaller 8pin 12F629/675
Remember Swordfish BASIC is only for the 18F and there are no 8pin 18F PICs
But you can program the 16F & 12F (14bit core) with PICBASIC Pro
Just a simple question, I'm planning on getting a case for the junebug I just got on the way home, I haven't measured it and its not with me. What are its dimensions, or better yet, the standard case size its designed to fit?
Here's my junebug in construction, I just want to check one thing real quick
**broken link removed**
Is that part right above it there the inductor? and does it matter which way round it goes?
maybe I should look at going with C language?
Yo be80be that code you posted looks to easy??
what form of basic??
I keep getting E mails from a EDA cafe that has a coarse in C for $67
maybe take the plunge??
thanks be80be I may look at using that snippet if I go with a smaller chip.
just something about using a trial compiler??
In regard to changing languages or even compilers. You have only been at it a short while and changing now might be confusing. You said up front that you wanted to put this into production. We should have suggested a compiler that would not have so limited your chip choice.
Unless you are going to make more the a few hundred units I would stay with the 18F family, but look at finding the lowest price for the chip. I found the 18F1320 for
$2.62.
Look to see if there is an 18F that will work with the language you have coded but for less money. Note that popularity seems to have much to do with the price.
Mr deb That's the whole code It's PICBASIC PRO DEMO. It has built in commands for making sound that's the
Code:
FREQOUT
FREQOUT works best with a 20MHz oscillator. It can also work with a 10MHz oscillator and even at 4MHz, although it will start to get very hard to filter and be of fairly low amplitude. Any other frequency will cause FREQOUT to generate a frequency that is a ratio of the actual oscillator used and 20MHz.
FREQOUT is not supported on 12-bit core PICmicro MCUs due to RAM and stack constraints.
' Send 1KHz tone on Pin1 for 2 seconds
FREQOUT PORTB.1,2000,1000
will look for a cheaper 18F as the code is very short.
Have to agree that changing languages may get confusing.
I have to order some 5v LM2937 as well as 2 - 12v LM2937's anyway
no use reinventing the wheel when I already have the wheel.
this PIC pro basic sounds tooo easy??