DPScope SE - the simplest real oscilloscope/logic analyzer on the planet.

Size: px
Start display at page:

Download "DPScope SE - the simplest real oscilloscope/logic analyzer on the planet."

Transcription

1 Food Living Outside Play Technology Workshop DPScope SE - the simplest real oscilloscope/logic analyzer on the planet by womai on April 30, 2012 Table of Contents DPScope SE - the simplest real oscilloscope/logic analyzer on the planet 1 Intro: DPScope SE - the simplest real oscilloscope/logic analyzer on the planet 3 Step 1: Circuit Overview 5 Step 2: Microcontroller 6 Step 3: Input Stage 6 Step 4: Amplifier Stage 8 Step 5: Trigger 9 Step 6: Logic Analyzer Port 9 Step 7: USB Connection 10 Step 8: Mechanical Design 10 Step 9: Assembly 11 Step 10: Unpacking the Kit 11 Step 11: Identifying Resistors 12 Step 12: Identifying Capacitors 12 Step 13: Components 13 Step 14: Starting the Assembly 14 Step 15: Resistors 14 Step 16: Resistors 15 Step 17: Inductor, Diodes 15 Step 18: Ceramic Capacitors 15 Step 19: Chip Sockets 16 Step 20: Electrolytic Capacitors, Trimmer Resistors, Resonator 16 Step 21: USB Connector, Logic Analyzer Header 17 Step 22: Front Connectors RCA 17 Step 23: Front Connectors BNC 17 Step 24: Indicator LED 18 Step 25: Front Panel 18 Step 26: ICs, Back Panel, Enclosure 19 Step 27: Software Installation 20 Step 28: Startup 20 Step 29: Sodtware Start 20 Step 30: Offset Adjustment - Part 1 21 Step 31: Offset Adjustment (Part 2) 23

2 Step 32: Offset Adjustment (Part 3) 23 Step 33: All Done! 24 Step 34: Software & User Interface 24 Step 35: 25 Step 36: Contact 26 Related Instructables 26

3 Intro: DPScope SE - the simplest real oscilloscope/logic analyzer on the planet The DPScope SE is the result of a challenge I set for myself to build a practically usable oscilloscope with a minimum amount of components and for minimum cost The practical benefit is of course that this is an instrument that I hope will be interesting to many teachers, students and hobbyists looking for an affordable, simple tool for their electronics work There were a few basic requirements for whatever circuit I came up to justify the practically usable label: There are quite a few simple sort of an oscilloscope type circuits out on the web, but all I know fall short in one or more respects: Only one input channel very often one must display one signal in relation to another (eg clock and data, or input vs output) or trigger on a signal different from the one to be displayed, and this needs at least two channels No reasonable protection against overvoltage at the input Very limited range of input voltages (eg just 0 5V) and no adjustable input amplification or attenuation Only usable for very slow signals because of limited sample rate (a few ksa/sc) and/or low bandwidth (a few khz) Non-standard input impedance standard scope probes need 1 MOhm Input stage not frequency compensated (limits bandwidth to a few khz at best) Use of exotic, obsolete or unnecessarily expensive components Unnecessarily complex circuit especially given the limited performance With the DPScope SE I tried to address all these issues Of course the end result can never compete with a professional Tektronix or Agilent scope costing hundred times more, but it is still good for a large number of applications To minimize cost some preliminary considerations set the general direction: Try to integrate as much of the scope hardware into a single chip The instrument should use a PC for control and display saves the cost of a dedicated LCD display (while providing unmatched resolution and processing power) and front panel control knobs and buttons Connection should be through USB (fast and today s standard legacy serial port connection require USB converters which again adds cost since most new PCs don t even have RS-232 ports anymore) Power to be provided through USB connection saves the cost of a wall-wart power supply Be very careful about adding components and be diligent looking for low-cost, easily available components Don t use hard-to-solder, fine pitch components so the scope can be distributed as a self-assembly kit anybody can build In the end I was able to squeeze almost everything onto a single microcontroller (a Microchip PIC18F14K50) acquisition control, capture memory, USB interface, digital-to-analog converters (ADC), trigger circuitry and trigger threshold generation The only major block outside is the analog frontend and even this is just one quad op-amp chip and a number of resistors and capacitors If you have any questions or feedback, do not hesitate to contact us: support@dpscopecom Webpage:

4

5 Step 1: Circuit Overview The picture on this page shows the complete oscilloscope schematic We will dive into each section in detail later, but first let s get a broad overview Don't worry if the schematic seems too small and does not show any details: Click on the "i" in the top left corner to get to a page where you can download the full-sized image The signals to be displayed enter on the left side There are two input channels, their design is identical First the signals get attenuated to make sure they do not exceed the range of the op-amp or the ADCs (0 5V) The attenuator has very high impedance and also acts as protection against excessive voltage at the inputs, together with the clamping diodes A low impedance divider provides some fixed offset to shift the input signal up, that way positive as well as negative voltages can be measured The signal then continues to the amplifier stage, consisting of two op-amps (both on the same physical op-amp chip) The first one acts as a simple unity gain buffer, the second stage provides 10x amplification Finally the signal enters the microcontroller where it gets digitized The scope can change its voltage resolution by selecting which version of the signal to use the one from the unit-gain buffer (for large input signals) or the 10x amplified version (for small signals) The microcontroller captures the signal the acquisition parameters (sample speed, voltage scaling, trigger setup come from the controlling PC) and sends the data back to the PC for display There is also a logic analyzer port four digital inputs into the microcontroller Finally, the USB interface transmits data between microcontroller and PC and also provides power to the whole circuit

6 Step 2: Microcontroller The microcontroller (a Microchip PIC18F14K50) is the heart of the whole instrument Above you see a high-level block diagram of its internal structure As said before, almost all functions are integrated into this single chip, Microchip really managed to pack a ton of features into this little marvel costing just around $3 Even though there seem to be several ADC input pins the truth is that there really is just a single ADC whose input gets multiplexed onto these pins That means one can only take one sample on one channel at a time; for two channels the acquisition is done interleaved, ie one sample from CH1, then one from CH2, again one from CH1, and so on The maximum achievable sample rate is just above 50 ksa/sec (For finer resolutions the scope uses equivalent time sampling, up to 2 MSa/sec equivalent sample rate) The ADC s analog bandwidth is a few hundred khz (the data sheet does not specify bandwidth, this number is from my own measurements) As with the ADC, the comparator inputs can get multiplexed on several different pins here, CH1 low (1x) and high (10x) gain path and external trigger The other side gets the trigger threshold, produced by the PWM (pulse width modulation) module The microcontroller can set up an interrupt that reacts whenever the comparator output changes state (ie the input signal crosses the threshold) which allows for very fast, low-latency reaction to trigger events The sample logic (actually a piece of code) controls the acquisition process processing interrupts from the comparator, timer interrupts to sample at regular intervals, transfer of the sampled signal data into the microcontroller s internal memory (RAM) It can either capture data from the two analog scope channels or from the four digital logic analyzer inputs The microcontroller also has a complete USB interface built in which provides data connection to the PC A program on the PC lets the user control the acquisition settings and displays the data, so it looks and feels like a regular oscilloscope The main program running on the microcontroller takes care of communicating with the PC (receiving commands and sending the captured data) and sets up the sample logic, comparator, ADC with the acquisition parameters Step 3: Input Stage Let s have a look at the input stage first Since the two channels are identical in their design we will concentrate on scope channel 1 (CH1) To allow for connection of different types of probes the input offers three different options for the connector The standard one is the BNC connector, which is mandatory if the scope shall be mounted in the Serpac enclosure with the provided custom end panels For bare-board variants the user can install RCA connectors (also known as Cinch or audio connectors) some people prefer these because it s easier to build cheap probes for them There is also space for a 01 spacing jumper header useful to hook the scope eg to a breadboard through jumper cables The microcontroller's analog-to-digital converter (ADC) has a fixed input range of 0 to 5V The op-amp (rail-to-rail input and output, see next section) can only transmit signals in this range as well Signals smaller than that range will get measured with reduced resolution (because they don t span the full range of possible digital ADC values), and larger signals will get clipped Since the input signal that the scope is supposed to measure can span a wide range from quite small to quite large, we need an input stage that can attenuate and/or amplify the incoming signal to make it suitable for the analog-to-digital converters (ADC) First, in the input stage, the incoming signal is attenuated by a factor of 10 by the voltage divider formed by resistors R1 and R3 This increases the maximum voltage range to 50V peak-to-peak R1 and R3 in series yield 1 MOhm total resistance so the scope input has the correct, standard impedance required to use standard passive 1:10 or 1:100 scope probes Since the subsequent circuits cannot deal with negative voltage (to keep the circuit simple, the scope has only a single +5V supply and no negative supply), the only way to measure negative signals is to shift them up with an offset voltage, provided by the low impedance divider built from resistors R16, R17, and trimmer R12 Capacitor C4 assures that this offset voltage does not float around when the input signal changes quickly (the power supply could not react fast enough to quick changes C4 takes care of that because it acts as a charge buffer)

