Show Posts
|
|
Pages: 1 2 [3] 4 5 ... 173
|
|
32
|
Using Arduino / General Electronics / Re: Land Pattern doesn't match chip?
|
on: May 18, 2013, 05:14:22 pm
|
|
Are you looking at the right one? On p25, second row, right seems to be the correct pattern, with 0.95 spacing. I would not think 0.8 spacing would be right. Nothing says the lands on the board have to be the same width as the pads on the chip. I don't see why the second one down on the right wouldn't work, depending on soldering method. OTOH, there's no reason not to design your own land pattern that's more suitable to your methods.
|
|
|
|
|
33
|
Using Arduino / General Electronics / Re: Geezer electronics or a short history lesson...
|
on: May 17, 2013, 02:14:08 pm
|
I wrote COBOL and GMAP for a few years then switched to all assembler and systems programming. I wrote some kind of cheesy comm adapter to get SNA and CICS to talk to each other if I recall correctly, it involved a Level 6 but my code ran on the mainframe. Wrote tons of GMAP for a software company you probably know of since there weren't that many third party systems software vendors for Honeywell. We did a Tape Management System, a file utility package and a production job scheduler amongst some other things. I wrote some filsys modifications to add some features to MME GEFSYE that GE left out. Fun stuff, I really miss GCOS.
I debugged COBOL for the applications guys but never wrote any  Enjoyed GMAP, wrote a lot of that. My undergrad thesis was basically improvement/mods to filsys saves and restores. GCOS = God's Chosen Operating System 
|
|
|
|
|
34
|
Using Arduino / General Electronics / Re: Geezer electronics or a short history lesson...
|
on: May 17, 2013, 11:44:04 am
|
I was still using a mainframe with actual core memory in the early to mid 1980s.
Yeah, me too in the early 80's; Honeywell. Cut my teeth on the Series 6000, DPS-8, etc., with the GCOS O/S. Took care of the FEP software for a while, NPS mostly. Did some custom stuff and extensions. Getting dissimilar machines to communicate was quite a challenge back then. Come to think of it, getting similar machines to talk wasn't much easier.
|
|
|
|
|
35
|
Using Arduino / Installation & Troubleshooting / Re: Any way to test an Arduino Pro Mini?
|
on: May 16, 2013, 07:57:45 pm
|
How was the 9V battery connected, exactly? To which pin? 1. Is there any way to test the board to see if it has been damaged? So far I haven't been able to find any instructions on how to do that.
I'd measure current consumption for starters. I haven't measured a Pro Mini myself, but I'd expect 12-15mA with nothing connected to it. If that looked OK, I'd try an ICSP programmer. 2. Is this a known issue that letting a battery run down might create a problem?
Not that I'm aware. Also just noted the chip seems to get quite hot, which I never noticed before.
That is a bad sign. Is this with nothing else connected to the Pro Mini?
|
|
|
|
|
41
|
Using Arduino / Programming Questions / Re: Can the DS3231 RTC calculate the Day of Week based on the Date set?
|
on: May 14, 2013, 12:00:59 pm
|
Just to expand a bit on what Riva said, the DS3231 has a register (0x03) that tracks DoW as a number between 1 and 7. It increments at midnight and rolls back to 1 after 7. It's up to the user to decide which day corresponds to which value and set it correctly. Personally, I usually use the Time library which does the calculation. Set the time and date, and it calculates the correct DoW. When using the Time library with an RTC, the RTC's DoW register is irrelevant (but not, of course, the date and time registers).
|
|
|
|
|
42
|
Using Arduino / Project Guidance / Re: AC Dimmer with PR36MF2xNSZ
|
on: May 11, 2013, 08:55:12 pm
|
Ok, found PR36MF12NSZF. Will I need more parts to do 220VAC dimmer?
Yes. See the sample circuit in the datasheet for starters. Also, the Arduino will need a way to detect zero crossing, then delay turning on the SSR until some later point in time to control brightness. Good luck. GIYF. Keep one hand in a pocket so you don't electrocute yourself.
|
|
|
|
|
43
|
Using Arduino / Project Guidance / Re: AC Dimmer with PR36MF2xNSZ
|
on: May 11, 2013, 08:16:57 pm
|
Sorry. So any other SSD relay I can do this job with?
Yes, a random-phase, i.e., non-zero crossing type. At the top of the datasheet it lists some possibilities: ∗Non-zero cross type is also available. (PR26MF1xNSZ Series/PR36MF1xNSZ Series)
|
|
|
|
|
45
|
Using Arduino / Project Guidance / Re: AC Dimmer with PR36MF2xNSZ
|
on: May 11, 2013, 07:33:48 pm
|
|
A triac, which switches the load, has the characteristic that once it is triggered into conduction, it continues to conduct until the load current falls to some near-zero value.
The way a triac is used in a dimmer is to switch it on at some variable point on the sine wave. When the current drops to zero (when the sine crosses zero), the triac turns off, then the triggering circuit repeats the same thing on each half-cycle. Where on the sine wave the triac is turned on determines the amount of power delivered to the load and hence the brightness of the lamp.
This process generates a lot of EMI due to the sharp step in current when the triac begins conduction. Usually lamp dimmers have filter circuitry to reduce the EMI generated.
Another way to reduce EMI is to turn the triac on immediately after the zero-crossing point on the sine wave. However, this means that the triac will conduct for the entire half-cycle. It also means that this type of circuit can only be used for on/off control.
|
|
|
|
|