Loading...
  Show Posts
Pages: 1 ... 331 332 [333] 334 335 ... 366
4981  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Voltage Regulators and Capacitors (LM317) on: January 09, 2009, 06:48:40 pm
Normally when you power a "board", the board itself will have some bypass caps to handle some surges from the individual chips on the board.  There's usually a moderately large cap for the whole board, at least one small cap (~100nF) for each chip, and maybe a mid-sized cap for each "handful" of chips.

As a "protoboard supply", I suspect that the sparkfun schematic is providing some of these bypass caps "for the board", beyond what is (or might be) needed by the regulator circuit itself...

4982  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: what is most popular project box size? on: January 08, 2009, 05:15:33 am
Altoids box.  Only tall enough for arduino+shield (3cm?)
4983  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: eval(); Possible? on: January 08, 2009, 05:17:39 am
I wrote the equivalent of "eval" for compiled fortran, a long time ago.
You can fit an interpreter in an arduino, have it eval code out of eeprom or flash or strings, and still have room for sketches as well, I think...

But it's not in there by default, and it wouldn't be an "easy" project!
4984  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: No IC Socket on Arduino Single-Sided Serial Board on: December 31, 2008, 05:02:19 am
It's pretty difficult to design a PCB that will accept a 28pin DIP cpu and not have room for a standard 28pin socket.  The people who design sockets understand tight spacing pretty well...
4985  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Like EAGLE CadSoft & Cookies. then click me! on: January 04, 2009, 10:56:12 pm
I have an (untested) eagle layout for the RBBB, since there's the big announcement:
Quote
Unlike other Modern Device Products, the schematic and design for the RBBB are released into the public domain.

But I wouldn't feel particularly comfortable doing the same thing to the BBB.

I should put a bunch of text on it before I release it anywhere, though.
4986  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Where to buy a Servo? on: January 03, 2009, 01:34:14 am
locally, you can probably buy servo motors at hobby stores that sell radio-controlled planes and cars and things.  Be prepared for a bit of sticker shock; even radioshack doesn't charge $15 for a little DC motor!  (however, these are motors with a built-in gear chain and electronics, and once you add gears, even the surplus electronics dealers dump the price up quite a lot. $15 would be a pretty good price for a standard-sized servo from a "brick and mortar" hobby store.  You can do better online, especially buying direct from china, but...)  There not normally carried by electronics component dealers, as they're pretty much a "consumer item."  It's only recently that some of the dealers (especially in robotics) have been thinking "hey, why can't we sell high-profit-margin consumer items as well as incomprehensible components?"
4987  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: where to find BoArduino parts list and schematics? on: January 01, 2009, 10:42:36 pm
For the adafruit kits, from the order page click the link to the project's individual web page, and the then "downloads" to find eagle schematics/etc.  Parts lists are usually on the first couple pages of the "Make it" link from the project page.

For BoArduino:
  http://www.ladyada.net/make/boarduino/download.html
  http://www.ladyada.net/make/boarduino/dc-parts.html
  http://www.ladyada.net/make/boarduino/usb-parts.html
4988  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Arduino in Proffessional Use on: December 31, 2008, 07:19:53 pm
Quote
...massive repository...
I'm not too fond of replacing "writing code" with "searching for  code that might already be written and modifying it."  Depending on complexity, amount of testing, and so on.
Quote
I think more of the library code should depend on others (inheritance, etc.)
 Ah.  Dependency hell.  Just like trying to run compile open source linux apps in a new environment.

(just playing devil's advocate, you know.)
4989  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Arduino in Proffessional Use on: December 31, 2008, 05:00:39 am
An Arudino is a fine "quick prototyping" environment, but I really don't think that the libraries are extensive enough to provide THAT much of a head start to a commercial application (compared to, say, the complete libraries provided with avr-gcc, or the probably-more-extensive libraries provided with a commercial C compiler.)   The "environment" isn't much up to "professional" level either (note: I understand and even appreciate that it's not supposed to be.)  (no debugging, no source control, poor error reporting, lack of assorted types of analysis, etc, etc.)


What might be nice is being able to hire from a large crop of people with "prior experience" programming arduinos (compared to any other particular microcontroller/compiler combination.)  I've seen companies give up on one or more rather obscure architectures just because it was nearly impossible to get people to code for them.

To really catch on, the arduino libraries would have be more standardized to run on more varied hardware, which might be a bit tough given the relative scarcity (I think) of C++ compilers (vs standard C.)
4990  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Serial.read question on: December 31, 2008, 01:13:26 am
Serial.read() returns an "int", and therefore prints the decimal representation of the ascii code for whatever character you typed.
To get echoing, you should do:
Code:
Serial.print(Serial.read(), BYTE);
4991  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Tri color LEDs... What are they? on: November 17, 2008, 08:25:50 pm
Be careful; terminology is ambiguous.
An LED can contain one, two, or three light-emitting chips.
If it has one chip, it has one color.
Two chips of different colors can have three colors (one chip on, other chip on, or both chips on), and these are SOMETIMES called "tri-color."  The chips can be connected with a common cathode or anode (three-lead packages), or in "inverse parallel" (current in one direction for one color chip, the other direction for the other, or AC for both.)
A three chip LED usually has red, green, and blue chips, and can theoretically generate any color.  Full "RGB" leds will have four leads so that you can control each chip independently.  However, there are also three-chip LEDs with internal circuitry to sequence through multiple colors automatically.  These will only have two leads, and you have no control over how they behave.
4992  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Bare Bones Board +5V and GND on: December 23, 2008, 02:32:34 am
There's a long discusion on J1/J2 in the instructions.  Does it clear up your question?
4993  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Microcontrollers vs. Logic circuits on: December 20, 2008, 02:50:07 pm
No one said the microcontroller concept is new, but to be the "new 555", the microcontroller has to reach a certain point WRT price, size, ease-of-use, and re-usability.    Sub $0.50 and 6 pins are both things that have happened within the last 5 years or so...
4994  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Microcontrollers vs. Logic circuits on: December 20, 2008, 12:05:13 am
There's even a 6-pin SOT-23 PIC chip with 4 IOs.
For a while the Atmel ATtiny11 was "king of cheap", selling for $0.25 each in moderate quantity (something like 0.32 in 100 lots from digikey.)  Alas, they've discontinued the part :-(

However, your "new 555" comment serves to point out some of the weaknesses of modern microcontrollers as well.  The original 555 runs off supplies from 4.5 to 16V, and supplies (or sinks) up to 200mA of current on its output pin.  The inputs are as tough as nails.  You won't find that sort of ... sturdiness in a microcontroller.   There was an interesting discussion on Instructables about designing a digital replacement for antique door chime controllers (which are electromechanical; spring loaded solenoids with oil-filled dampers and such.)  By the time you interface to the ~24VAC on inputs and outputs and supply (your standard "doorbell transformer", you've added a LOT of expense, and your circuit board size is creeping up to where it's BIGGER than the original mechanical monster.  It was ... annoying.
4995  Forum 2005-2010 (read only) / Frequently-Asked Questions / Re: Microcontrollers vs. Logic circuits on: December 19, 2008, 06:41:15 pm
No, you're not crazy.  Logic mostly survives in those cases where a CPU isn't fast enough, and even then it tends to be implemented in FPGAs and similar instead of with individual gates like 74xx logic.
Pages: 1 ... 331 332 [333] 334 335 ... 366