7 R12 is adjusted so the voltage going to the op-amp input is at 25V (ie exactly at half the supply voltage and thus the ADC range) when 0V is applied to the scope input The 25V level thus acts as sort of a virtual ground level for subsequent processing stages Since the input divider reduces the input swing by a factor of 10 this means the scope can now measure input signals between -25V (resulting in 0V going to the op-amp) and +25V (resulting in +5V going to the op-amp) If you use a 1:10 scope probe basically a glorified (well, actually frequency compensated) 9 MOhm resistor, the input divider ratio becomes 1:100 (divider formed by probe and R1 on one side and R3 on the other) and the range increases to +/-250V ( but be VERY CAREFUL whenever working with such high voltages!) Important note: One source of confusion is the fact that the bottom of the input divider is not going to ground (0V) but rather to the offset voltage This is different from how most other scopes work and is the price to pay for using just a single, positive supply rail It means that if the input is left open (nothing connected to it) it will float up to the offset voltage and as a result the scope will NOT show 0V but rather some positive offset It also means that the software has to adjust the vertical offset applied slightly when going from a low-impedance 1:1 probe to a 9 MOhm 1:10 probe The input divider (attenuator) deserves some further consideration It is a so-called compensated divider and consists of a parallel combination of a resistive divider (R1 and R3) and a capacitive divider (C12 and C11) The reason for adding the capacitive divider is the fact that the protection diodes (D1 and D2) and the input of the opamp (OP11) have some unavoidable parasitic capacitance C_par on the order of a few pf With only R1 and R2 this would create a low-pass R-C filter (the divider feeding the parasitic capacitance which would need some time to charge up), severely limiting the achievable bandwidth (in our case to just a few khz) The solution - if you can't beat them, join them Adding the capacitive divider and adjusting it to the same division ratio (1:10) as the resistive divider makes the frequency response flat from DC to light (at least in theory - but close enough for our purpose) The necessary condition is that the division ratio of the resistive divider (R1, R3) is the same as the division ratio of the capacitive divider: (C11 + C_par) / C19 = R1 / R3 In many higher end scopes one of the capacitors is made adjustable to trim the exact capacitance ratio, but to keep things simple (and low cost) I opted for fixed capacitors One less thing to adjust! Since nothing comes for free in life, it's not surprising there is a price to pay - the capacitive divider causes the scope's input impedance to drop for higher frequencies Still this is a worthwhile tradeoff and thus such a compensation circuit can be found in virtually every oscilloscope Finally the two diodes (D1, D2) act as input protection, clipping any signals to the preamplifier that exceed either +5V or 0V by more than one diode drop They need to be fast-switching (both in conduction as well as in recovery) and have low input capacitance On the other hand, given the high input resistance value (900 kohm) between input and diode they don't need to shunt a lot of current even at large overvoltages at the scope input The diodes used (1N914) are very easily available yet offer very fast switching (Actually almost any CMOS IC, including the op-amp, has a similar protection structure on their inputs and outputs, but for scope inputs that may be subject to significant overvoltages I did not want to rely on this for circuit protection) R1 is rated to a static load of at least 100V or 200V (depending on specific model), so this gives good headroom compared to the specified input signal range (25V peak) For short times the input structure can withstand much higher voltages (but don t rely on that!)

8 Step 4: Amplifier Stage The next stage for the signal is the op-amp (operational amplifier) The DPScope uses the MCP6024 which has 4 single op-amps in one package Its gain-bandwidth product of 10 MHz (meaning for small signals you can get a bandwidth of 10 MHz for 1:1 gain, or 1 MHz for 10x amplification) is more than sufficient for our purposes (a few 100 khz at most) For large signals the slew rate is actually the more important parameter to look at since that tends to be the limiting factor The MCP6024 can do 7V/µs so it can span a 5V range in less than one microsecond again well sufficient for the required performance here (A rise time of 1 µs corresponds to a bandwidth of roughly 330 khz) What is also important the MCP6024 is a so-called rail-to-rail amplifier, ie it works fine even if the input signal or is output signal go all the way to its supply rails (0V and 5V in our case), or at least very close to them (a few mv) as long as it does not need to drive large currents This is by no means a given most op-amps need some margin between their supply levels and the maximum and minimum signal levels they can work with In any case rail-to-rail capability makes our life very easy and helps keeping circuit simple But back to the signal chain of our scope: The signal is first fed into a simple non-inverting op-amp follower (buffer) stage (OP11) which produces a 1:1 copy of the signal This buffering is also necessary because the input stage constitutes is a high impedance source which could not drive the ADC directly (Microchip states that the maximum source impedance should be 10 kohm or less to guarantee settling to 1 LSB within one sample period, and we need even better because the scope performs equivalent time sampling for fast sweep rates meaning the signal has to settle faster than one real time sample interval) The buffered signal (output of OP11) drives one of the microcontroller s ADC inputs directly (pin RC1/AN5), and also feeds the input of a 1:10 gain stage (OP12, hooked up as a standard non-inverting amplifier) that produces a signal amplified by 10, which in turn goes to a second ADC input (microcontroller pin RC2/AN6) That way one can choose between less amplification for large input signals and large amplification for small signals simply by telling the microcontroller to sample on RC1 or RC2, respectively, without the use of any relays or switches (which would make the design larger, more complex, and more costly) The negative (inverting) input to OP12 is biased to 25V through the divider R4/R6 since as outlined in the previous section our virtual ground is sitting at half the supply voltage The gain of this stage is given by R7 and the parallel combination of R4 and R6 as: Gain = 1 + R7 / (R4*R6 / (R4 + R6)) = k / 05k = 1006 which is the very close to the desired value of 10 (better than the 1% tolerance of the resistors used anyway)

9 Step 5: Trigger The trigger uses the comparator built into the microcontroller again great, no external circuitry required for this functionality The trigger compares the incoming signal (actually the scaled copy of the input signal arriving at the ADC) with a user-controlled threshold level We still need to generate the required trigger threshold (the voltage level at which the trigger should fire and start the acquisition), and this threshold must be adjustable Instead of using a digital-to-analog converter (DAC) which would add significant cost, the scope generates this level using pulse width modulation (PWM) The microcontroller has a PWM generator built into hardware so it can generate PWM signals with programmable frequency and duty cycle independently in the background while the program runs The frequency is fixed, and the duty cycle (time within one period where the signal is high) is variable, depending on the desired trigger level Eg if the signal is high for 20% of the period (and low otherwise), the average level is then 20% of the supply voltage, ie 1V Of course this signal is not yet a static DC level but rather a fast square wave, so the PWM output feeds a low-pass filter consisting of R5 and C2 The time constant (R5*C2) is chosen fast enough for the level to settle to a new value within less than about 200ms, but much longer than the PWM period That way the output settles to the average voltage of the PWM signal Step 6: Logic Analyzer Port In addition to the normal scope function (to measure analog signals) the DPScope SE also offers a logic analyzer mode In this mode it can acquire up to four digital signals (ie at each sample instant it will only show if the signals are high or low) The advantage is that is can store longer records (since there is only 1 bit of data per channel for each sample instant, instead of 8) and sample much faster (because it simply reads the state of its digital inputs instead of performing a much more complicated and time consuming analog-to-digital conversion with its ADC) The digital signals enter through the multipin connector on the backpanel of the scope and go through 10 kohm protection (current limiting) resistors directly to four PORTB inputs of the microcontroller Triggering in this case is done by setting up a interrupt on change on the channel selected as trigger channel Note that different to the scope channels the logic analyzer inputs do rely on the protection diodes internal to the microcontroller (plus the current limiting function of the series resistors, which makes this approach safe for up to about 15V) Microchip explicitly condones such an approach (there are even apps notes making use of it), and second the logic analyzer port is only intended to probe digital signals which normally do not exceed 5V, but take care not to exceed that The logic analyzer port also breaks out ground (must be connected to the circuit under test of course), an additional external trigger for the scope mode, and the 5V USB supply There is an option to install a thermal fuse (F1) that limits the supply current in case of a short circuit The main reason for the 5V pin is to enable attachment of (yet to develop) add-on boards, eg a signal generator The scope supplies power to these boards and send and receive data through the trigger pin and the logic analyzer channels the board itself then can be very simple because it needs neither its own power supply nor an extra USB connection to the PC

