|
3304
|
Using Arduino / Project Guidance / Re: Detect VGA signal
|
on: November 26, 2011, 05:51:00 pm
|
I have no idea how to implement ic2. do you have a quick down and dirty schematic / code example? also this wouldn't interfere with the signal transmission?
I'd worry more about interfering with the controlled impedance of the VGA's signal lines than the relatively slow I2C bus. You don't have to actively participate, just watch for the data or clock signal to toggle. That will tell you the monitor is trying to talk to the projector.
|
|
|
|
|
3308
|
Using Arduino / Project Guidance / Re: Hardware for the beginner.
|
on: November 25, 2011, 10:24:43 am
|
(As a side note, can the Arduino be coded with VHDL? I've barely studied the stuff, but it'll be on my final exam and it'd be great to mess with it at home on my own hardware)
No, VHDL is a hardware description language. The Arduino is a microcontroller which is a set hardware implementation. In theory, you could use VHDL to describe the ATmega328s hardware, but you would still need to write software to do anything with it. (this is how ARM processors get embedded into ASICs and FPGAs).
|
|
|
|
|
3309
|
General Category / General Discussion / Bootloader and FLASH / PROGMEM
|
on: November 25, 2011, 09:58:24 am
|
|
Often the answer to huge variable constants is moving them to PROGMEM. Sometimes people then ask if they can modify the data at runtime. Ignoring for just a moment if this should be done, I have wondered what is the bootloader doing (or enabling) at allows it to write to PROGMEM that other running programs can't?
|
|
|
|
|
3312
|
Using Arduino / General Electronics / Re: Breadboard to PCB
|
on: November 24, 2011, 10:58:50 pm
|
|
SInce this subject never comes up and google doesn't have any results either, let me add that I've been using Seeedstudio since year 2009. Very happy with the quality of the boards, options, and price. They only test 5 of the 10 boards, but I have yet to find a failed one.
My only dislike is all boards have to be retangular. Some services will route shapes for you, Seeed does not.
|
|
|
|
|
3313
|
Using Arduino / General Electronics / Re: Capacitor Sizing
|
on: November 24, 2011, 10:51:25 pm
|
I'm also thinking: How do car manufacturers do it? They have heaps of crap running that probably utilises 5V.. Clocks, radios, etc. - Voltage regulator to reduce to 5V - but then these continually waste power through the drop.
Heaps? Look at the size of your car battery and then look at the size of a AA. Notice a difference? Leave a car sitting for 2 or 3 weeks, it probably won't start.
|
|
|
|
|
3314
|
Using Arduino / Programming Questions / Re: Virtual Latching Relay.
|
on: November 24, 2011, 12:18:39 am
|
|
A good start is to post the code you have now. State what works, and what doesn't. In describing what doesnt it is useful to explain what happened versus what you expected.
That said, why are you using the analog inputs to read a high or low? That sounds very digital.
|
|
|
|
|