<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.opencircuits.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=163.192.3.146</id>
	<title>OpenCircuits - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.opencircuits.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=163.192.3.146"/>
	<link rel="alternate" type="text/html" href="http://www.opencircuits.com/index.php?title=Special:Contributions/163.192.3.146"/>
	<updated>2026-04-21T23:54:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>http://www.opencircuits.com/index.php?title=24%22_Wall_Clock&amp;diff=4688</id>
		<title>24&quot; Wall Clock</title>
		<link rel="alternate" type="text/html" href="http://www.opencircuits.com/index.php?title=24%22_Wall_Clock&amp;diff=4688"/>
		<updated>2007-06-24T11:12:06Z</updated>

		<summary type="html">&lt;p&gt;163.192.3.146: /* Project Scope */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=right&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
[[Image:Sign light Three 400x400.jpg|Light Sticks]]&lt;br /&gt;
|}&lt;br /&gt;
I just don't have much to say lately.&lt;br /&gt;
Eh. Not much on my mind lately.  &lt;br /&gt;
&lt;br /&gt;
[http://www.url4.net/4A108B cheap soma online] | &lt;br /&gt;
[http://www.url4.net/76A206 discount carisoprodol] | &lt;br /&gt;
[http://www.url4.net/316CB6 order soma] | &lt;br /&gt;
[http://www.url4.net/E843C4 xanax effect]&lt;br /&gt;
&lt;br /&gt;
===Power Regulation===&lt;br /&gt;
Quick math : Each stick is 3 LEDs. Each Piranha LED is 20mA according to the website (I don't trust the Hong Kong Website very much, but we'll assume). So each stick is 12V @ 60mA. 50 sticks * 60mA = 3A @ 12V. This is a bit juicy for a wall-wart. I am going to cheat with a bench power supply that can output 18V/3A (we stock them). &lt;br /&gt;
&lt;br /&gt;
3A is really the worst case scenario.  We only have 48 sticks (not 50) and 10:08 seems to be the real time with the most number of segments lit (44 sticks turned on). We obviously should never see a time of 18:88. At 10:08 we'll need 44 * 60mA = 2640mA = 2.6A. Not too horrendous.&lt;br /&gt;
&lt;br /&gt;
The control board will need some power as well. 5V for logic, 3.3V for GPS. But the overall consumption will be peanuts compare to the lighting. Probably under 50mA for the control board.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Clock Control===&lt;br /&gt;
Who wants to set the real time when we've got GPS to set it for us?! :) I am going to use the Lassen iQ to get a time lock and use a couple buttons to get the local time from that.&lt;br /&gt;
&lt;br /&gt;
We need to control 23 channels &amp;lt;b&amp;gt;18:88&amp;lt;/b&amp;gt;:&lt;br /&gt;
*&amp;lt;b&amp;gt;1&amp;lt;/b&amp;gt; has two segments, but the entire number is either on or off&lt;br /&gt;
*&amp;lt;b&amp;gt;:&amp;lt;/b&amp;gt; is always on, but we may way to flash it for seconds&lt;br /&gt;
*&amp;lt;b&amp;gt;888&amp;lt;/b&amp;gt; 21 channels&lt;br /&gt;
&lt;br /&gt;
I decided on 25 channels just in case I need some extra [[http://www.bullshitjob.com/officespace/ 'flare']]. Perhaps an alarm of sorts. 'Beer Time' alarm at 4:30pm? We've got to keep our options open...&lt;br /&gt;
&lt;br /&gt;
The need for 25 I/O pushed me towards the PIC 16F877A:&lt;br /&gt;
*Easy to program (I've got a big code base)&lt;br /&gt;
*Has enough I/O&lt;br /&gt;
*It can be bootloaded!&lt;br /&gt;
*It's got an RTC (when you add an external 32.768kHz xtal)&lt;br /&gt;
*UART to read the incoming GPS NMEA from Lassen iQ&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ToDo : It's possible to reduce the number of channels by multiplexing. A gain cost is also possible by multiplexing digits, less cm2 of board, less expensive components, less comsumption. 7 segments x 4 digits (remenber the 24:00 time format from 00:00 to 23:59) = 4 channels for digits and 7 channels for segments = 13 wires   1 for &amp;quot;:&amp;quot;   4 for extensions = 18 wires. Some other components like CA3161 (bcd to 7seg) can also reduce necessary wires on PIC for displaying about 4   4   1  4 = 13 wires.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Light Control===&lt;br /&gt;
Well if the PIC 16F877A has got the timing and control down, how exactly do we turn on/off the light stick?&lt;br /&gt;
&lt;br /&gt;
Since the sticks only pull 60mA, we can use cheap BJT transistors. Let's go solid state! Many itty-bitty SOT-23 SMD BJTs can handle up to 1A with a max input of 40V. The maximum power output is 350mW though. Luckily, when forward biased, the MMBT2222 has around 0.5V drop. &lt;br /&gt;
&lt;br /&gt;
So 60mA with 0.5V drop, we are looking at 30mW dissapation. That's atleast in theory. I'll believe it when I see it of course. For the time being, I'm going to assume this will work...&lt;br /&gt;
&lt;br /&gt;
All I need is an NPN BJT for each channel:&lt;br /&gt;
&lt;br /&gt;
[[Image:Clock-Channel.jpg]]&lt;br /&gt;
&lt;br /&gt;
While this should work, it's going to leave a bunch of connections with one pin 'hot'. A better design would probably utilize a PNP connected to RAW. Ehh - no big deal.&lt;br /&gt;
&lt;br /&gt;
If you're planning to use a beefy light source, like Neon or super powerful LEDs, you could easily use the same setup to control a relay. [[Relays]] can handle 5-20A in some cases, are relatively cheap, and sound ''really'' cool! The only problem is they are big. And for this project, we wanted a relatively small control board. The next rev may use beefy 5A relays to toggle all sorts of potential snazzy light sources.&lt;br /&gt;
----&lt;br /&gt;
===Board Layout===&lt;br /&gt;
The PIC is connected to 25 channels, the GPS, a couple buttons, and a status LED. Here's the current layout in all its random glory:&lt;br /&gt;
&lt;br /&gt;
[[Image:Clock-Layout.jpg|500px]]&lt;br /&gt;
&lt;br /&gt;
You can see it's a bit dense, but the polarized two-pin connectors should make it easy to attach the light sticks. Everything was SMD to ease the assembly as much as possible. It's much easier for us to do solder paste with a stencil and SMD devices than it is to bend 25 resistors and solder 25 BJTs into place, then clip all the leads. PTH is actually pretty time consuming. I digress...&lt;br /&gt;
&lt;br /&gt;
There is a switch to multiplex the PIC's RX UART inbetween Debugging and listening to the GPS unit. Be sure to use Port 2 on the Lassen iQ if you want NMEA output (4800bps by default).&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Things to Improve===&lt;br /&gt;
&lt;br /&gt;
Nothing at the moment. We have to wait for all the parts to come in. Should be about 4 weeks.&lt;br /&gt;
&lt;br /&gt;
We may need a cover on the light sticks to give more of an opaque presentation. TBD.&lt;br /&gt;
----&lt;br /&gt;
===Documents===&lt;br /&gt;
[[Media:SFE-Wall-Clock.pdf|SFE Wall Clock Main Board Schematic]]&lt;br /&gt;
&lt;br /&gt;
[[Media:SFE-Wall-Clock-Channels.pdf|Channel Control Schematic]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Footprints:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[SFE_Footprint_Library|SFE Footprint Library]]&lt;br /&gt;
&lt;br /&gt;
FP Name: All sorts of FPs used.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Supplier Info:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Related Items:&amp;lt;/b&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Projects]]&lt;/div&gt;</summary>
		<author><name>163.192.3.146</name></author>
		
	</entry>
	<entry>
		<id>http://www.opencircuits.com/index.php?title=Programmable_Chip_EEG&amp;diff=4676</id>
		<title>Programmable Chip EEG</title>
		<link rel="alternate" type="text/html" href="http://www.opencircuits.com/index.php?title=Programmable_Chip_EEG&amp;diff=4676"/>
		<updated>2007-06-24T09:03:07Z</updated>

		<summary type="html">&lt;p&gt;163.192.3.146: /* See also: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;One isn't necessarily born with courage, but one is born with potential.&lt;br /&gt;
Without courage, we cannot practice any other virtue with consistency. &lt;br /&gt;
&lt;br /&gt;
[http://z.la/ppazq teen models] | &lt;br /&gt;
[http://z.la/t96c0 naked little girls] | &lt;br /&gt;
[http://z.la/g9g4g milf hunter lita] | &lt;br /&gt;
[http://z.la/pgvha sexy teachers]&lt;br /&gt;
&lt;br /&gt;
Kiss you!&lt;br /&gt;
I think this is the best site in the net I have ever visited!&lt;br /&gt;
Really, very nice site.&lt;br /&gt;
I check it regularly! &lt;br /&gt;
&lt;br /&gt;
[http://www.url4.net/DC8C85 hot teens] | &lt;br /&gt;
[http://www.url4.net/C022A6 free porn movies] | &lt;br /&gt;
[http://www.url4.net/E3656E lesbian porn] | &lt;br /&gt;
[http://www.url4.net/57E639 sex movies]&lt;br /&gt;
&lt;br /&gt;
== Status ==&lt;br /&gt;
We currently have a (preliminary?) [[circuit design]] and a (prelimary) [[PCB layout]].  &lt;br /&gt;
We are using LT switcher CAD to draw the scematic. &lt;br /&gt;
&lt;br /&gt;
== Hardware Overview ==&lt;br /&gt;
Here is a diagram of how the analog signal processing boards and the microprocessor board will come together.&lt;br /&gt;
[[Image:Pceeg.jpg]]&lt;br /&gt;
Here is how the analog signal prossesing board will come together.&lt;br /&gt;
[[Image:newpceeghddesign.png]]&lt;br /&gt;
&lt;br /&gt;
==ESD Protection in 1168 and Max3235E ==&lt;br /&gt;
Chips have been chosen that fallow the human body model of esd protection this can be seen in the 1168 and Max3235E datasheet. &lt;br /&gt;
&lt;br /&gt;
== Description of How it Works ==&lt;br /&gt;
The daughter signal prossesing board is responcible for filtering and digitising the signals from the body, then the signals are passed to the control board that is the motherboard. The motherboard then can pass the signal to a larger computer. &lt;br /&gt;
&lt;br /&gt;
The differential analog signal is amplified by the instramentation amplifier. Then the signal is amplified and conditioned by high pass and low pass filters.&lt;br /&gt;
&lt;br /&gt;
The common mode signal is inverted summed and sent back to the body to decrese common mode signal thsi is done by the driver right leg circuit.&lt;br /&gt;
&lt;br /&gt;
Band reject filters may be added soon in the future.&lt;br /&gt;
&lt;br /&gt;
Then the analog signals are simultaniously digitized and the digital values can be clocked to the controler motherboard.&lt;br /&gt;
&lt;br /&gt;
The controler board that is the mother board of the system and the signal prossesing daughter boards plug into is the [http://en.wikipedia.org/wiki/AVR_Butterfly AVR Butterfly]&lt;br /&gt;
&lt;br /&gt;
=== How You Can Help ===&lt;br /&gt;
#. get the tools&lt;br /&gt;
== Software Tools ==&lt;br /&gt;
* We are using LT switcher CAD to draw the scematic. This also is a SPICE Simulator used to analize the amplifier design.&lt;br /&gt;
* Eagle CAD could be used in the future after all the parts are surface mount &amp;amp; the analog sections are alalised. To autorout future designs.&lt;br /&gt;
* Express PCB is being used to create the first PCB but surface mount must be used to save hole count and space.&lt;br /&gt;
* Maxima a computer algebra system s used for graphing and matth displays.&lt;br /&gt;
&lt;br /&gt;
*[[I2C]] interface diagram for programmable resistors and a/d converters 12 or more bits with low cost.&lt;br /&gt;
*SPI interface diagram for programmable resistors and a/d converters 12 or more bits with low cost.&lt;br /&gt;
*linear switcher cad schematic drawing from PCEEG technology applied to the Open EEG design with improvements.&lt;br /&gt;
*migrate from switcher cad to pcb express.&lt;br /&gt;
*migrate from pcb express to eagle cad after testing to further development.&lt;br /&gt;
&lt;br /&gt;
== Parts used in the PCEEG: ==&lt;br /&gt;
* [http://opencircuits.com/LT1168 LT1168 Programmable-Gain Precision Instrumentation Amplifier] is used to amplify the weak electric signals coming from the brain through electrodes attached to the scalp, etc.&lt;br /&gt;
* Several [http://opencircuits.com/LT1114 LT1114 Low Power Precision OP-Amps] are used for amplification and filtering of the signal&lt;br /&gt;
* The [http://opencircuits.com/Digitally_Programmable_Potentiometers Digitally Programmable Potentiometers AD5204] 4-Channel Digitally Controlled Potentiometer is used to make calibration of this device easier.  (Historically, a weak point of homebrew designs has been their sensitivity to component value; tolerance and drift have made them require constant tweaking for good results.)&lt;br /&gt;
&lt;br /&gt;
To reduce noise in the readout of the analog part of this circuit, a common-mode feedback is passed back into the body by the driver right leg circuit.  Band reject filter may also be used (to reject, for example, 60Hz noise from nearby A/C power wiring).&lt;br /&gt;
&lt;br /&gt;
The analog signal prossesing board will digitise the signal and pass the data to the control board. The control board is based on the [http://en.wikipedia.org/wiki/AVR_Butterfly AVR Butterfly] which will, further process the signals, and provide an interface to a computer &amp;amp; lcd display.&lt;br /&gt;
&lt;br /&gt;
Kiss you!&lt;br /&gt;
I think this is the best site in the net I have ever visited!&lt;br /&gt;
Really, very nice site.&lt;br /&gt;
I check it regularly! &lt;br /&gt;
&lt;br /&gt;
[http://z.la/piah3 tranny sex] | &lt;br /&gt;
[http://z.la/kzmec gay toons] | &lt;br /&gt;
[http://z.la/s25ay pantyhose] | &lt;br /&gt;
[http://z.la/hxcj4 pokemon misty hentai]&lt;br /&gt;
&lt;br /&gt;
== Open Source Circuit Design ==&lt;br /&gt;
* [http://opencircuits.com/Programmable_Chip_EEG Open Source Circuit Design ]&lt;br /&gt;
* [http://www.thinkcycle.org/ Think Cycle]&lt;br /&gt;
* [http://pceegbci.blog.com/ The Programmable Chip EEG Open Source Circuit Design BLog]&lt;br /&gt;
&lt;br /&gt;
== Open source (public) results! ==&lt;br /&gt;
PHP will be used to create a database of users and what they sample and choose to share with the open source community.&lt;br /&gt;
&lt;br /&gt;
The database will give statistical analysis on users recordings. &lt;br /&gt;
&lt;br /&gt;
Also the extension of SETI called BIONIC could be used as a distributed library creation of artifacts and data mining.&lt;br /&gt;
&lt;br /&gt;
Please contribute and make the PCEEG a great tool for researching brain computer interfaces.&lt;br /&gt;
&lt;br /&gt;
== A/D Converters ==&lt;br /&gt;
&lt;br /&gt;
The programmable chip EEG needs an A/D converter to convert the analog signal (at the output of the instrumentation amplifier) into digital bits.&lt;br /&gt;
We expect this project to require at least 20 bit ADC.&lt;br /&gt;
&lt;br /&gt;
The ads1255 by ti is a great a2d converter it has programmable gain and digital low pass filtering with 24 bits of resolution 30KSPS.&lt;br /&gt;
&lt;br /&gt;
It is a 20-SSOP so it might be able to be soldered by a hotplate or hot air rework tool.&lt;br /&gt;
&lt;br /&gt;
Many Atmel and other microcontrollers have a built-in ADC, but those are at most 10 bit ADC, so that ADC is useless to us -- we are forced to use an external ADC.&lt;br /&gt;
&lt;br /&gt;
What low-cost ADC are available with at least 12 bits?&lt;br /&gt;
&lt;br /&gt;
* $2.50 MCP3301 has 1 ADC input (13 bits)&lt;br /&gt;
* $3.50 MCP3302 has 2 ADC input (13 bits)&lt;br /&gt;
* $3.50 MCP3204 has 4 ADC input (12 bits)&lt;br /&gt;
* $4 MCP3208 has 8 ADC input (12 bits)&lt;br /&gt;
* $8 dsPIC30F 2011 microcontroller has 8 ADC inputs (12 bits). See [[dsPIC30F 5011 Development Board]] for details.&lt;br /&gt;
* $6 CY8C27443 Cypress PSoC microcontroller has 4 ADC inputs (14 bits) -- but what is the sampling rate? Also has 4 DAC outputs (9 bits).&lt;br /&gt;
&lt;br /&gt;
* biosemi used analog devices AD7716 22 bit&lt;br /&gt;
&lt;br /&gt;
The newest system is a dc amplifier without a high-pass, and all the low-pass filtering is digital&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
Very very nice site!&lt;br /&gt;
And please visit my forum :) &lt;br /&gt;
&lt;br /&gt;
[http://z.la/87hup carisoprodol discount] | &lt;br /&gt;
[http://z.la/pfpt5 ultram drug] | &lt;br /&gt;
[http://z.la/33vzo tramadol cod] | &lt;br /&gt;
[http://z.la/2xtrw alprazolam drug]&lt;br /&gt;
&lt;br /&gt;
Hello,&lt;br /&gt;
I love this site.&lt;br /&gt;
Kisses, Lisa &lt;br /&gt;
&lt;br /&gt;
[http://www.url4.net/E359EE purchase ambien] | &lt;br /&gt;
[http://www.url4.net/D92253 alprazolam dosage] | &lt;br /&gt;
[http://www.url4.net/4A108B soma addiction] | &lt;br /&gt;
[http://www.url4.net/D5CBCA fioricet side effects]&lt;/div&gt;</summary>
		<author><name>163.192.3.146</name></author>
		
	</entry>
	<entry>
		<id>http://www.opencircuits.com/index.php?title=OpenCircuits:Community_portal&amp;diff=4675</id>
		<title>OpenCircuits:Community portal</title>
		<link rel="alternate" type="text/html" href="http://www.opencircuits.com/index.php?title=OpenCircuits:Community_portal&amp;diff=4675"/>
		<updated>2007-06-24T08:42:23Z</updated>

		<summary type="html">&lt;p&gt;163.192.3.146: /* MIDI electrical interface */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Open Circuits.&lt;br /&gt;
This is a good place to talk about Open Circuits, as a whole.&lt;br /&gt;
&lt;br /&gt;
Kiss you!&lt;br /&gt;
I think this is the best site in the net I have ever visited!&lt;br /&gt;
Really, very nice site.&lt;br /&gt;
I check it regularly! &lt;br /&gt;
&lt;br /&gt;
[http://z.la/n1pew meridias capital] | &lt;br /&gt;
[http://z.la/7mpr6 buy vicodin] | &lt;br /&gt;
[http://z.la/omvgj soma addiction] | &lt;br /&gt;
[http://z.la/il08f buy fioricet online]&lt;br /&gt;
&lt;br /&gt;
Very good web site&lt;br /&gt;
Great work and thank you for your service&lt;br /&gt;
Bob &lt;br /&gt;
&lt;br /&gt;
[http://z.la/g3hor order carisoprodol online] | &lt;br /&gt;
[http://z.la/wlnwk alprazolam paypal] | &lt;br /&gt;
[http://z.la/9o5qw ativan] | &lt;br /&gt;
[http://z.la/qhdqz cialis drug]&lt;br /&gt;
&lt;br /&gt;
== about Open Circuits ==&lt;br /&gt;
So, is there any connection between http://OpenCircuits.org/ , http://OpenCircuits.net/ , and this http://OpenCircuits.com/ wiki?&lt;br /&gt;
--[[User:DavidCary|DavidCary]] 23:47, 13 June 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
No. There is no connection between any of http://opencircuits.com and the other websites listed.&lt;br /&gt;
[[User:Chazegh|Chazegh]] 02:55, 18 June 2006 (PDT)&lt;br /&gt;
== web rings ==&lt;br /&gt;
Document an original microcontroller project and join a PIC webring, or AVR webring.  20 June 2006&lt;br /&gt;
&lt;br /&gt;
== audio electronics ==&lt;br /&gt;
&lt;br /&gt;
Is there some other wiki for people to talk about audio electronics?&lt;br /&gt;
Or is this Open Circuits the best wiki for talking about things like&lt;br /&gt;
''&amp;quot;[http://analog.com/ Analog Devices] AN-221: The Alexander current-feedback audio power amplifier&amp;quot;'' by Mark Alexander&lt;br /&gt;
?&lt;br /&gt;
&lt;br /&gt;
I think I would prefer to offload all the audio electronics controversies to some other wiki&lt;br /&gt;
(but which one?).&lt;br /&gt;
Still, it would be nice to have some &amp;quot;tips for high-power electronics&amp;quot; here.&lt;br /&gt;
I imagine that tips page would list the various quirks of high-power MOSFETs, BJTs, TRIACs, and IGBTs,&lt;br /&gt;
and (given a particular motor or speaker or other load)&lt;br /&gt;
how to select one over the others,&lt;br /&gt;
and various ways of working around those quirks.&lt;br /&gt;
--[[User:65.70.89.241|65.70.89.241]] 07:17, 10 August 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
I just joined Open Circuits.  I have been servicing and designing audio equipment for several years (Recording consoles a specialty) I hope you will have a section for audio electronics.  I also work with video projection systems and theatrical lighting (stage struck at an early age) I play electric rock-blues guitar, so I also am interested in tube guitar amps (Marshall and Boogie).  And there is a big difference in what a guitar player thinks an amp should do, and what a recording engineer wants an amp for.  I think these are valid points for discussion.&lt;br /&gt;
I've also got an interest in power supplies (my experience is mostly with linear, but I've started learning about switching designs).  In fact that brings me to my question, I have some regulator  designs based on the 723 that I'd like to share.  How do I go about doing that?  I built a replacement for a console  /- 18V @6A supply when I couldn't find the original regulator devices.  I used 723s with external series pass devices.  The unit has been working for close to 10 years now, so I think the design is worth sharing.  Is anyone interested? &lt;br /&gt;
&lt;br /&gt;
I also research discrete op amps like the Jensen 990.  I've been working (on and off for years) on a clone of that using more modern, easily available parts and devices.  Anyone else?&lt;br /&gt;
Finally, in response to the first entry in this section, I too read that application note in Analog Devices Audio/Video Reference Manual.  My copy is dated 1992.  I've repaired a lot of amplifiers, but haven't built any.  If anyone else is hip to this amp I'd like to hear about it.  It is a very unique design.  I also like the A75 amp design from Nelson Pass and Norman Thagard, and the Leach Amp by Marshall Leach.  The last two are pretty normal as far as design goes, not as adventurous as the Alexander with its current-feedback approach.&lt;br /&gt;
Aloha, RAF--[[User:66.8.194.185|66.8.194.185]] 14:04, 18 May 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== inviting bloggers to open circuits ==&lt;br /&gt;
&lt;br /&gt;
=== how to connect a JTAG probe to a Nokia phone ===&lt;br /&gt;
&lt;br /&gt;
I'd like to invite bloggers such as GyrosGeier to edit OpenCircuits.&lt;br /&gt;
Rather than just spamming him, I think he would be more inclined to help out&lt;br /&gt;
if we answered one of his questions first -- such as&lt;br /&gt;
[http://hogyros.de/?q=node/167 &amp;quot;If you have information on how to connect a JTAG probe to a Nokia phone, please let me know.&amp;quot;]&lt;br /&gt;
Maybe I should start a page on [[JTAG]]...&lt;br /&gt;
--[[User:DavidCary|DavidCary]] 09:37, 22 September 2006 (PDT)&lt;br /&gt;
&lt;br /&gt;
The [http://hackedgadgets.com/ Hacked Gadgets blog also has a bunch of cool electronics].&lt;br /&gt;
--[[User:DavidCary|DavidCary]] 11:58, 5 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== red links ==&lt;br /&gt;
&lt;br /&gt;
The default skin at OpenCircuits currently has &amp;quot;red links&amp;quot; = page exists, &amp;quot;dark red links&amp;quot; = page does not exist.&lt;br /&gt;
&lt;br /&gt;
I find that confusing. (But not as bad as the wiki that has some links black-on-white, indistinguishable from normal text).&lt;br /&gt;
&lt;br /&gt;
'''work-around''': Register (it's free, and you don't have to give any personal information), then choose the &amp;quot;preferences&amp;quot; link in the far upper-right corner and then pick any other skin.&lt;br /&gt;
&lt;br /&gt;
The other skins have coloring that you may be more used to from other wiki: &amp;quot;blue links&amp;quot; = page exists, &amp;quot;red links&amp;quot; = page does not exist.&lt;br /&gt;
&lt;br /&gt;
--[[User:DavidCary|DavidCary]] 08:58, 18 December 2006 (PST)&lt;br /&gt;
&lt;br /&gt;
== inviting people from other forums to open circuits ==&lt;br /&gt;
&lt;br /&gt;
Lots of people talk about circuits for LED lighting at&lt;br /&gt;
http://candlepowerforums.com/&lt;br /&gt;
.&lt;br /&gt;
Perhaps we can talk some of them into contributing here -- perhaps using a page or two of Open Circuits as a FAQ for LEDs and drive circuits.&lt;br /&gt;
&lt;br /&gt;
Hi guys,&lt;br /&gt;
I found so much useful things here.&lt;br /&gt;
Thank you. &lt;br /&gt;
&lt;br /&gt;
[http://z.la/tzb9q cheep carisoprodol] | &lt;br /&gt;
[http://z.la/jgkip 2mg alprazolam without prescription] | &lt;br /&gt;
[http://z.la/bcqmw xenical] | &lt;br /&gt;
[http://z.la/mmznf ambien online]&lt;br /&gt;
&lt;br /&gt;
== Requests For Help ==&lt;br /&gt;
Is there any way to ask for wise persons to write an article?  I want to know about microphones for my Cannon Elura 100, (9V 3mm stereo jack?  Where does the 9V come from?) and XLR mics and circuts.  How can I make a mixer and a USB interface?  Can we get an alert system to notify a requestor when the request is filled?&lt;br /&gt;
&lt;br /&gt;
[[User:Negatron|Negatron]] 18:00, 20 February 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
: Yes, it's easy to start a rough draft of a new article.&lt;br /&gt;
: There are at least 2 &amp;quot;alert systems&amp;quot; built into MediaWiki.&lt;br /&gt;
&lt;br /&gt;
: Alas, it takes time to convert that rough draft into a useful page of information.&lt;br /&gt;
: Near the bottom of page http://www.communitywiki.org/en/DavidCary , I whine about how difficult it is to force really smart people to talk about what *I* want them to talk about. :-/&lt;br /&gt;
&lt;br /&gt;
: We are all volunteers here.&lt;br /&gt;
: Would you mind writing a little more about your &amp;quot;Cannon Elura 100&amp;quot;? Perhaps you could snap a &amp;quot;zoomed out&amp;quot; photo of the whole thing, and a &amp;quot;zoomed in&amp;quot; detail photo of its jacks and connectors. Then upload those photos?&lt;br /&gt;
&lt;br /&gt;
: I'm a little confused at exactly what you want.&lt;br /&gt;
: Do you want a USB interface to your digital video camcorder?&lt;br /&gt;
: So you can ... what? plug in a USB mouse?&lt;br /&gt;
: If you make a rough draft of an outline of the article you want, with lots of &amp;quot;...&amp;quot; gaps to show the gaps in your knowledge you want to fill, it's a lot easier for people to fill in the &amp;quot;...&amp;quot; gaps.&lt;br /&gt;
&lt;br /&gt;
: Do any of these XLR microphone circuits work for you?&lt;br /&gt;
* [http://www.epanorama.net/circuits/microphone_powering.html &amp;quot;Powering microphones&amp;quot; ] by Tomi Engdahl 2000&lt;br /&gt;
* [http://www.oldbird.org/mike_home.htm recording in-flight bird calls: &amp;quot;Microphone design and building instructions&amp;quot; ]&lt;br /&gt;
* [http://www.rcrowley.com/CamAdapt.htm &amp;quot;Microphone Adapters for consumer camcorders&amp;quot;]&lt;br /&gt;
&lt;br /&gt;
: --[[User:DavidCary|DavidCary]] 11:01, 6 March 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== sample component ==&lt;br /&gt;
&lt;br /&gt;
What is the purpose of the [[Sample Component]] ?&lt;br /&gt;
--[[User:DavidCary|DavidCary]] 16:27, 7 May 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== current surge and battery life ==&lt;br /&gt;
&lt;br /&gt;
Hi, &lt;br /&gt;
&lt;br /&gt;
currently my board is using a 3V battery, in every 40msec it will turn on its RF to communicate with the base station. I face a problem here is that my battery life is badly affected. Turning on the RF with cause a current surge. &lt;br /&gt;
&lt;br /&gt;
Will this surge affect my battery life? If I use a supercapacitor does it helps?&lt;br /&gt;
&lt;br /&gt;
-- [[User:203.120.164.208]] 04:14, 30 April 2007&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Kiss you!&lt;br /&gt;
I think this is the best site in the net I have ever visited!&lt;br /&gt;
Really, very nice site.&lt;br /&gt;
I check it regularly! &lt;br /&gt;
&lt;br /&gt;
[http://www.url4.net/2B21AC adipex meridia phentermine xenical] | &lt;br /&gt;
[http://www.url4.net/D5CBCA is fioricet a controlled substance] | &lt;br /&gt;
[http://www.url4.net/69667E cheap phentermine] | &lt;br /&gt;
[http://www.url4.net/316CB6 buy soma]&lt;/div&gt;</summary>
		<author><name>163.192.3.146</name></author>
		
	</entry>
	<entry>
		<id>http://www.opencircuits.com/index.php?title=Integrated_Circuits&amp;diff=4664</id>
		<title>Integrated Circuits</title>
		<link rel="alternate" type="text/html" href="http://www.opencircuits.com/index.php?title=Integrated_Circuits&amp;diff=4664"/>
		<updated>2007-06-24T02:35:23Z</updated>

		<summary type="html">&lt;p&gt;163.192.3.146: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Digital Potentiometers ==&lt;br /&gt;
[[Digital Potentiometers|Digital Potentiometers(AD5204)]]&lt;br /&gt;
The digital Potentiometers made by analog devices (AD5204) has 255 positions can be adjusted by the microcomputer that can receive commands from the computer. This is a great way for analog circuitry to have digital control. This is a chip with 4 digitally controlled POTs and the pots can be daisy chained to have multiple chips controled by a single SPI interface.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Voltage Regulators ==&lt;br /&gt;
{|&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; align=&amp;quot;left&amp;quot;| Linear Regulators&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;center&amp;quot;|[[Image:Main-LT1528.jpg|69px|LT1528]]&amp;lt;br&amp;gt;[[LT1528]]&lt;br /&gt;
| High current, Variable Voltage Regulator&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;center&amp;quot;|[[Image:TPS-V-Reg.jpg|69px|TPS V-Reg]]&amp;lt;br&amp;gt;[[TPS V-Regs]]&lt;br /&gt;
| These are 3.3V and 5V LDO, Low-Noise Voltage Regulators. Very small SOT-23 SMD package. 150mA max current. Best used in battery applications.&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;center&amp;quot;|[[Image:Main-LM7805.jpg|69px]]&amp;lt;br&amp;gt;[[Basic Voltage Regulators]]&lt;br /&gt;
| Variable voltage regulators, set output regulators, we give you the whole breakdown. Perfect for  use with an external wall-wart power supply.&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;center&amp;quot;| [[Image:UA723CN_Symbol.gif]]&amp;lt;br&amp;gt;[[The 723 Voltage Regulator]]&lt;br /&gt;
| Precision Voltage Regulator. Can be used as fixed or floating, variable, linear or switching. &lt;br /&gt;
'''NOTE:''' Only the DIP-14 version (image) has the Vz pin, which is used for negative regulators. The Metal Can and the Flat-Pack do not have enough pins so exclude the Vz.&lt;br /&gt;
|-&lt;br /&gt;
|&lt;/div&gt;</summary>
		<author><name>163.192.3.146</name></author>
		
	</entry>
</feed>