10 Step 7: USB Connection The USB connection has two functions here it serves as the data link between scope and PC, and in addition it provides the circuit with power The PIC18F14K50 microcontroller has a full USB interface already built in (actually that is one of the main reasons to use this particular microcontroller), so implementing the USB data connection becomes almost trivial on the hardware side the connector and two 47 pf capacitors (C1, C7) is all that is needed! The device is set up as a HID (human interface device), which is one of the two most common choices for simple USB enabled devices (the other being CDC = virtual serial port) HID can transfer data at up to bytes/sec (almost 64 KB/sec), or more precisely up to 1000 data packets per second where one data packet can contain up to 64 bytes of data This is absolutely sufficient for our purposes: One full data record on the DPScope SE has around 420 bytes (210 bytes for each of the two analog channels), ie needs just 7 maximum-length packets Then there is some overhead to set up acquisition parameters, start the acquisition and query the scope status, but still one full acquisition uses less than 20 data packets, so the USB data bandwidth is not a limiting factor for the capture rate The power supply was kept as simple as possible as well It relies on the fact that the USB supply voltage is at least roughly regulated (nominally 5V but it can vary between ~43V and ~53V) and matches the voltage requirements of our circuit (5V), so there is no voltage regulator (More advanced USB supplied circuits typically run at 33V so they can use a simple low-dropout regulator to provide regulated 33V from the raw USB supply voltage But to get regulated 5V from the 43 53V input ie sometimes lower and sometimes higher than the output voltage we would need a buck-boost switching regulator which would roughly double the scope s complexity) There is some minimum power supply decoupling the bulk electrolytic capacitor C8 in combination with chock L2 and ceramic capacitor C10 filter the USB supply: C8 acts as a buffer (reservoir) to take care of surges in the circuits power consumption C10 and L2 block high frequency noise coming from the PC to the scope or disturbances coming from the scope Step 8: Mechanical Design The oscilloscope is built up on a regular, custom printed circuit board This minimizes the work to put it together, and also minimizes the chance for wiring mistakes The board can be mounted in a sturdy off-the-shelf enclosure (model Serpac A-21) to protect it from damage in everyday work I took a lot of care to make assembly as quick and easy as possible, and to give the completed instrument a professional look For the latter I designed custom front and end panels; these panels are made as part of the printed circuit board and V-scored so one can simply snap them off the main board by hand Creating panels from printed circuit board is a nice and often-used trick, and not coincidentally the grooves in the enclosure that hold the endpanels in place happen to have exactly the same width as the standard board thickness (around 16mm or 62mil): Since there is no extra setup cost (they are part of one board) one gets colored panels of arbitrary shape and with custom labels, holes and cutouts almost for free! Since the panels are machine-made the instrument has a very professional look no skewed cutouts or roughly filed slots! I also really like the design and shape of the Serpac enclosure not quite as boring as the typical project boxes The main board is held in place by the two BNC connectors screwed into the front panel, so there is no complicated alignment procedure or many screw connections everything falls in place by design

