Jump to content
Electronics-Lab.com Community

Theatronics

Members
  • Posts

    158
  • Joined

  • Last visited

    Never

Everything posted by Theatronics

  1. I was taught the basics by my father, When I was young (8 or 9) he had a Ham Radio rig. I started with Tubes and my first active device project was a triode AM radio. It was basicly a crystal radio with a triode acting as a amplifer to drive a speaker. As I remember, it was not all that loud but it glowed and made noise, how much more could a kid ask for? -Mike
  2. Indulis, You are correct, the fixed frequency method works because of the inductance, or more correctly, the impedance, of the whole motor. At a low frequency, Lets say 0hz – DC, the motor sees the full power as current through the windings and thus produces a magnetic field resulting in motion. As the frequency rises the coils begin to interact with the power in the current and some of that current is blocked resulting is losses through heating. As the frequency changes there are nodes (harmonics) that will produce better or worse power but they are not wide enough to use for accurate control. While Frequency COULD be used to control the power the motor generates it is not efficient as the full power of the supply is tapped and depending on the frequency, much of it could be lost to heating the coils. Now on AC systems there is a whole different system. When the motor is an inductive armature frequency IS the best way to control it. PWM switching is very noisy on AC circuits as the switching usually takes place using an SCR and the resulting RF noise from the sudden switch on in the middle of a cycle causing energy loss and other issues. While IGBTs and BJT’s can be used to switch more slowly, they tend to heat up and can not carry as much load as an equal SCR. The devices used are called VFD’ (Variable Frequency Drives) these drives manipulate the AC signal of 1,2, and 3 phase power to control AC motors. The phased outputs are changes in frequency and thus the magnetic fields on the armature rotate faster. Most drives range from 0 – 400hz. I have several of these drives that control 30 to 50 hp 3 phase motors. To watch one of those things speed up and slow down like a servo motor is quite impressive. In fact, given the right motor design and VFD, you can even drive them backwards by flipping 2 out of 3 phases. Stepper motors are also frequency dependant. The chips we are talking about are mostly used to drive stepper motors. Of course stepper motors do not use PWM to control speed, but rather a series of on and off signals on 3-6 channels that are repeated at a regular interval. If you had a chip that generated the drive signals for the steeper with each pulse, it could be said that the speed of the motor is frequency driven but not the power. In general, for Brushed, Perm Magnet, DC motors. PWM is the best method for both power control. -Mike
  3. Tkjaz, Looks to be about $3.00 us. Digikey Link: http://dkc3.digikey.com/PDF/T063/1898.pdf Might be able to find them cheaper from other sources. -Mike
  4. Check out a product called Q-Prox http://www.qprox.com/products/touch.php Sensors can pick up finger touches through thick plexy. Edge light your plexy and etch symbols into it for a amazing display/ control panel! -Mike
  5. it's just a speaker. Usually 8 Ohms and less than a watt. here is a typical one : http://www.mycableshop.com/sku/PCCASESPEAKER.htm If you want to mount it outside just extend the red and black wires outside the case. But speakers sound louder if they are mounted in a box so you might want to put the speaker in a box. For all that trouble why not look into a nice cheap sound card? Much better sound quality and much easier to connect to external speakers. Here is a link that shows how to use a real sound card with QBasic. http://www.phys.uu.nl/~bergmann/soundblaster.html -Mike
  6. If you want a "Way Cool" challenge. Connect a row of SMT leds on a stick and spin it. Then using accurate timing, draw the next number in mid air. (Put one digit on the left of center and the other on right of center) Hows that for wizzy bang ? -Mike
  7. It's inside. Open up the box, you will see it. From Q-basic, I don't think so. The external speakers are usually run off a sound card, the internal speaker was rarely connected to an external jack. You can do that if you wish, just don't use amplified speakers unless you knock the voltage on the output down some (See Voltage Divider Resistors for more info) Also, don't connect a speaker larger than the one in the box as you can blow the little amp that drives it and that could be bad also. -Mike
  8. how big of a TFT display? Are you talking about a little 2 line by 16 char type of a larger Computer flat screen type? And how large is the 7 Segment display? I guess it comes down to what you are trying to prove. If you want to show that you can build the circuit then skip the TFT and just use the 7 Segment displays. For larger displays look into “Flip-Dot” displays. They don’t need as much power as large LED signs. If you want to show off and display the output on video then you are talking about something entirely different, the whole counter BCD circuit is insignificant to the video interface and TFT driver circuit, that is assuming you want to build the whole thing from scratch.. There is a device called a “BOB-II” that converts serial data into graphics for TV sets. You might be interested in that. Then just use off the shelf flat screen TV sets for the displays. (LCD or Plasma are most common, that’s why I was wondering about the size of the TFT display you wanted to use) More details gets you more answers. -Mike
  9. OH! I think I get it. He wants to put the scope into the X-Y mode (Ch1 on X ch2 onY) and use the PIC to control the signals to DRAW a game on the screen. If it's a 30Mhz it must be a fair machine so I am guessing it also has a Z input on the back that can be used to control the intensity of the beam. I have seen people build driver circuits and display NTSC signals on a scope screen before. It wasn't easy but they were trying to comply with a broadcast signal. This may be easier because he can control the whole thing. Humm. I’d suggest ‘Vector’ graphics rather than trying to scan the whole screen. These are very similar to an etch a sketch with an on off button. You will need a pair of fast D-A converters. If you load a specific X,Y value into the converters and the send that to the scope and wait just a moment for the screen to settle you will illuminate a DOT on the screen BY sending a series of locations to the system you can draw anything. So rather than keeping track of thousands of pixels, just keep track of the actual dots you are using. In the game world they are called sprites. A sprite is made up of a collection of pixels relative to a single origin. Usually the upper left corner. A sprite might look like this for a square 0,0 1,0 2,0 2,1 2,2 1,2 0,2 0,1 If I pick a point, (25,10) for instance, and plot my sprite there it would be (25 + 0 , 10 + 0) (25 + 1 , 10 + 0) (25 + 2 , 10 + 0) (25 + 2 , 10 + 1) (25 + 2 , 10 + 2) (25 + 1 , 10 + 2) (25 + 0 , 10 + 2) (25 + 0 , 10 + 1) So you would need to create a sub for each sprite If we create one for “SQUARE” We would pass it the X,Y location of the square and it would plot a square where ever We tell it too. You might need some subs like (Tank1,Tank2,Bullet1,Bullet2,Tree,Rock,House) Then by allowing game play to determine the location of each item you simply call the subs with the correct X,Y locations to draw each item. (* Note Drawing an item would be sending the voltages of Vx + sp and Vy + sp to the scope while the beam is on and then turning it off when done) If the subs are called at a regular interval there should not be too much flickering with a 20mhz PIC. I’d set the subs up with an interrupt to refresh the sprites every 1/20th of a second. (About the speed of the human eye) You might want to tear apart a joystick and see how to wire one or 2 into the Pic. You will need 5 pins for each one (Left, Right, Forward, Backward, Fire) Is that what you are looking for? -Mike
  10. The 556 chip is very similar to a pair of 555 timers. On the left side of the chip the Cap and resistors are used to set a frequency for the signal. Usually this frequency is not needed to be exact. Most servos are forgiving but it should be around three thousand pulses per a second or 3 Khz. Use the adjustable resistor to move up and down the range until your servo starts to respond. The Cap and resistors on the right ser the Pulse width. While the left side of the 556 is acting like a simple pulse generator, this side is wired as a “One-shot” with every pulse that the left side creates , the right side generates a pulse whose length is determined by the capacitor and resistors. The switch at the top of the circuit shorts out the 10K resistor. When the switch is open the resistance is such that the pulses generated are much longer and this causes the servo to turn all the way one direction. When the switch is closed, the 10K resistor is effectively ‘taken out’ of the circuit. With a lower resistance the pulses now become smaller and the servo changes direction. There are 2 “extra” capacitors in the circuit. On pins 3 and 11. these are needed to keep the circuit stable. While they do play a role in how the circuit works, if you are a beginner, focus more on the resistors and capacitors on the outside edges of the circuit. Good Luck! (PS. Some servos are designed for speed, others are made for power. The more powerful ones are usually slower also. If you want your doors to ‘slowly’ open you can use a high torque/low speed servo. The other way to accomplish the speed control is to alter the speed that the resistance of the 10K resistor is changed. This is a bit more complex but you might enjoy the challenge of figuring it out.) -Mike
  11. Try using a (MosFet N-Channel Enhancement mode) to actually switch the LEDs on and off. Many fets can be connected directly to a microcontroller. (NOT all, check your datasheet) For 50 of them, There may be a PIC that has 44 I/O pins but I'd suggest a different method. Look into "Serial In / Parallel Out" Shift Registers. You can string them together end to end. There is a Serial in pin and a serial Out pin and then (usually) 4 or 8 output pins. There is also a /Latch/ or /Load/ pin. Then by placing the on and off signals on a data line and pulsing a second line to provide a clock signal, you can load all 50 bits in 50 clock pulses. Then just send one more pulse to the /Latch/ pins and all 50 bits will load into the registers at the same time. Tie a logic driven MosFet to each output and you can drive nearly any load. With a system like this you can create a single board that has 8 drivers on it and then replicate that board 8 times to get 64 outputs. The PIC doesn't care, it just sends out 65 bits and 64 clock pulses followed by a latch signal. Many Pinball games and Slot machines operate all the lights and some of the playfield systems using this method. -Mike
  12. Zoinks, that’s a lot of questions. All right 1 at a time: Touch sensors. A FET touch sensor is the same thing used on those lamps that you touch to change the brightness. IT can be done with any high gain amp. If you have ever touched the input to an audio system and heard that loud hum noise, you know how it works. The input is sensitive and can pick up the touch of a person. But rather than drive an audio signal it just flips a relay. Another touch type switch is called the Q-Prox. It is a single chip solution that uses a simple wire coil to detect a touch. I have included a link to the part. They have other chips that offer multiple inputs (2 keys,4 keys ect) http://www.qprox.com/products/qt100.php On the issue of Reversing the Servo. I guess I would need to know how you are making it go forward in the first place. While this is not the normal usage I have seen a very simple application of R/C Servos where the Power and ground leads were connected and the signal (White or yellow) wire was simply connected to +V to rotate the servo to full right and ground to move it full left. The servo normally looks for a 1.5ms pulse every 100ms (max) to maintain a position of
  13. Paul_J, That’s like the test I was talking about. We did it (2 decades ago) in a class on microprocessors of all things! It was just a side note where the instructor demonstrated how heat sinks have different abilities. He used the Soldering iron as a fixed and constant heat source. But he just glossed over the calculations he used. I do remember now that the goal was to get the whole heat sink to the same temp. A better heat sink Would maintain a lower temp than a poor one given the same energy input. Indilus, Huh? I thought copper was about 2 times better than aluminum so for the exact given shape and size? Diamond (2300 W/mK) Pyrolytic Graphite (1950 W/mK) Silver (429 W/mK) Pure Copper (401 W/mK) Pure Aluminum (237 W/mK). Of course that is only true of pure metals, Alloys are generally much lower than any pure metal. So a pure aluminum sink could be the same as a low grade copper sink. But it is very rare to find affordable copper sinks any more. So I guess the whole thing is moot. I have used copper water pipe before. Flatten out one end, Drill a hole to mount the part and then split the sides of the remaining tube open . In a pinch it works fine. Speaking of water pipe… Has anyone mentioned water blocks yet? -Mike
  14. What type of metal is important. (Al is most common) Also the shape is important to some degree. If the part is mounted at one end of a long sink the wattage will be lower than if the part were mounted in the middle of the same sink. I don't know of any actual 'formula' to convert the shape, material, and surface area of a sink into an actual wattage or Efficiency % value.
  15. When you say Miniature, I assume that you mean smaller than human sized? If that is true, the sensors depend on what you expect to ‘trigger’ the doors to open. The classics are: Photo transistor: When exposed to light it will conduct. By covering it (making it dark) it will conduct much less. Cds Cell: Similar behavior, Acts like a resistor that is sensitive to light. Hall effect sensors. If the item being sensed is metal (Fe) based. Fet-Touch sensors: Very high gain sensors that detect the static discharge of human touch. Capacitive sensors: Good for sensing just about anything except they have a very limited range. (usually millimeters) Some other devices that MAY NOT be useful due to the model being ‘miniature’ Ultrasonic: I have not seen a micro-Ultrasonic setup but I suppose it could be done. I think the trick would be building a pickup that can detect the weaker ‘clicks’ PIR (passive Infrared) This usually only works on Living/Warm blooded things. It is the same concept as the Photo transistor except it detects HEAT from a body. Some are so sensitive they can detect changes in air temp but usually only over a large area. It could work but it would be difficult to use in a very small area. Pressure mats: These are often expensive if you buy them but I have seen very functional ones built from foil and paper. They normally require at least 50lbs to trigger. Let us know more about the size of the model and what will trigger the doors and I am sure someone will have a clever idea to help. -Mike
  16. my best guess? Try about a 32-34ga wire. Id suggest you build a rig with 2 terminals that you can wrap the wire around and then cover with a shield. Wire going vapor can be dangerous. for a few bucks you can buy a circuit breaker. You can also use a 'shunt' resistor, a RS flipflop and a mosfet. Run the circuits ground into the drain of the n-channel mosfet. Connect the drain to the ground. Set up the shunt resistor so that when the target current is flowing though it you can read about 3-4 volts. ( 4v / 7.5 amps = 0.53 ohms ) Take the output of that measurement and feed it into the SET input of the flipflop. When the current gets close to 7.5 amps, the voltages at the flop/flop input will be high enough to cause the f/f to toggle states. As a result the /Q (not Q) output of the f/f will go low. When this happens the N-Channel Mosfet will shut off and the circuit will shut off. -Mike
  17. A circuit sketch would help but I think you are confusing current flow with polarity. While the polarity of the current does indicate the direction of the flow, the magnitude Of the current is always a positive number. 3Amps * 1V = 3watts. -3amps * 1v = 3watts Not Negative 3 watts. A negative wattage would indicate that heat is being sucked away from something. Even the famed pettler junction doesn’t really do that as the other side still gets very hot. I assume the method you are using is to remove 2 batteries from the circuit and then calculate all the currents for the entire circuit with just one battery, then repeat the process for the other two batteries, and finally sum all the results? This will show you the actual current flows and voltages in the circuit. It is tedious but it works. Good luck -Mike
  18. Mike, HI! Well transistor theory is a deep subject. I have one textbook that focuses on just PNP/NPN type transistors. It’s about 2” thick. The SWITCHING method is thankfully the easer ways to use a transistor. The Emitter (the arrow on the schematic symbol) needs to connect to ground. The collector connects to the load, in this case the LED. Note: Notice that the arrow on the schematic NPN transistor points toward the ground. The LED should also. Because the LED and the Transistor have a low resistance, if we connected power to them the current flow right now would blow them both up. So we need a current limiting resistor. I’d guess a 2.2k is safe for about 9v. Place the current limiting resistor between the LED and the positive power. Now the BASE of the transistor. All transistors have a value called ‘Beta’ in AC theory it is called hFE. It means how much raw amplification the device has. Most standard duty NPN’s are above 80. some go as high as 1000. (See Darlington) Because of this we only need a tiny current to control a larger current. The current that goes into the base flows through the Emitter to ground. This current times the Beta is what should be flowing through the collector into the emitter and to ground. So if we put 1ma into the base of the transistor and it has a beta of 100 then We should see 100ma flowing through the collector and to ground. (Note: the current at the Emitter is the SUM of both Base and collector currents 110ma in this case.) Because we have a LED and a 2.2k ohm resistor on the collector, if we assume the transistor is a dead short and we are using fully charged 9V, the MOST current we can pull is 4ma. So what happens if we put 1ma in at the base? The Beta says that the current through the Collector should be 100ma. We know we can’t pull 100ma though the diode and resistor we are using because there isn’t enough voltage to create that kind of current flow. The situation is impossible, as a result the transistor is said to be in ‘Saturation’. This chiefly means, “It’s as ON as it can get.” So how do we get 1ma through the base? The path from the base to the emitter is a diode. All diodes have a voltage drop, (Called the Knee Voltage) You will need to check your data sheet for the part you are using but it is somewhere around 1 volt. So the first step is to subtract 1 volt from our supply voltage. 9v – 1v = 8v Now we know the current and the voltage, all we need to do is use Ohms to find the resistance. R = E / I = ( 8v / 1ma ) = 8k. Among the COMMON resistor values the two values closest to that are 8.2k and 7.5k While 8.2 will result in LESS current into the transistor, we would still be deep into saturation so it would still work. In fact if we try a 10K ohm resistor. 8v / 10k = 0.8ma 0.8ma * 100beta = 80ma Collector Current (Ic) Still Deep into saturation. So even a 10k ohm resistor will work. What is the LARGEST resistor you can use? Well we are assuming that 4ma is all the LED needs to light up. So if we work backwards from that, 4ma current flowing through the collector Divide by the BETA (ex:100) to get the Base current = 0.04ma So now we have the Base current. We also know the voltage at The base as the battery voltage (+9v) subtract the Knee (-1v) so it’s 8v Given the voltage and the current we again can use ohms to find the resistance. R = E / I = (8v / 0.04ma) = 200k ohms. So given a 200k ohm resistor the led will still light. But if you use a 270k ohm then what happens? Well you have just crossed into the Linear realm. As the resistor goes up, the Base current goes down And the collector current follows. The important fact to remember is that a transistor in full saturation provides very little resistance to the current and as a result it heats up very little. As you enter the Linear region the transistor begins to behave a little like a resistor. At 400k ohms the LED will only see 2ma of current flowing. Here is the magic: The current through the Collector is 2ma now. That is a fact, so what is the voltage through the current limiting resistor? Well E = I * R = (2ma * 2.2k) = 4.4volts. Almost half the supply voltage! The resistor is heating up. The wattage is the Volts times Current. (4.4v * 2ma = 8.8mw) The interesting thing is that if we add the 1v lost at the LED and the 4.4v at the current limiting resistor we will find that 3.6v is missing. If you measure the voltage from the Collector of the transistor to the Emitter of the transistor you will find it. The transistor is acting like a resistor of 1.8k ! That also means it is heating up Wattage = Volts times Amps = (3.6v * 2ma = 7.2mw) At these levels it’s nothing to worry about but at higher currents transistors can heat up and self destruct. That’s why Power amps have those huge heat sinks on the back. What about the SMALLEST resistor you can use? Well we already know that anything under 200K will put the transistor into saturation. However as the base resistor values get smaller, the current through the base goes up. If you check your data sheet you will see a MAXIMUM Ibase this value is Usually very low. Definitely around 270 ohms the currents would be getting dangerously close to blowing most transistors. (Around 20ma) This is all based on the NPN transistor, similar to the 3904. Others have higher Betas and different Base to Emitter Knee voltages. I know it was long but I hope there is useful data in there you can use. Good Luck! -Mike (Ward)
  19. thats what I said. IF you reverse bias test the transistors, the COllector to base will be LOWER than the Emitter Base. But the test COULD destroy some diodes. SHesh, I not wrong ALL the time. -Mike
  20. Well, Heres a sample of the pinouts.
  21. HEY! Thats a great question, Where can one find a table of the FUSING currents of common wire sizes. I have always got a big kick out of running 6ga wire to a circuit, only to see the interconnect wires inside the unit shrink down to 16 or 18ga. I like to keep handy tables around, and I have never seen that one anywhere. -Mike
  22. It is kind of tricky. The problem is that the test it's self could destroy the device depending on it's design. One method is to compare the breakdown voltages of the E to B diode VS. the C to B diode. I would have to break out my theory books but I suspect (based on the physical model most NPN/PNP devices use that the C to B diode will go into a ziner behaviour at a voltage lower than the E to B diode. THe problem is that if you are trying to test a darlington, or a JFET or any other type device you will end up getting no where at best. (You might end up in a smoke filled room at worst) If you can read the part number off the part then looking up the datasheet is the best method. If you can't find the datasheet, Post the numbers here and someone will gladly post your answer. When all else fails. Build a very low current circuit (High Ohm resistors) and Guess. If the device doesn't work one way, flip it around and try another way. -Mike
  23. in my teens I longed for parts and things to rip into. In my 20s I had a whole storage shed full of 'stuff' from old ham radio equipment, to Personal computers. In my 30s I learned that my time was worth money so I suddenly realized that ordering new parts is better than spending hours looking though broken gizmos to find one that is 'close' to what I need. Now (my 40s) I keep a nice balance of unique gizmos for research and Reverse engineering and a shelf of up to date parts supply catalogues. As for getting rid of old electronics, It is becoming more difficult due to the hazardous chemicals and elements used in construction. The best advice I can offer is disassemble the unit entirely, and then throw it away a little at a time. That way you may find a few items you do want to keep and you can toss the stuff you don't need.
  24. Here is a rough sketch of the Bat and Ball Idea. Build the whole thing on a platform. Then tip The platform to aim. The notch in the tube holding The ball will help insure that the bat hits the ball At the same point each time. -Mike
×
  • Create New...