11 Step 9: Assembly While we made every effort to create an instrument that is robust and simple to assemble, there are some components that are sensitive to mishandling, eg putting them in with wrong polarity, so please pay close attention to the description for every step Moderate soldering experience is required You will need a few tools for the assembly: Small soldering iron (about 17 Watts power) with sufficiently fine tip Small gauge rosin core solder Flat-nosed pliers (to bend component leads) Small wire cutter (to cut off component leads) 15 mm wrench or small adjustable wrench (to fasten the BNC connectors to the front panel) Small Philips screwdriver (to adjust the trimmer resistors and for the enclosure Mid-sized Philips screwdriver (for the enclosure screws) An ohmmeter is very helpful to identify the different resistors All components are mounted on the top side of the board All soldering is done on the bottom side of the board The time required for putting the scope together will depend on your experience a seasoned hobbyist should be able to do it in around one hour, but if you are new to this it will take longer If you have any questions or feedback, do not hesitate to contact us: support@dpscopecom Webpage: Step 10: Unpacking the Kit Below you see the kit as it comes out of the box: Turn it upside down, unscrew the four screws on the bottom of the enclosure and carefully lift the bottom make sure not to drop any components To attach the scope to your PC you will also need to supply a standard size USB cable (USB-A connector on one end, USB-B on the other; not supplied with the kit)

12 Step 11: Identifying Resistors Resistor values are color coded (see table below) The resistors used in the kit with 5% tolerance have 4 colored bands (two significant digits, one multiplier, one tolerance) Eg brown(1) red(2) yellow(10e4) gold(5%) means 12*1E4? = 120 k?, Tolerance 5% Resistors used in the kit with 1% tolerance have 5 colored bands (3 significant digits, one multiplier, one tolerance) If available, checking each resistor value with an Ohmmeter is recommended Step 12: Identifying Capacitors Ceramic capacitors: The value is given in pf as one 3-digit number xxy comprising 2 significant digits (xx) and one multiplier (y) The markings may be small so to read them use a magnifying glass if necessary Sometimes there is only a single digit or two digits, this then gives the capacitance in pf directly Letters (eg J, K, ) denote tolerances etc, for our purposes here simply ignore tem (ie k does NOT mean kilo!) 474 means 47 * 10E4 pf = 47 * pf = 470 nf = 047 µf104 means 10 * 10E4 pf = 10 * pf = 100 nf = 01 µf181 means 18 * 10E1 pf = 18 * 10 pf = 180 pf220 means 22 * 10E0 pf = 22 * 1 pf = 22 pf24 means 24 pf1 means 1 pf Electrolytic capacitors: Their values are typically printed without any encoding Just be careful not to overlook the decimal point Eg 100 µf, 47 µf Since electrolytic capacitors are polarized (must be connected to positive and negative side the correct way, otherwise they will destroyed), their polarity is indicated as well Aluminum capacitors normally have the negative terminal denoted (by a big bar with - signs), while tantalum capacitors have the positive terminal marked This kit uses only normal aluminum capacitors

13 Step 13: Components On this page you see all the components spread out Everything you need to build the oscilloscope is included Please use the component list (also attached) to verify that you have all the parts shown below Also shown below is a picture of the board layout (component placement) Some general remarks: Some components may look somewhat differently than in the pictures different color, different leg length, etc Make sure you reliably identify each component before you solder it onto the board Take your time! It is much easier and much faster to perform a very careful assembly than it is to troubleshoot a circuit that does not work because some component was installed incorrectly! The integrated circuits, the diodes and the LED (light emitting diode) are very sensitive to electrostatic discharge it is good practice to use a grounded wrist strap to avoid damage to them during assembly, and to place all the components on an antistatic surface Unpainted wood is a good choice Don t wear clothes that get easily charged up (eg wool sweater) In most cases such discharges are too weak for you to notice, but they can still damage or destroy the tiny components in an instant! You ll also need a USB cable (not included in the kit), but most people have already a few lying around anyway If you need to buy one, eg Digikey part# AE1462-ND works fine

14 Step 14: Starting the Assembly As a general rule, we ll start out with the lowest components and work our way up to the higher (bigger) ones The most sensitive parts will get installed last Again, make sure to correctly identify each component before placing it onto the board, and verify it is in the correct position before soldering it down! We ll start out with the bare printed circuit board All components mount on the top side Note that each component position is labeled with the respective component name (called reference designator or RefDes) for easy identification A helping hand shown on the right holding the board is very convenient when placing the components because the component leads (legs) can freely stick out on the bottom Step 15: Resistors Place all the resistors bend their legs at the proper distance and stick the legs through the vias (holes) on the PCB Bend the component leads apart on the bottom this will hold the resistors securely when you turn over the board to solder them on The picture shows what the top of the board should look like In the bottom view you can clearly see how the leads are bent apart to hold the resistors

15 Step 16: Resistors To solder, touch the component lead (wire) with the soldering iron and the solder wire at the same time Add enough solder so it completely fills the hole and leaves a small hill of solder Remove the solder wire and the soldering iron but don t move the board before the solder has become completely solid again The solder joint should be shiny and bright (if you are using lead solder; the new, RoHS compliant solder will look dull) Repeat for the other leads This is how the bottom of the board will look like when you are done: Now clip off the protruding wire ends with the wire cutter Take your time this is a good opportunity to check that you did not accidentally forget to solder some of the connections! Step 17: Inductor, Diodes Next are the inductor and the clamping diodes Works the same as the resistors The diodes are quite sensitive to overheating, so be careful to solder them quickly The best approach is to first solder only one end of all diodes, then the other end this gives them enough time to cool down in the time between Note: Be careful the diodes have to be put in with correct polarity (orientation); the negative end is denoted by a black band around the diode body The silkscreen outline also shows a (white) stripe when properly installed, the black diode band should match the white silkscreen stripe Note that the orientation is not the same for all diodes see picture below Installing the diodes the wrong way around will prevent the instrument from working and may even damage the diodes The inductor on the other hand is not polarized and can be put in either way Step 18: Ceramic Capacitors Now on to the ceramic capacitors same mode of operation as before These components can look very similar to each other, and their color may vary and be different from what you see in these pictures You really need to identify them through the markings printed on their housing (there are usually additional markings letters and maybe numbers denoting package type, tolerance and so on, but only the capacitance is important for us): Marking: > 047 uf > 01 uf >180 pf 470 or 47 --> 47 pf 220 or 22 --> 22 pf

16 Step 19: Chip Sockets Now come the sockets Be careful with their installation because once soldered down a socket is almost impossible to remove The best way is to do it step by step: 1 Place the socket on the board as shown in the big picture Note the position of the notch on the left side of the silkscreen outline make sure to orient the notch on the socket to the same side This will make installing the chips less error-prone 2 Turn the board over and solder only two of the corner pins as shown in the zoomed-in picture below The reason is simple two pins diagonally opposed will securely hold the socket in place, but still allow you to make corrections 3 Press the socket onto the board and re-heat both of these solder joints this allows the socket to sit flush against the board Visually inspect the socket to make sure this is really the case 4 Only now solder all the other pins Step 20: Electrolytic Capacitors, Trimmer Resistors, Resonator The electrolytic capacitors are next Watch out, they may look similar but have different values (47uF and 100uF) clearly printed on their housings Note: Be careful these capacitors have to be put in with correct polarity The negative side is clearly labeled with a white stripe and - (minus) symbols make sure you install them as shown in the pictures below! Installing the wrong way around will damage them immediately once the circuit is powered up they may even explode! Next are the trimmer resistors note that two of the holes will remain unused the footprint can accommodate different common pinouts Finally install the 3-pin ceramic resonator its orientation is not important

17 Step 21: USB Connector, Logic Analyzer Header The USB connector is easy to install Make sure though that it sits flat and straight like sockets and any multi-pin component it is very difficult to correct errors once all the pins are soldered down Thus install the connector and solder one of the big pins (tabs) on the side Check for proper alignment, correct if necessary by re-heating the solder joint and readjusting the connector Then solder all the other pins Similar for the 8-pin header solder one pin, check alignment, then do the rest of the pins Below is also a side view to show the proper vertical position of the connector, the bottom of its plastic piece just flush with the top of the printed circuit board Step 22: Front Connectors RCA If you are assembling the bare-board version of the scope (ie without enclosure) then you can install RCA (cinch, audio) connectors instead of the standard BNC connectors (note: only BNC connectors are included with the kit) Some people prefer RCA connectors because it is a bit easier to build cheap probes for them The connectors fit into the same location as the BNC connectors Similarly, there is also space for 01 jumper headers, which can be convenient if you want to hook up the instrument to some breadboard circuit Both options are shown below Note that the BNC connectors are mandatory if you want to mount the board in the Serpac enclosure Step 23: Front Connectors BNC The standard connectors coming with the DPScope SE are BNC connectors These are the same connectors you find on commercial oscilloscopes, and they allow you to connect standard scope probes or standard BNC cables Install the connectors and verify they fit through the custom front panel (you may even attach the front panel to assure the connectors keep the correct distance Like the sockets and any multi-pin component it is very difficult to correct errors once all the pins are soldered down Thus solder only one of the big tabs first Check for proper alignment, ie make sure though that it the connectors sits flat and straight on the board (see pictures) If necessary re-heat the solder joint and readjust the connector, then check again Only when everything is correct solder all the other pins The big pins will need a lot of solder to fully fill up the mounting holes don t be shy, because that will be the only thing holding the board in place when it is sitting in the enclosure!

18 Step 24: Indicator LED Take the LED (light emitting diode) and bend its legs by 90 degrees as shown in the picture Fit it into the board Make sure the long leg of the LED goes into the side where the silkscreen indicates ( long pin ) Do not solder the LED yet we need to install the front panel first! Step 25: Front Panel Now put on the front panel the LED must go through the center hole For the BNC connectors add the washers (if included), the frontpanel, and finally the nuts Tighten the nuts with a wrench Be careful not to over-tighten them, damaging the connectors threads! The front panel now holds the LED securely in place Turn the board over and solder the LED s legs onto the board Cut the wire ends Press the LED back so it does not stick out too far at the front

19 Step 26: ICs, Back Panel, Enclosure Now it s time to install the ICs (integrated circuits) Make sure to put the chips on in the correct orientation Each chip has a notch on one end this notch must go on top of the notch in the silkscreen outline (and the notch in the socket if you installed those correctly!) Verify that none of the pins is bent and they all make good contact in the socket Put the back panel on and place the board into the enclosure bottom Snap on the top The end panels should fit snug into the grooves on either end which holds them firmly in place Do not screw the box shut yet we still need to perform offset adjustment Congratulations your oscilloscope is fully assembled!

20 Step 27: Software Installation If you haven t already done so, go to the DPScope website ( and download the DPScope SE software (make sure you get the software for the DPScope SE, not for the classic DPScope!): Go to On the navigation bar on the left of the webpage, choose DPScope SE Click on Download on the top navigation bar Look for the PC software link and click on it On the same page you can also find the User Manual To attach the scope to your PC you will also need a standard size USB cable as this is not included in the kit The cable needs a USB-A connector on one end, USB-B on the other These are the garden-variety ( normal sized ) USB connectors, ie not the miniature ones one is the flat/rectangular type and the other the squarish one see picture below No special USB driver is needed The instrument runs as a HID (human interface device) class peripheral, and Windows 2000 and higher include generic HID drivers right out of the box Install the DPScope SE software: Simply unpack the installation files, click on Setupexe, and follow the instructions The installation program will create an entry in the Start menu Step 28: Startup Attach the DPScope SE to a free USB port on your computer The oscilloscope s frontpanel LED should blink a few times and then stay on The blinking should last for about one second total If that s the case then your oscilloscope has just passed the first functional test! (The LED will only come on if the microcontroller actually starts successfully If the blinking speed is much slower this would indicate a problem with the 12 MHz resonator or its connection to the microcontroller) Wait for a minute or two to give the computer time to recognize the new instrument (you should get a status message when that happens) Note 1: The oscilloscope gets its power from the USB bus (it needs only about 70mA) The actual USB supply voltage can vary between ~43V and ~5V You can measure the USB supply voltage directly by selecting Utilities? Check USB Supply in the DPScope SE software Typically the supply voltage is on the lower end when other devices draw a lot of current from the bus Also many laptops tend to have pretty noisy supplies, which will show up as noise on the scope signals Thus it can be preferable to attach the DPScope SE to a self-powered USB hub instead in order to have a cleaner supply voltage closer to 5V Note 2: The DPScope SE software needs a screen resolution of at least 800 x 600 pixels Also note that increasing the Windows font size (through the Display control in the Setup panel) can mess up the screen layout because some labels etc will no longer fit into their allotted space Step 29: Sodtware Start Launch the DPScope SE software It should look like the picture below This means the scope communicates successfully with the PC! (If you get a message saying that no instrument has been detected, unplug the USB cable, wait a few seconds and plug it in again Normally this should not happen though) Press the Run button the button label changes to Stop and the two scope traces should come alive Sometimes when there is very little noise on the signals it can be hard to see whether the traces get updated or not Choose some higher average setting and see if the number of acquisiton counts up all the way to this setting

21 Step 30: Offset Adjustment - Part 1 Make sure the settings are the same as on the page before, and press Run if necessary: - Horizontal: 05 ms/div - Vertical: 2V/div for both CH1 and CH2 - Trigger: Auto - Acquisition: continuous, No Avg - Display: CH1 and CH2 on, Lines, FFT off In the Acquisition menu change the averaging to Avg 10 if you want to In the Position/Levels frame move the sliders CH1 and CH2 to the middle (simply click on the read and the blue x buttons) The ground level indicators (blue and red arrow on the left in the waveform display) will be in the middle as well Press Run to start acquiring waveforms Connect grabber probes and short them, ie connect red grabber and black grabber together With a small screwdriver you can now adjust the offsets of the two channels: Adjusting the two trimmers (R12 and R13) will move the respective trace (red = CH1 and blue = CH2) up and down Adjust the trimmers so the red trace is exactly at the height of the red arrow on the left, and the blue trace is exactly at the height of the blue arrow (The red arrow may hide behind the blue one)

22

23 Step 31: Offset Adjustment (Part 2) First we perform coarse offset adjustment in the 2V/div range: Step 32: Offset Adjustment (Part 3) Next we perform the fine offset adjustment: Change the voltage scale on both channels to 50 mv/div Change averaging to 10 to reduce visible noise (makes adjustment easier)

24 Step 33: All Done! Congratulations, you have successfully assembled, set up and tested your new oscilloscope! Now put the bottom cover on the instrument and screw it shut with the four Philips screws If you still have questions: Webpage: User Forum: Step 34: Software & User Interface Below you see the scope software running on the PC It offers all the functionality typical of a real scope You can switch between scope mode, datalogger mode and logic analyzer mode: Scope mode shows the analog signals applied to CH1 and CH2 You can trigger on CH1, on an additional external trigger input, or perform free-running acquisition Datalogger mode is useful for slowly changing signal Here you can acquire the digital signal inputs (from the logic analyzer port) in addition to the analog (CH1 and CH2) signals You can log the data directly to the harddrive In logic analyzer mode the instrument can only distinguish between digital levels (high and low), but on up to 4 channels and up to much higher real-time sample rate

25 Step 35: The DPScope SE can perform a number of automated measurements on the signals, like amplitude, frequency, and so on It can also display the frequency spectrum (FFT, Fourier Transform) of the signal - very handy to discover periodic noise eg from a power line There is also a DMM mode where you can display a measurement of your choice in a separate, large, easy-to-read panel - great eg when trimming the frequency of an oscillator

26 Step 36: Contact I hope you liked this Instructable I always like to hear from people - questions, suggestions, constructive criticism, whatever To contact me, use support@dpscopecom Webpage: User Forum: On the webpage you can also get the DPScope SE as a complete selff-assembly kit Related Instructables DPScope - Build Your Own USB/PC-Based Oscilloscope by womai Simple PC oscilliscope by Computothought LCS-1M - A Full- Featured, Low- Cost Hobby Oscilloscope by womai Logic Probe Kit by Mrdon219 Idea Turn an obsolete PC into an Electronics Engineering Experimentation Environment by westfw USB controlled home automation hack by chr

PCB Scope / Logic Analyzer Hardware Design Description

PCB Scope / Logic Analyzer Hardware Design Description PCB Scope / Logic Analyzer Hardware Design Description Introduction The PCB scope is the result of a challenge I set for myself to build a practically usable oscilloscope with a minimum amount of components

More information

LDB-1 Kit Instructions Page 1 of 8

LDB-1 Kit Instructions Page 1 of 8 LDB-1 Kit Instructions Page 1 of 8 Important Information Congratulations and thank you for your purchase of the LDB-1 Little Drummer Boy Analog Drum Machine Kit! Before you start, please read the enclosed

More information

Penrose Quantizer Assembly Guide

Penrose Quantizer Assembly Guide Penrose Quantizer Assembly Guide Schematic and BOM The schematic can be found here: www.sonic-potions.com/public/penrosequantizerschematic.pdf The BOM is available at google docs: Link to BOM Prepare the

More information

Value Location Qty Potentiometers C1M Distortion 1 A10k Volume 1. Footswitch 3PDT SW1 1. Jacks 1/4 Mono 2 DC Power 1

Value Location Qty Potentiometers C1M Distortion 1 A10k Volume 1. Footswitch 3PDT SW1 1. Jacks 1/4 Mono 2 DC Power 1 Distortion BUILD INSTRUCTIONS Thank you for your purchase of our Distortion+ kit! We have completely redesigned our entire line of kits to be the most user friendly, while still maintaining their same

More information

Assembly Instructions

Assembly Instructions Assembly Instructions For the SSQ-2F 3.1 MHz Rife Controller Board Kit v1.41 Manual v1.00 2012 by Ralph Hartwell Spectrotek Services GENERAL ASSEMBLY INSTRUCTIONS Arrange for a clean work surface with

More information

LITTLE NERD v1.1 Assembly Guide

LITTLE NERD v1.1 Assembly Guide last update: 9. 3. 2016 LITTLE NERD v1.1 Assembly Guide bastl instruments.com INTRODUCTION This guide is for building Little Nerd module from Bastl Instruments. It is good to have basic soldering skills

More information

ABC V1.0 ASSEMBLY IMPORTANT!

ABC V1.0 ASSEMBLY IMPORTANT! ABC V1.0 ASSEMBLY Before starting this kit, prepare the following tools: Soldering iron (15-20W will do), flush cutters, no.2 hex screwdriver or allen key and phillips screwdriver. Also briefly go through

More information

Pingable Envelope Generator

Pingable Envelope Generator Pingable Envelope Generator Kit Builder's Guide for PCB v1.0.3 4mspedals.com PEG This guide is for building a Pingable Envelope Generator (PEG), which is an intermediate-level kit. You should be confident

More information

Value Location Qty Transistors 2N5485 Q1, Q2, 4 Q3, Q4 2N5087 Q5 1. Trim Pots 250k VTRIM 1. Potentiometers C500k Speed 1. Toggle Switch On/On Vibe 1

Value Location Qty Transistors 2N5485 Q1, Q2, 4 Q3, Q4 2N5087 Q5 1. Trim Pots 250k VTRIM 1. Potentiometers C500k Speed 1. Toggle Switch On/On Vibe 1 P-90 BUILD INSTRUCTIONS Thank you for your purchase of our P-90 kit! We have completely redesigned our entire line of kits to be the most user friendly, while still maintaining their same great sound!

More information

Polyphase network kit

Polyphase network kit Polyphase network kit 1. Introduction This polyphase network module is designed to be used with the QRP Labs receiver module kit. It takes as inputs, four phase audio from the Quadrature Sampling Detector

More information

SoftRock v6.0 Builder s Notes. May 22, 2006

SoftRock v6.0 Builder s Notes. May 22, 2006 SoftRock v6.0 Builder s Notes May 22, 2006 Be sure to use a grounded tip soldering iron in building the v6.0 SoftRock circuit board. The soldering iron needs to have a small tip, (0.05-0.1 inch diameter),

More information

Simple LFO Features. 2. Application. 3. Description. Simple and easy to build LFO module for Analog Synthesizers.

Simple LFO Features. 2. Application. 3. Description. Simple and easy to build LFO module for Analog Synthesizers. Simple LFO. Simple and easy to build LFO module for Analog Synthesizers.. Features Square and Triangle waveforms (90 phase shifted) Dual range frequencies Frequency ranges from under Hz up to several khz

More information

SoftRock v6.0 Builder s Notes. April 6, 2006

SoftRock v6.0 Builder s Notes. April 6, 2006 SoftRock v6.0 Builder s Notes April 6, 006 Be sure to use a grounded tip soldering iron in building the v6.0 SoftRock circuit board. The soldering iron needs to have a small tip, (0.05-0. inch diameter),

More information

Pacific Antenna Easy TR Switch

Pacific Antenna Easy TR Switch Pacific Antenna Easy TR Switch Kit Description The Easy TR Switch is an RF sensing circuit with a double pole double throw relay that can be used to automatically switch an antenna between a separate receiver

More information

Read This Page First

Read This Page First Read This Page First If you are reading this you know the manuals are always available at QRPKITS.com. This is version 8.0 of the manual dated 4/27/2016. There is no need to print out the whole assembly

More information

Never power this piano with anything other than a standard 9V battery!

Never power this piano with anything other than a standard 9V battery! Welcome to the exciting world of Digital Electronics! Who is this kit intended for? This kit is intended for anyone from ages 13 and above and assumes no previous knowledge in the field of hobby electronics.

More information

Easy Transmitter. Support ETX_REV5_Manual V2.7 Revised

Easy Transmitter. Support   ETX_REV5_Manual V2.7 Revised Easy Transmitter Introduction The Easy Transmitter kit from qrpkits.com provides a basic, crystal controlled transmitter with VXO tuning to provide a small tuning range around the crystal frequency. It

More information

Construction Guide European Version

Construction Guide European Version Construction Guide European Version PCB This section describes how to build up the DRO-350 printed circuit board (PCB). The bare PCB is available for purchase on the order page. Static Protection Bare

More information

SoftRock v5.0 Builder s Notes. December 12, Building a QSD Kit

SoftRock v5.0 Builder s Notes. December 12, Building a QSD Kit SoftRock v5.0 Builder s Notes December 12, 2005 Building a QSD Kit Be sure to use a grounded tip soldering iron in building the QSD board. The soldering iron needs to have a small tip, (0.05-0.1 inch diameter),

More information

Pacific Antenna - Easy TR Switch

Pacific Antenna - Easy TR Switch Pacific Antenna - Easy TR Switch Kit Description The Easy TR Switch is an RF sensing switch that can be used to switch an antenna between a receiver and transmitter. It also has a second switched pair

More information

tinycylon Assembly Instructions Contents Written by Dale Wheat Version August 2016 Visit dalewheat.com for the latest update!

tinycylon Assembly Instructions Contents Written by Dale Wheat Version August 2016 Visit dalewheat.com for the latest update! tinycylon Assembly Instructions Written by Dale Wheat Version 2.1 10 August 2016 Visit dalewheat.com for the latest update! Contents Assembly Instructions...1 Contents...1 Introduction...2 Quick Start

More information

Bill of Materials: PWM Stepper Motor Driver PART NO

Bill of Materials: PWM Stepper Motor Driver PART NO PWM Stepper Motor Driver PART NO. 2183816 Control a stepper motor using this circuit and a servo PWM signal from an R/C controller, arduino, or microcontroller. Onboard circuitry limits winding current,

More information

IR add-on module circuit board assembly - Jeffrey La Favre January 27, 2015

IR add-on module circuit board assembly - Jeffrey La Favre January 27, 2015 IR add-on module circuit board assembly - Jeffrey La Favre January 27, 2015 1 2 For the main circuits of the line following robot you soldered electronic components on a printed circuit board (PCB). The

More information

FROM SCHEMATIC TO VEROBOARD

FROM SCHEMATIC TO VEROBOARD FROM SCHEMATIC TO VEROBOARD The circuit of a bench amplifier utilising a LM386 linear (integrated circuit) IC and a few other components is used for this tutorial. The schematic is shown below: First a

More information

CompuLign User Guide - V2.0

CompuLign User Guide - V2.0 CompuLign User Guide - V2.0 I. Overview The CompuLign computer driven alignment tool as developed by L. J. Haskell was designed and built as a multi-functional test device to help radio hobbyists align

More information

Building and Operating: Son of Zerobeat A PIC based CW zerobeat indicator from Jackson Harbor Press

Building and Operating: Son of Zerobeat A PIC based CW zerobeat indicator from Jackson Harbor Press Building and Operating: Son of Zerobeat A PIC based CW zerobeat indicator from Jackson Harbor Press Ed Nisley, KE4ZNU, wrote an article published in the August, September and October of 1996 issues of

More information

V6.2 SoftRock Lite Builder s Notes. November 17, 2006

V6.2 SoftRock Lite Builder s Notes. November 17, 2006 V6.2 SoftRock Lite Builder s Notes November 17, 2006 Be sure to use a grounded tip soldering iron in building the v6.2 SoftRock circuit board. The soldering iron needs to have a small tip, (0.05-0.1 inch

More information

Wiring Manual NEScaf April 2010 (August 2006)

Wiring Manual NEScaf April 2010 (August 2006) Wiring Manual NEScaf April 2010 (August 2006) Switched Capacitor Audio Filter The NEScaf is a switched capacitor audio filter (acronym SCAF) built around a building-block type filter chip. The NEScaf will

More information

Assembly Instructions for B7971 Smart Socket

Assembly Instructions for B7971 Smart Socket Assembly Instructions for B7971 Smart Socket Identification and installation of the resistors, Fig1 Segment 1,R1, 22k Segment 4, R4, 22k Segment 2, R2, 27k Segment 3, R3, 27k Segment 5, R5, 27k Segment

More information

Pacific Antenna Easy Transmitter Kit

Pacific Antenna Easy Transmitter Kit Pacific Antenna Easy Transmitter Kit Introduction The Easy Transmitter kit from qrpkits.com provides a crystal controlled transmitter with VXO tuning. The circuit consists of a N3904 based crystal oscillator

More information

ECE3204 D2015 Lab 1. See suggested breadboard configuration on following page!

ECE3204 D2015 Lab 1. See suggested breadboard configuration on following page! ECE3204 D2015 Lab 1 The Operational Amplifier: Inverting and Non-inverting Gain Configurations Gain-Bandwidth Product Relationship Frequency Response Limitation Transfer Function Measurement DC Errors

More information

Combinational logic: Breadboard adders

Combinational logic: Breadboard adders ! ENEE 245: Digital Circuits & Systems Lab Lab 1 Combinational logic: Breadboard adders ENEE 245: Digital Circuits and Systems Laboratory Lab 1 Objectives The objectives of this laboratory are the following:

More information

LAB I. INTRODUCTION TO LAB EQUIPMENT

LAB I. INTRODUCTION TO LAB EQUIPMENT 1. OBJECTIVE LAB I. INTRODUCTION TO LAB EQUIPMENT In this lab you will learn how to properly operate the oscilloscope Agilent MSO6032A, the Keithley Source Measure Unit (SMU) 2430, the function generator

More information

The ability to make basic voltage and resistance measurements using a digital multimeter

The ability to make basic voltage and resistance measurements using a digital multimeter Congratulations on your purchase of a new OneShot chassis! The PC01 OneShot combines a rugged enclosure, power supply, and discrete instrument DI in a compact 1/4U package. A few minutes of assembly are

More information

ECE 2274 Lab 1 (Intro)

ECE 2274 Lab 1 (Intro) ECE 2274 Lab 1 (Intro) Richard Dumene: Spring 2018 Revised: Richard Cooper: Spring 2018 Forward (DO NOT TURN IN) The purpose of this lab course is to familiarize you with high-end lab equipment, and train

More information

MICROGRANNY v2.1 - Assembly Guide

MICROGRANNY v2.1 - Assembly Guide last update: 9. 5. 2017 MICROGRANNY v2.1 - Assembly Guide bastl-instruments.com INTRODUCTION Welcome to the assembly guide for the MicroGranny kit. MicroGranny is a monophonic granular sampler by Bastl

More information

Digital Electronics & Chip Design

Digital Electronics & Chip Design Digital Electronics & Chip Design Lab Manual I: The Utility Board 1999 David Harris The objective of this lab is to assemble your utility board. This board, containing LED displays, switches, and a clock,

More information

Building the Sawdust Regenerative Receiver

Building the Sawdust Regenerative Receiver Building the Sawdust Regenerative Receiver Introduction The Sawdust is a super regenerative receiver using the basic Armstrong design architecture. The receiver uses one toroidal transformer to provide

More information

Sweep / Function Generator User Guide

Sweep / Function Generator User Guide I. Overview Sweep / Function Generator User Guide The Sweep/Function Generator as developed by L. J. Haskell was designed and built as a multi-functional test device to help radio hobbyists align antique

More information

Pacific Antenna Field Strength Indicator Kit

Pacific Antenna Field Strength Indicator Kit Pacific Antenna Field Strength Indicator Kit Description The Field Strength Indicator kit from Pacific Antenna provides a visual way to monitor the presence and relative strength RF fields through the

More information

University of Utah Electrical & Computer Engineering Department ECE 1250 Lab 4 Pulse Width Modulation Circuit

University of Utah Electrical & Computer Engineering Department ECE 1250 Lab 4 Pulse Width Modulation Circuit University of Utah Electrical & Computer Engineering Department ECE 1250 Lab 4 Pulse Width Modulation Circuit Note: Bring textbook & parts used last time to lab. A. Stolp, 1/8/12 rev, Objective Build a

More information

ALX-SSB 5 Band Filter Assembly Manual 19 November 2018

ALX-SSB 5 Band Filter Assembly Manual 19 November 2018 ALX-SSB 5 Band Filter Assembly Manual 19 November 2018 Contents Theory of Operation:... 1 Figure 1... 2 Parts Included:... 4 Board Overview:... 5 Figure 2... 5 Figure 3... 5 Board Assembly:... 6 Cable

More information

KN-Q10 Assembly Manual

KN-Q10 Assembly Manual KN-Q10 Assembly Manual Translated by Adam Rong, BD6CR/4 with permission from Ke Shi, BA6BF Edited by Stephen, VK2RH Revision B, Oct 14, 2010 Thank you for purchasing the KN-Q10 4 Band SSB/CW Dual Mode

More information

Guitarpedalkits.com Overdrive Pedal Build Instructions

Guitarpedalkits.com Overdrive Pedal Build Instructions Page 1 Guitarpedalkits.com Overdrive Pedal Build Instructions Follow the instructions in this guide to build your very own DIY overdrive pedal from GuitarPedalKits.com. If you re a first time builder,

More information

MP573 Assembly guide. Soldering. MP573 Assembly guide PCB split PCB split. Document revision 2.2 Last modification : 22/08/17

MP573 Assembly guide. Soldering. MP573 Assembly guide PCB split PCB split.   Document revision 2.2 Last modification : 22/08/17 MP573 Assembly guide Safety warning The kits are main powered and use potentially lethal voltages. Under no circumstance should someone undertake the realisation of a kit unless he has full knowledge about

More information

N3ZI Kits General Coverage Receiver, Assembly & Operations Manual (For Jun 2011 PCB ) Version 3.33, Jan 2012

N3ZI Kits General Coverage Receiver, Assembly & Operations Manual (For Jun 2011 PCB ) Version 3.33, Jan 2012 N3ZI Kits General Coverage Receiver, Assembly & Operations Manual (For Jun 2011 PCB ) Version 3.33, Jan 2012 Thank you for purchasing my general coverage receiver kit. You can use the photo above as a

More information

Multiple Instrument Station Module

Multiple Instrument Station Module Multiple Instrument Station Module Digital Storage Oscilloscope Vertical Channels Sampling rate Bandwidth Coupling Input impedance Vertical sensitivity Vertical resolution Max. input voltage Horizontal

More information

DeluxeArcade. JAMMA Fingerboard. Introduction. Features. Version 1.1, November 2014 Martin-Jones Technology Ltd

DeluxeArcade. JAMMA Fingerboard. Introduction. Features. Version 1.1, November 2014 Martin-Jones Technology Ltd DeluxeArcade JAMMA Fingerboard Version., November 204 Martin-Jones Technology Ltd http://www.martin-jones.com/ Introduction The Deluxe Arcade JAMMA Fingerboard is designed to make adapting non-jamma arcade

More information

Building the Sawdust Regenerative Receiver

Building the Sawdust Regenerative Receiver Building the Sawdust Regenerative Receiver Introduction The Sawdust is a super regenerative receiver using the basic Armstrong design architecture. The receiver uses one toroidal transformer to provide

More information

Circuit Board Assembly Instructions for Babuinobot 1.0

Circuit Board Assembly Instructions for Babuinobot 1.0 Circuit Board Assembly Instructions for Babuinobot 1.0 Brett Nelson January 2010 1 Features Sensor4 input Sensor3 input Sensor2 input 5v power bus Sensor1 input Do not exceed 5v Ground power bus Programming

More information

IPR LA-3 KIT last update 15 march 06

IPR LA-3 KIT last update 15 march 06 IPR LA-3 KIT last update 15 march 06 PART-2: Audio Circuitry CIRCUIT BOARD LAYOUT: Power and Ground Distribution Now that your power supply is functional, it s time to think about how that power will be

More information

Cricket 80a Assembly Manual v Copyright David Cripe NM0S The 4 State QRP Group

Cricket 80a Assembly Manual v Copyright David Cripe NM0S The 4 State QRP Group Cricket 80a Assembly Manual v. 1.0 Copyright 2017 David Cripe NM0S The 4 State QRP Group Introduction Thank you for purchasing a CRICKET 80a Transceiver. We hope you will enjoy building it and find it

More information

Starving Student II. Starving Student II. SS2 guide. Written By: 6L guides.diyaudio.com/ Page 1 of 24

Starving Student II. Starving Student II. SS2 guide. Written By: 6L guides.diyaudio.com/ Page 1 of 24 SS2 guide Written By: 6L6 2019 guides.diyaudio.com/ Page 1 of 24 INTRODUCTION This is a build guide for the hybrid headphone/pre-amplifier. You can buy a kit at the SSII product listing on the diyaudio

More information

Geiger Counter Kit Assembly Instructions ( )

Geiger Counter Kit Assembly Instructions ( ) Geiger Counter Kit Assembly Instructions (2012-05-11) To build this kit, you should know how to solder. And it will be much easier if you have made other kits before. But even if this is your first kit,

More information

1.0 Introduction to VirtualBench

1.0 Introduction to VirtualBench Table of Contents 1.0 Introduction to VirtualBench... 3 1. 1 VirtualBench in the Laboratory... 3 1.2 VirtualBench Specifications... 4 1.3 Introduction to VirtualBench Getting Started Guide Lab Exercises...

More information

Executive Decision Maker Pro Assembly Guide

Executive Decision Maker Pro Assembly Guide Assembly Guide 1 Introduction Congratulations with acquiring your Executive Decision Make Pro. This guide attempts to follow you through the entire assembly process and should give you help to find order

More information

Instructions for Building the Pulsed Width Modulation Circuit. MC-12 (DC Motor Controller or PWM) From Electronic Light Inc. (revised kit 10/03/08)

Instructions for Building the Pulsed Width Modulation Circuit. MC-12 (DC Motor Controller or PWM) From Electronic Light Inc. (revised kit 10/03/08) Instructions for Building the Pulsed Width Modulation Circuit MC-12 (DC Motor Controller or PWM) From Electronic Light Inc. (revised kit 10/03/08) Congratulations on your purchase of the MC-12 DC Motor

More information

BINARY. Logic functions for analog computation DIY BUILD GUIDE GRAYSCALE.

BINARY. Logic functions for analog computation DIY BUILD GUIDE GRAYSCALE. BINARY Logic functions for analog computation DIY BUILD GUIDE GRAYSCALE http://grayscale.info BINARY DIY BUILD GUIDE Binary from Grayscale is a 1-bit analog computer for digital logic signals. Patch up

More information

LED S METER CONSTRUCTION MANUAL. LED S meter Construction Manual Issue 1.0 Page 1

LED S METER CONSTRUCTION MANUAL. LED S meter Construction Manual Issue 1.0 Page 1 LED S METER CONSTRUCTION MANUAL LED S meter Construction Manual Issue 1.0 Page 1 Important Please read before starting assembly STATIC PRECAUTION The LED S Meter kit contains components which can be damaged

More information

4ms SCM Breakout. Kit Builder's Guide for PCB v2.1 4mspedals.com

4ms SCM Breakout. Kit Builder's Guide for PCB v2.1 4mspedals.com 4ms SCM Breakout Kit Builder's Guide for PCB v2.1 4mspedals.com Shuffling Clock Multiplier Breakout This guide is for building a Shuffling Clock Multiplier Breakout module (SCMBO) version 2.1 from the

More information

16 Bit Micro Experimenter Assembly and Check out Instructions

16 Bit Micro Experimenter Assembly and Check out Instructions 16 Bit Micro Experimenter Assembly and Check out Instructions The kit you purchased that includes PCB, schematic, complete parts list and these assembly instructions. A top picture of the complete assembly

More information

Lab 6: Instrumentation Amplifier

Lab 6: Instrumentation Amplifier Lab 6: Instrumentation Amplifier INTRODUCTION: A fundamental building block for electrical measurements of biological signals is an instrumentation amplifier. In this lab, you will explore the operation

More information

Congratulations on your purchase of the SparkFun Arduino ProtoShield Kit!

Congratulations on your purchase of the SparkFun Arduino ProtoShield Kit! Congratulations on your purchase of the SparkFun Arduino ProtoShield Kit! Well, now what? The focus of this guide is to aid you in turning that box of parts in front of you into a fully functional prototyping

More information

Switch closes when V GS 4Vdc. Figure 1. N Channel MOSFET Equivalent Circuit

Switch closes when V GS 4Vdc. Figure 1. N Channel MOSFET Equivalent Circuit Overview MOSFETS are voltage-controlled switches. Unlike triacs, MOSFETS have the capability of being turned on and turned off. They also switch much faster than triacs. As illustrated in Figure 1, the

More information

Frequency Synthesizer Project ECE145B Winter 2011

Frequency Synthesizer Project ECE145B Winter 2011 Frequency Synthesizer Project ECE145B Winter 2011 The goal of this last project is to develop a frequency synthesized local oscillator using your VCO from Lab 2. The VCO will be locked to a stable crystal

More information

Manual Version July 2007

Manual Version July 2007 Manual Version 1.2 - July 2007 Page 1 Table of Contents Section1: M3 Phono Board Build...3 Phono Board Parts List...3 Preparation...4 Fitting the Valve Bases...6 Installing the Resistors...7 Starting the

More information

EE43 43/100 Fall Final Project: 1: Audio Amplifier, Part Part II II. Part 2: Audio Amplifier. Lab Guide

EE43 43/100 Fall Final Project: 1: Audio Amplifier, Part Part II II. Part 2: Audio Amplifier. Lab Guide EE 3/00 EE FINAL PROJECT PROJECT:AN : AUDIO AUDIO AMPLIFIER AMPLIFIER Part : Audio Amplifier Lab Guide In this lab we re going to extend what you did last time. We re going to use your AC to DC converter

More information

555 Morse Code Practice Oscillator Kit (draft 1.1)

555 Morse Code Practice Oscillator Kit (draft 1.1) This kit was designed to be assembled in about 30 minutes and accomplish the following learning goals: 1. Learn to associate schematic symbols with actual electronic components; 2. Provide a little experience

More information

The Oscilloscope. Vision is the art of seeing things invisible. J. Swift ( ) OBJECTIVE To learn to operate a digital oscilloscope.

The Oscilloscope. Vision is the art of seeing things invisible. J. Swift ( ) OBJECTIVE To learn to operate a digital oscilloscope. The Oscilloscope Vision is the art of seeing things invisible. J. Swift (1667-1745) OBJECTIVE To learn to operate a digital oscilloscope. THEORY The oscilloscope, or scope for short, is a device for drawing

More information

USB Multifunction Arbitrary Waveform Generator AWG2300. User Guide

USB Multifunction Arbitrary Waveform Generator AWG2300. User Guide USB Multifunction Arbitrary Waveform Generator AWG2300 User Guide Contents Safety information... 3 About this guide... 4 AWG2300 specifications... 5 Chapter 1. Product introduction 1 1. Package contents......

More information

Breadboard Primer. Experience. Objective. No previous electronics experience is required.

Breadboard Primer. Experience. Objective. No previous electronics experience is required. Breadboard Primer Experience No previous electronics experience is required. Figure 1: Breadboard drawing made using an open-source tool from fritzing.org Objective A solderless breadboard (or protoboard)

More information

10: AMPLIFIERS. Circuit Connections in the Laboratory. Op-Amp. I. Introduction

10: AMPLIFIERS. Circuit Connections in the Laboratory. Op-Amp. I. Introduction 10: AMPLIFIERS Circuit Connections in the Laboratory From now on you will construct electrical circuits and test them. The usual way of constructing circuits would be to solder each electrical connection

More information

Name & SID 1 : Name & SID 2:

Name & SID 1 : Name & SID 2: EE40 Final Project-1 Smart Car Name & SID 1 : Name & SID 2: Introduction The final project is to create an intelligent vehicle, better known as a robot. You will be provided with a chassis(motorized base),

More information

LumiDax Electronics LLC Bakerboard Analog Trainer. Operator's Guide with Example Projects

LumiDax Electronics LLC Bakerboard Analog Trainer. Operator's Guide with Example Projects LumiDax Electronics LLC Bakerboard Analog Trainer Operator's Guide with Example Projects Written by Jonathan Baumgardner Copyright 2014 Introduction The LumiDax Bakerboard Analog Trainer is an all-in-one

More information

Building The DC Beeper from Jackson Harbor Press A Morse code voltmeter / DC switch

Building The DC Beeper from Jackson Harbor Press A Morse code voltmeter / DC switch Building The DC Beeper and from Jackson Harbor Press Operating A Morse code voltmeter / DC switch The DC Beeper kit is a combination of a Morse code voltmeter with 20 mv resolution and a DC switch. The

More information

12kHz LIF Converter V2.43 9Mhz version

12kHz LIF Converter V2.43 9Mhz version 12kHz LIF Converter V2.43 9Mhz version Please Note: This document supersedes all previously released documents and drawings on the LIF subject. This is the latest and most up-to-date document at this time.

More information

Lab Equipment EECS 311 Fall 2009

Lab Equipment EECS 311 Fall 2009 Lab Equipment EECS 311 Fall 2009 Contents Lab Equipment Overview pg. 1 Lab Components.. pg. 4 Probe Compensation... pg. 8 Finite Instrumentation Impedance. pg.10 Simulation Tools..... pg. 10 1 - Laboratory

More information

Physics 309 Lab 3 Bipolar junction transistor

Physics 309 Lab 3 Bipolar junction transistor Physics 39 Lab 3 Bipolar junction transistor The purpose of this third lab is to learn the principles of operation of a bipolar junction transistor, how to characterize its performances, and how to use

More information

QLG1 GPS Receiver kit

QLG1 GPS Receiver kit QLG1 GPS Receiver kit 1. Introduction Thank you for purchasing the QRP Labs QLG1 GPS Receiver kit. This kit will provide a highly sensitive, highly accurate GPS receiver module, using the popular MediaTek

More information

HT-1A Dual Band CW QRP Transceiver. Kit Building Instructions

HT-1A Dual Band CW QRP Transceiver. Kit Building Instructions HT-A Dual Band CW QRP Transceiver Kit Building Instructions Rev B, July 8, 08 Designed by BD4RG Exclusively distributed by CRKITS.COM and its worldwide distributors Join the group http://groups.io/g/crkits

More information

TKEY-1. CW touch key. (no electromechanical contacts) Assembly manual. Last update: May 1,

TKEY-1. CW touch key. (no electromechanical contacts) Assembly manual. Last update: May 1, TKEY-1 CW touch key (no electromechanical contacts) Assembly manual Last update: May 1, 2016 ea3gcy@gmail.com Updates and news at: www.qsl.net/ea3gcy Thanks for constructing the TKEY-1A CW touch key Have

More information

Precalculations Individual Portion Introductory Lab: Basic Operation of Common Laboratory Instruments

Precalculations Individual Portion Introductory Lab: Basic Operation of Common Laboratory Instruments Name: Date of lab: Section number: M E 345. Lab 1 Precalculations Individual Portion Introductory Lab: Basic Operation of Common Laboratory Instruments Precalculations Score (for instructor or TA use only):

More information

Building a Bitx20 Version 3

Building a Bitx20 Version 3 Building a Bitx20 Version 3 The board can be broken into sections and then built and tested one section at a time. This will make troubleshooting easier as any problems will be confined to one small section.

More information

Assembly Instructions for the 1.5 Watt Amplifier Kit

Assembly Instructions for the 1.5 Watt Amplifier Kit Assembly Instructions for the 1.5 Watt Amplifier Kit 1.) All of the small parts are attached to a sheet of paper indicating both their value and id. 2.) Leave the parts affixed to the paper until you are

More information

Name EET 1131 Lab #2 Oscilloscope and Multisim

Name EET 1131 Lab #2 Oscilloscope and Multisim Name EET 1131 Lab #2 Oscilloscope and Multisim Section 1. Oscilloscope Introduction Equipment and Components Safety glasses Logic probe ETS-7000 Digital-Analog Training System Fluke 45 Digital Multimeter

More information

LA502 Assembly guide Main PCB Resistors - (2)

LA502 Assembly guide Main PCB Resistors - (2) LA502 Assembly guide Safety warning The kits are main powered and use potentially lethal voltages. Under no circumstance should someone undertake the realisation of a kit unless he has full knowledge about

More information

CHAPTER 7 HARDWARE IMPLEMENTATION

CHAPTER 7 HARDWARE IMPLEMENTATION 168 CHAPTER 7 HARDWARE IMPLEMENTATION 7.1 OVERVIEW In the previous chapters discussed about the design and simulation of Discrete controller for ZVS Buck, Interleaved Boost, Buck-Boost, Double Frequency

More information

PAT-4 POWER SUPPLY ASSEMBLY MANUAL Rev B Version

PAT-4 POWER SUPPLY ASSEMBLY MANUAL Rev B Version PAT-4 POWER SUPPLY ASSEMBLY MANUAL Rev B Version 2013 AkitikA, LLC All rights reserved Revision Bp01 November 3, 2013 Page 1 of 16 Table of Contents Table of Contents... 2 Table of Figures... 2 Section

More information

Introduction to Lab Instruments

Introduction to Lab Instruments ECE316, Experiment 00, 2017 Communications Lab, University of Toronto Introduction to Lab Instruments Bruno Korst - bkf@comm.utoronto.ca Abstract This experiment will review the use of three lab instruments

More information

OPERATIONAL AMPLIFIERS (OP-AMPS) II

OPERATIONAL AMPLIFIERS (OP-AMPS) II OPERATIONAL AMPLIFIERS (OP-AMPS) II LAB 5 INTRO: INTRODUCTION TO INVERTING AMPLIFIERS AND OTHER OP-AMP CIRCUITS GOALS In this lab, you will characterize the gain and frequency dependence of inverting op-amp

More information

SPACE WAR GUN KIT MODEL K-10. Assembly and Instruction Manual. Elenco Electronics, Inc.

SPACE WAR GUN KIT MODEL K-10. Assembly and Instruction Manual. Elenco Electronics, Inc. SPACE WAR GUN KIT MODEL K-10 Assembly and Instruction Manual Elenco Electronics, Inc. Copyright 1989 Elenco Electronics, Inc. Revised 2001 REV-H 753210A PARTS LIST Contact Elenco Electronics (address/phone/e-mail

More information

Laboratory Equipment Instruction Manual 2011

Laboratory Equipment Instruction Manual 2011 University of Toronto Department of Electrical and Computer Engineering Instrumentation Laboratory GB341 Laboratory Equipment Instruction Manual 2011 Page 1. Wires and Cables A-2 2. Protoboard A-3 3. DC

More information

ESE141 Circuit Board Instructions

ESE141 Circuit Board Instructions ESE141 Circuit Board Instructions Board Version 2.1 Fall 2006 Washington University Electrical Engineering Basics Because this class assumes no prior knowledge or skills in electrical engineering, electronics

More information

S-Pixie QRP Kit. Student Manual. Revision V 1-0

S-Pixie QRP Kit. Student Manual. Revision V 1-0 S-Pixie QRP Kit Student Manual Revision V 1-0 Introduction The Pixie 2 is a small, versatile radio transceiver that is very popular with QRP (low power) amateur radio operators the world over. It reflects

More information

Basic Electronics Course Part 2

Basic Electronics Course Part 2 Basic Electronics Course Part 2 Simple Projects using basic components Including Transistors & Pots Following are instructions to complete several electronic exercises Image 7. Components used in Part

More information

Notes on OR Data Math Function

Notes on OR Data Math Function A Notes on OR Data Math Function The ORDATA math function can accept as input either unequalized or already equalized data, and produce: RF (input): just a copy of the input waveform. Equalized: If the

More information

How to build a Cracklebox. Red Wierenga Brooklyn College Center for Computer Music October 13, 2015

How to build a Cracklebox. Red Wierenga Brooklyn College Center for Computer Music October 13, 2015 How to build a Cracklebox Red Wierenga Brooklyn College Center for Computer Music October 13, 2015 What s a Cracklebox? What s a Cracklebox? The Cracklebox was developed by Michel Waisvisz and others at

More information

Lesson 2: Soldering. Goals

Lesson 2: Soldering. Goals Introduction: Its time to learn how to solder. So you have met all the components needed to make a DIY Gamer, now it s time to put it together. Soldering is joining the components to the printed circuit

More information

HF Amateur SSB Receiver

HF Amateur SSB Receiver HF Amateur SSB Receiver PCB Set for radio club project http://rhelectronics.net PCB for DIY HF Amateur SSB Receiver 20M The receiver is a simple syperheterodyne type with quartz crystal filter. The circuit

More information

Building the Toothpick Audio CW Filter

Building the Toothpick Audio CW Filter Building the Toothpick Audio CW Filter Introduction The toothpick is a simple variable bandpass audio filter designed to compliment the Splinter QRPp Trans-Receiver. The filter also contains an audio amplifier

More information