BalloonSat. Assembly Manual

Size: px
Start display at page:

Download "BalloonSat. Assembly Manual"

Transcription

1 BalloonSat Assembly Manual December 2011 S. B. Ellison Electronics Development Group Department of Physics and Astronomy Louisiana State University Baton Rouge, LA Description BalloonSat is a micro-controller based development board, which serves as the platform for learning to use and apply the Parallax BASIC Stamp micro-controller. BalloonSat includes additional memory, an analog-to-digital converter, a real time clock and a prototyping area. BalloonSat can be used as a compact data acquisition system in the laboratory or integrated into a student designed balloon payload where it can serve as the payload flight computer. BalloonSat is programmed with the Parallax, Inc. BASIC Stamp Editor using the PBASIC language. PBASIC is version of the BASIC language enhanced with a number of specialized input/output (I/O) instructions well suited for data collection and control applications. The Stamp Editor runs on a personal computer where user programs are written, edited, and then downloaded to the BASIC Stamp module. Several different versions of the BASIC Stamp are available from Parallax, Inc. BalloonSat uses the BS2P24 module. Background The BalloonSat design evolved from CanSat, a project conceived by Professor Bob Twiggs at Stanford University's Space Science Development Laboratory. The original CanSat included an auxiliary EEPROM memory chip for data storage and a modem (modulator-demodulator) to allow connection to an external radio transmitter and receiver.

2 The LaACES design for BalloonSat eliminates the modem of CanSat, but provides a number of enhancements including a 4-channel analog-to-digital converter, voltage reference, temperature sensor and 4 on-board LED s for use as visual indicators. CanSat provided pins for connecting external hardware. BalloonSat retains these expansion pins but provides a prototyping area with GND and VCC power buses for use by user provided components or circuits. Theory of operation Operation of BalloonSat is best understood by referring to Figure 1,the BalloonSat Block Diagram and the BalloonSat schematic diagram. Integrated circuit U1 is the Parallax BS2P24 micro-controller module. This module looks somewhat like an integrated circuit but is actually a V IN U3 +5 VDC REGULATOR +5VDC RS-232 Personal Computer DS1 DS2 P7 P6 U1 DS3 DS4 P5 P4 BASIC STAMP BS2P24 I/O Pins P0 P7 I/O Pins P8 P15 Ch 0 Ch 1 U4 P14 P15 P13 U2 EEPROM MEMORY P8 P9 U6 Ch 2 Ch 3 ADC U5 V REF TEMP SENSOR VBATT U7 REAL TIME CLOCK P10 P12 P11 Figure 1.BalloonSat Block Diagram hybrid containing several integrated circuits, transistors and passive components on the 24 pin dual-in-line carrier. This component alone, with a suitable power source and connection to a personal computer running the Parallax software is a self-contained microcomputer. The BASIC Stamp module contains on-chip flash memory for program storage. Once programmed, the BASIC Stamp can be disconnected from the personal computer. The BASIC Stamp begins execution of its downloaded program on power-up. LaACES BalloonSat Assembly 12/12/2011 Page 2 of 17

3 The major functional subsystems of BalloonSat are depicted in the block diagram. The schematic diagram shows all the components and electrical connections. The BASIC Stamp and other integrated circuits all require a clean, stable +5VDC power source, commonly designated as VCC. BalloonSat will accept an external DC power source of +9 to 15VDC. Diode D1 (in the schematic diagram) is a protective device to prevent damage which would be caused by connecting a power source of the wrong polarity. Voltage regulator U3 maintains a constant +5VDC output under conditions of changing input voltage or amount of current required by BalloonSat. The regulator can supply enough current for all of BalloonSat s on-board components as well as some user supplied circuitry connected to the expansion pins or the prototyping area. You should consult the U3 datasheet and make a careful estimate of the power required by any added electronics. Under some conditions, U3 may run hot. A heat sink could be required to help maintain U3 at a safe temperature. The simplest I/O subsystem consists of LED s DS1 DS4. The individual LED s are controlled by I/O pins P4, P5, P6, P7. The series resistors shown in the schematic limit the current to a safe value. These I/O lines could be used for other purposes but the series resistors R1, R2, R3, R4 and/or the LED s might need to be removed, particularly if these pins are needed as input bits. The values of R1-R4 can be changed if more or less current is desired. The other peripherals, EEPROM, ADC, and RTC communicate with the BASIC Stamp via a synchronous serial interface. The block diagram summarizes which I/O pins are used for each device. The BASIC Stamp always serves as the master device in synchronous serial communication. The master initiates all operations and generates the required serial clock signal. Various protocols have been established in the industry for doing synchronous serial I/O. Some common protocols are the Inter-Integrated Circuit (I 2 C) developed by Phillips Semiconductor, Microwire from National Semiconductor, Serial Peripheral Interface (SPI) created by Motorola and the Dallas Semiconductor OneWire protocol. Component datasheets will usually describe the protocol used in sufficient detail for writing and debugging user programs. Example circuits and programs are often available from the chip manufacturer s databooks or websites. The BASIC Stamp has a flash memory for storing the executable program and a limited amount of RAM (random access memory) for variables and data. The flash memory retains the program even if power is lost. The RAM is volatile; data is lost on power failure. U2, a 24LC64, is an electrically-erasable-programmable-read-only-memory (EEPROM) integrated circuit. EEPROM is non-volatile but can be erased and used again. Most EEPROM s have a limited number of write cycles before it wears out but this is usually on the order of 50,000 writes. It is possible to wear out the EEPROM if a user program runs away and repeatedly writes to the EEPROM chip. Inadvertently placing a write routine in an endless loop is a common programming mistake. Fortunately, the EEPROM chip used in BalloonSat is not expensive. U2 conforms to the I 2 C synchronous serial protocol using I/O pin P8 as the bi-directional data line and P9 as the serial clock. See the 24LC series datasheet for details of using the EEPROM. It is often necessary or desirable to have the current time and/or date available to a BASIC Stamp program. For example, a data logging application may need to save a measurement along with the time/date of the measurement for later analysis. Applications may need to perform operations at specified intervals or times or to log the time and date of an event that occurs. It is possible to LaACES BalloonSat Assembly 12/12/2011 Page 3 of 17

4 program the BASIC Stamp to perform time keeping using timing loops created in software, but a better approach is to have a dedicated RTC (real time clock) that continually runs regardless of what other tasks the BASIC Stamp may be performing. Usually an RTC will also have provisions for continuing to run even through a power outage. BalloonSat uses a Dallas Semiconductor DS1302 time keeping chip with a backup battery. A CR2032 lithium coin cell is mounted on the BalloonSat board. The current requirements are so small that the backup battery will typically last its shelf life for this type of application. Note that this backup battery only serves the RTC. The other systems of BalloonSat still require the VCC supply for proper operation. The DS1302 uses a simple three wire serial interface. I/O pin P11 is used as a serial clock. I/O pin P10 is the bi-directional data line, and I/O pin P12 is a chip-select for the DS1302. Although BalloonSat has only U7 connected to these I/O pins, the chip select function allows multiple peripherals to share the same clock and data lines as long as only one of the bussed chips has its chip-select line asserted. U7 requires crystal Y1, a khz resonator, as the frequency determining element of its internal oscillator. BalloonSat features an 8-bit Analog-to-Digital converter with an on-chip 4-channel input multiplexer. This IC, designated U4, is a National Semiconductor ADC0834. The multiplexer allows up to 4 input voltages to be digitized by a single ADC. An Analog Devices AD780 voltage reference integrated circuit provides a selectable 2.5 or 3.0 volt reference for the ADC. Jumper JMP2 selects the desired reference level. Leaving the jumper removed selects 2.5 V. Placing a shorting jumper at JMP3 connects pin 8 of U5 to GND, selecting 3.0 V as the reference output. The AD780 has an internal temperature transducer providing a 2 mv/ o C output. As shown in the block diagram and schematic, the TEMP output from U5 is amplified by opamp U6. Resistors RV1, R5 and R6 determine the voltage gain of this stage. Variable resistor RV1 can be adjusted by a small screwdriver for fine adjustments. The output from U6 can be connected to Ch3 of the ADC. On the BalloonSat board jumper JMP3 allows selecting either the amplified temperature transducer signal or an external voltage source as the input to Ch3. Pads are provided on the circuit board for connecting inputs to the ADC channels. The safe voltage level for these signals is 0 (GND) up to the reference voltage (2.5 or 3.0). External signal conditioning electronics may be required to interface other levels. The ADC0834 communicates with the BASIC Stamp with the MICROWIRE synchronous serial interface. I/O pin P14 is the serial clock, pin P13 is the data line, and P15 is the chip select. Notice in the schematic that the DI (data in) and DO (data out) are both connected to P13. The BASIC Stamp, under software control, will configure P13 as an input or an output depending upon whether the ADC is being written to or being read. It would also be possible to have separate data in and data out I/O lines but it is frequently necessary to conserve I/O pins, particularly in larger systems. Frequently there is a need to create a custom circuit as part of BalloonSat but without the time and expense of a separate circuit board. The prototyping area provides space for soldering components directly on BalloonSat. Pads are provided for GND and VCC and for the BASIC Stamp I/O lines P0 through P15. It is best to draw the desired circuit and layout a tentative component placement plan prior to actually beginning soldering components to the BalloonSat LaACES BalloonSat Assembly 12/12/2011 Page 4 of 17

5 board. Components can be unsoldered and removed but there is always the possibility of damaging the circuit board by excessive heat from the soldering iron. Be sure that BalloonSat s power supply has been disconnected before mounting or soldering components in the prototyping area. Be careful not to short connections to GND or VCC. After any modifications, visually inspect the prototyping area before powering up BalloonSat. BalloonSat version 3.0 includes a 26-pin header (P4) for connection to a LaACES developed sensor signal conditioning subsystem. The sensor board supports pressure, temperature and relative humidity sensors. The signals on the 26-pin connector are listed in Table 8. These signals can also be used to interface to custom designed external circuitry for signal conditioning or other applications. Building the BalloonSat The BalloonSat will be constructed and tested in stages. You will perform inspections and tests at the completion of each stage. Should a problem or failure be discovered, it must be corrected before proceeding to the next stage. The stages and the steps in each stage should be performed in sequence. It is good practice to check off each item as you complete it. A bare BalloonSat printed circuit board is shown in Figure 2. Figure 2. BalloonSat Printed Circuit Board (Component side view) LaACES BalloonSat Assembly 12/12/2011 Page 5 of 17

6 Table 1. BalloonSat Stage 1 Assembly Check off each item as it is completed. JMP1 2-pin male vertical header connector, solder one pin only, then inspect to be sure the assembly is flush against the board and that the pins are vertical. If alignment is correct, solder the remaining pin. J1 U1 Socket only U3 J2 D1 C1 9-pin connector. Carefully guide pins into holes on the printed circuit board. Some pressure may be required to seat the connector flush against the board. Verify alignment of the the pins before soldering. 24-pin integrated circuit socket. Be sure the notch at one end of the socket is oriented to match the part outline on the printed circuit board. Solder only two pins, at diagonal corners of the socket, then inspect to be sure the socket is flush against the board. Solder the remaining pins. Carefully bend the three leads of the IC as shown in the photo. Place the IC on the printed circuit board so that the metal flange is flush against the board, solder one pin. Inspect alignment. Solder remaining two pins. 2-pin power connector (at left in the photo). Before soldering J2, snap on its mating socket (at right in photo) to maintain alignment of the pins during soldering. The shorter pins are inserted through the circuit board. Schottky barrier polarity protection diode, 1N5819, observe orientation of banded end. The band is silver. Be sure to match component outline. Form the leads to 0.4 spacing. Save the clipped leads to be used for test loops. 47 microfarad ( F) electrolytic capacitor, marked with 47uF. This capacitor is polarized.. Observe the polarity markings on the printed circuit board and on the capacitor. C2 0.1 microfarad ( F) monolithic ceramic capacitor, marked 104. Ceramic capacitors are not polarized. C3 0.1 microfarad ( F) monolithic ceramic capacitor, marked 104 C5 0.1 microfarad ( F) monolithic ceramic capacitor, marked 104 C6 0.1 microfarad ( F) monolithic ceramic capacitor, marked 104 C8 0.1 microfarad ( F) monolithic ceramic capacitor, marked 104 C microfarad ( F) monolithic ceramic capacitor, marked 104 C microfarad ( F) monolithic ceramic capacitor, marked 104 C microfarad ( F) monolithic ceramic capacitor, marked 104 C microfarad ( F) monolithic ceramic capacitor, marked 104 C microfarad ( F) monolithic ceramic capacitor, marked 104 LaACES BalloonSat Assembly 12/12/2011 Page 6 of 17

7 C4 15 microfarad ( F) electrolytic capacitor marked 15 uf. This component is polarized. Observe the polarity markings on the printed circuit board and on the capacitor. C7 C20 RN1 Socket only 15microfarad ( F) electrolytic capacitor marked 15 uf. This component is polarized. Observe the polarity markings on the printed circuit board and on the capacitor. 15 microfarad ( F) electrolytic capacitor marked 15 uf. This component is polarized. Observe the polarity markings on the printed circuit board and on the capacitor. There is no pin 1 on this single inline package (SIP), however the resistor networks to be plugged into the sockets later do have pin 1 s. RN2 Socket only U2 Socket only U5 Socket only U6 Socket only U7 Socket only U4 Socket only 8-pin integrated circuit socket. Be sure the notch at one end of the socket is oriented to match the part outline on the printed circuit board 8-pin integrated circuit socket. Be sure the notch at one end of the socket is oriented to match the part outline on the printed circuit board 8-pin integrated circuit socket. Be sure the notch at one end of the socket is oriented to match the part outline on the printed circuit board 8-pin integrated circuit socket. Be sure the notch at one end of the socket is oriented to match the part outline on the printed circuit board 14-pin integrated circuit socket. Be sure the notch at one end of the socket is oriented to match the part outline on the printed circuit board RV1 500 ohm, side adjust, 25-turn potentiometer. Be sure the component is flush against the printed circuit board. Solder one pin only. Verify alignment then solder the remaining pins. R1 R2 R3 R4 R5 2.2 K ¼W 5% resistor (RED-RED-RED) Resistors R1, R2,R3 and R4 are mounted vertically as shown in the photograph above. 2.2 K ¼W 5% resistor (RED-RED-RED) 2.2 K ¼W 5% resistor (RED-RED-RED) 2.2 K ¼W 5% resistor (RED-RED-RED) 1.2 K ¼W 5% resistor (BROWN-RED-RED) LaACES BalloonSat Assembly 12/12/2011 Page 7 of 17

8 R6 DS1 DS2 DS3 DS4 JMP2 JMP3 6.2 K ¼W 5% resistor (BLUE-RED-RED) LED LED LED Light emitting diode (LED). The long lead (anode) connects to the square pad on the printed circuit board. The LED should be about a quarter of an inch above the board. Solder one lead only, then inspect to be sure the LED is vertical. If alignment is correct, solder the remaining lead. Refer to the photograph above. 2-pin male vertical header connector. Solder one pin only, then inspect to be sure the assembly is flush against the board and that the pins are vertical. If alignment is correct, solder the remaining pin. 3-pin male vertical header connector. Solder one pin only, then inspect to be sure the assembly is flush against the board and that the pins are vertical. If alignment is correct, solder the remaining two pins. Y khz crystal resonator. BT1 Battery holder for BT1. Be sure the holder is flush against the printed circuit board before soldering. P4 Test point loop VCC 26-pin right angle header. Solder two pins at diagonal corners. Be sure the alignment is correct then solder the remaining pins. Use the wire lead clipped from a diode or resistor to form a small U-shaped loop at the VCC Test loop. Locations are circled in picture at left. Test point loop GND Test point loop GND Use the wire lead clipped from a diode or resistor to form a small U-shaped loop at the GND Test loop. Use the wire lead clipped from a diode or resistor to form a small U-shaped loop at the GND Test loop. This completes the Stage 1 Assembly. LaACES BalloonSat Assembly 12/12/2011 Page 8 of 17

9 Figure 3. BalloonSat at completion of Stage 1 assembly. Initial tests. Prior to installing the BASIC Stamp micro-controller and the other integrated circuits, you will verify that the power supply section is functioning properly. BalloonSat requires an external power source such as a battery pack or laboratory DC power supply capable of providing 9 to 15 VDC at approximately 100 milliamperes of current. Voltage regulator U3 on the BalloonSat board provides a regulated 5.0 volt output. This power supply level is designated as VCC. Use clip leads or fabricate a power cable to plug into J2 on the BalloonSat board. It is suggested that you color code the leads so that the GND or COMMON lead is BLACK and the + lead is RED. Voltage checks If the laboratory power supply has current limiting, set the current limit to no more than 100 milliamperes and the voltage to 9 volts. If the power supply is not adjustable, any voltage from 9 to 15 VDC is suitable. LaACES BalloonSat Assembly 12/12/2011 Page 9 of 17

10 Perform the following voltage checks. Successful completion is necessary before installing the BASIC Stamp and integrated circuits. The integrated circuits could be damaged by voltages much higher than 5 volts. Table 2. BalloonSat Initial Voltage Checks RED lead point BLACK lead point Expected Value Your Measured Value + pin of J2 GND Test loop 9V to 15V U1-21 GND Test loop 4.75V to 5.25V U1-23 GND Test loop 0.0V U2-8 GND Test loop 4.75V to 5.25V U4-14 GND Test loop 4.75V to 5.25V U5-2 GND Test loop 4.75V to 5.25V U6-7 GND Test loop 4.75V to 5.25V U7-1 GND Test loop 4.75V to 5.25V OK? Turn off the power supply and disconnect the power cable from J2 when the BalloonSat is not in use. This completes the preliminary testing. If the voltage tests results were not as expected, visually inspect the BalloonSat board for defective or missing solder joints or other construction or wiring errors. If all voltage checks were passed, proceed with final assembly. Final Assembly and Testing of BalloonSat In this phase you will plug in the BASIC Stamp module and the other integrated circuits, resistor networks, configuration jumpers and the real-time-clock back-up battery. After a final visual check of your work, you will apply power and perform a series of voltage checks prior to connecting to a personal computer for operational testing. Table 3. Installation of BASIC Stamp and Integrated Circuits. U1 Install U1, BASIC Stamp BS2P24, in its socket. Carefully remove the IC from its protective anti-static envelope. Identify Pin 1 of U1 s socket and Pin 1 on the IC. Align all 24 pins before gently but firmly pressing U1 into the socket. LaACES BalloonSat Assembly 12/12/2011 Page 10 of 17

11 RN1 Install resistor network RN1 in its socket. Verify proper orientation of Pin 1. The component will be marked with a dot near Pin 1. Color may vary. RN2 Install resistor network RN2 in its socket. Verify proper orientation of Pin 1. U2 Install integrated circuit U2, 24LC64 EEPROM in its socket. U2 is an 8-pin DIP package. Verify proper orientation of Pin 1. U4 Install integrated circuit U4, ADC0834 analog-to-digital converter, in its socket. U4 is a 14-pin DIP package. Verify correct orientation of Pin 1. U5 U6 U7 BT1 Install integrated circuit U5, AD780 voltage reference, an 8-pin DIP in its socket. Verify correct orientation of Pin 1. Install integrated circuit U6, AD820 opamp an 8-pin DIP, in its socket. Verify correct orientation of Pin 1. Install integrated circuit U7, DS1302 real-time-clock, an 8-pin DIP, in its socket. Verify correct orientation of Pin 1. Install the CR2032 coin cell in its battery holder. The part number and + sign should be UP and visible when the cell is installed correctly. Jumpers are used to configure options on the BalloonSat. Place jumpers as shown in the table below. This is the default configuration and is suitable for most applications of BalloonSat. Table 4. Installation of configuration jumpers. JMP1 Place a shorting jumper (shunt) on the pins of JMP1. JMP2 Place a shorting jumper (shunt) on the pins of JMP2 LaACES BalloonSat Assembly 12/12/2011 Page 11 of 17

12 JMP3 Place a shorting jumper across pins 2 and 3 of JMP3. This selects Internal Temperature Sensor for ADC channel 3. You are now ready for the final voltage checks of the fully-assembled BalloonSat. Connect to a power supply or battery pack. Perform the following voltage measurements and record the results in the table below. The voltage at U5, pin 6 is the reference voltage generated by U5. The voltage at U5, pin 3 is the BalloonSat internal temperature sensor output. At room temperature it should be about 0.5 volts. BT1 is the backup battery for the real-time-clock. A new CR2032 cell will have a terminal voltage near 3.2 volts. Table 5. BalloonSat Final Voltage Checks RED lead point BLACK lead point Expected Value Your Measured Value VCC Test loop GND Test loop 4.75V to 5.25V U5-6 GND Test loop 3.0V U5-3 GND Test loop About 0.5V Top of BT1 GND Test loop 3.2V OK? Operational Test The final test for the Stage 1 BalloonSat is to verify communication with the BASIC Stamp Editor. Install the Parallax BASIC Stamp Editor on a suitable personal computer. The BASIC Stamp Editor can be downloaded from Parallax, Inc. ( Version was current as of 06/30/2011. Connect BalloonSat to the laboratory power supply and adjust for +9 VDC. Connect a standard serial cable from an available serial port on the computer to the DB-9 connector on BalloonSat. For computers without a standard serial port, you can use a USB-toserial adapter. It should be installed and configured according to the instructions accompanying the adapter. LaACES BalloonSat Assembly 12/12/2011 Page 12 of 17

13 Turn on the power supply, then run the BASIC Stamp Editor. From the Run pull down menu select Identify. The BASIC Stamp Editor for Windows will attempt to establish communications with the BASIC Stamp via any available comm port. You should see a window showing the type of BASIC Stamp detected and its hardware revision number. The version number and comm port number may be different from the example in Figure 4. Figure 4. Screen shot of BASIC Stamp Editor. Programs can be written and downloaded to the BASIC Stamp. Using the BASIC Stamp Editor, type in the simple BASIC program example shown below or you may write your own program. Download and run by clicking the Run icon or from the Run dropdown menu. 'Output a count to the debug screen each second '{$STAMP BS2P} cycles VAR Word 'STAMP directive (specifies a BS2P) 'Variable to store counted cycles. cycles = 0 DEBUG CLS,"BalloonSat starting...",cr Loop: cycles = cycles + 1 PAUSE 1000 DEBUG "Cycle: ", DEC cycles,cr GOTO Loop EXAMPLE PROGRAM Listing 1. Example BASIC program. LaACES BalloonSat Assembly 12/12/2011 Page 13 of 17

14 You should see BalloonSat writing to the debug window each second with the incremented value of the variable cycles. Figure 5. Screen shot of BASIC Stamp Editor window while running the example program. If your BalloonSat passed all voltage checks and runs the example program, it is ready for use. For further information on the BASIC Stamp hardware and software, refer to the Parallax, Inc. website for additional resources including a detailed reference manual and example programs. The Help function built into the BASIC Stamp Editor is a valuable resource for beginning and advanced programmers alike. LaACES BalloonSat Assembly 12/12/2011 Page 14 of 17

15 BalloonSat Connectors and Jumpers Table 6. Connector J1, Serial Communications J1 Pin Signal 2 SOUT, serial data out from BASIC Stamp to host PC 3 SIN, serial data in from host PC to BASIC Stamp 4 ATN, connects to PC DTR for programming 5 GND, Common Table 7. Connector J2, Power Input J2 Pin Signal 1 GND, DC Common GND connection, power source 2 Vin, 9 to 15VDC power input Vin from battery or power supply Table 8. Connector P4, Sensor Board Interface P4 Pin Signal 1 BalloonSat VCC 5.0V from BalloonSat voltage regulator 3 P9 I 2 C SCL (BASIC Stamp P9) 5 P8 I 2 C SDA (BASIC Stamp P8) 7 P3 BASIC Stamp P3 9 P2 BASIC Stamp P2 11 P1 BASIC Stamp P1 13 P0 BASIC Stamp P0 15 ADC3 Analog input to ADC channel 3 17 ADC2 Analog input to ADC channel 2 19 ADC1 Analog input to ADC channel 1 21 ADC0 Analog input to ADC channel 0 23 BalloonSat VREF 2.5V or 3.0V Vref 25 BalloonSat VCC 5.0V from BalloonSat voltage regulator Note: All P4 even numbered pins (2 through 26) are GND Table 9. Jumper JMP1 JMP1 State Function Jumper Inserted Connect ATN line from Stamp to J1 Normal Stamp Editor connection Jumper Removed ATN line disconnected from J1 Terminal emulator, e.g. TERM232 Table 10. Jumper JMP2 JMP2 State Function Jumper Inserted Set BalloonSat Vref = 3.0V Jumper Removed Set BalloonSat Vref = 2.5V Table 11. Jumper JMP3 JMP2 State Function Jumper pin 1 to 2 Select external source for ADC3 Jumper pin 2 to 3 Select internal temperature sensor for ADC3 LaACES BalloonSat Assembly 12/12/2011 Page 15 of 17

16 Table 12. BalloonSat Bill of Materials. BalloonSat Bill of Materials Quantity Part ID Description Semiconductors 1 D1 1N5819 schottky diode, axial leads 4 DS1-DS4 LED, Red wate clear,round 3mm T-1, 0.1in lead spacing 1 U1 BASIC Stamp BS2P24, DIP-24, 0.6in. Spacing 1 U2 24LC64 EEPROM 64K-bit, DIP-8 1 U3 LM7805 Positive 5Volt Regulator, TO U4 ADC channel ADC, DIP-14 (alternate p/n TLC0834) 1 U5 AD780 voltage reference, DIP-8 1 U6 AD820 single operational amplifier, DIP-8 1 U7 DS1302N real-time-clock, DIP-8 Other Electronics 1 BT1 CR2032 Lithium coin cell, 3V, 20mm 1 Y1 Crystal, khz, fundamental, 12.5 pf, radial lead Resistors 4 R1,R2,R3,R4 2.2K 1/4 W 5% RED-RED-RED 1 R5 1.2K 1/4 W 5% BROWN-RED-RED 1 R6 6.2K 1/4 W 5% BLUE-RED-RED 2 RN1,RN2 10K Resister Network, SIP-10 1 RV1 500 ohm top adjust, 20-turn potentiometer, 0.1" LS in-line, Bourns 3299 Capacitors 1 C1 47 uf, 25 volt electrolytic, radial 2mm LS 10 C2,C3,C5,C6,C8, 0.1 uf, 50 V, Kemet monolithic ceramic, 0.2" LS, marked "104" C10-C13,C21 3 C4,C7,C20 15 uf, 25 V, electrolytic, radial, 0.1" LS Hardware 1 PCB BalloonSat Printed circuit Board, LSU 02/2011 BSAT30 1 holder for BT1 Battery holder for CR2032 coin cell, Tyco J1 DB-9F connector, right angle PCB mount 1 J2 2 conductor pin header, 5mm spacing 1 Connector, 2-pin, wire mount (mating connector for J2) 1 P4 Connector, 2 x 13 male pin header, right angle 2 JMP1,JMP2 1 X 2 pin header, 0.1" LS 1 JMP3 1 x 3 pin header, 0.1" LS 3 shunt/jumper Shorting jumper for JMP1,JMP2,JMP3 4 Socket DIP-8 IC socket, 8-pin, 0.3" spacing, machined pin 1 Socket DIP-14 IC socket, 14-pin, 0.3" spacing, machined pin 1 Socket DIP-24 IC socket, 24-pin, 0.6" spacing, machined pin 2 Socket SIP-10 socket, 10-pin, 0.1" pin spacing LaACES BalloonSat Assembly 12/12/2011 Page 16 of 17

17 Figure 7. BalloonSat Component Placement Diagram (Silk Screen Overlay) Figure 8. BalloonSat Copper Layers (Red = Top Copper; Blue = Bottom Copper) Fig 6. BalloonSat Schematic Diagram LaACES BalloonSat Assembly 12/12/2011 Page 17 of 17

BS2p40tm OEM Module. Surface mount/through hole kit By Robert L. Doerr. Manual Revision.5

BS2p40tm OEM Module. Surface mount/through hole kit By Robert L. Doerr. Manual Revision.5 BS2p40tm OEM Module Surface mount/through hole kit 2006 By Robert L. Doerr Manual Revision.5 NOTE: The BASIC Stamp and the BS2p40 and Interpreter chip are trademarks of Parallax. This partial kit allows

More information

BalloonSat Sensor Array

BalloonSat Sensor Array BalloonSat Sensor Array The PICAXE-08M2 in the BalloonSat flight computer is a digital device. Being digital, it functions best with a series of on and off voltages and does not interact very well with

More information

Pacific Antenna Two Tone Generator

Pacific Antenna Two Tone Generator Pacific Antenna Two Tone Generator Description Our Two Tone Generator kit provides two non-harmonic, sine wave signals for testing audio circuits Outputs of approximately 700Hz and 1900Hz and the combination

More information

AVR-M Rev 5 ASSEMBLY

AVR-M Rev 5 ASSEMBLY AVR-M Rev 5 ASSEMBLY The AVR_M is a very compact self contained Atmel AVR mcu controller board. It includes an onboard serial programmer (via PC com port), an I2C eeprom and can use a Mega163, Mega16 or

More information

Storage Card Interface Kit

Storage Card Interface Kit Storage Card Interface Kit for MultiMediaCards(MMC) and Secure Digital Cards (SD) MMSD3K The MMSD3K is complete development kit interfaced to a SD or MMC card. This board ideal for projects that involve

More information

EL Wire sequencer / power supply PART NO

EL Wire sequencer / power supply PART NO EL Wire sequencer / power supply PART NO. 2206213 The EL Wire sequencer is a EL wire power supply capable of powering 50 plus feet of 2.6mm El Wire and 8 ports controlled by a BS2sx. A menu driven command

More information

Storage Card Interface Kit

Storage Card Interface Kit Storage Card Interface Kit for MultiMediaCards(MMC) and Secure Digital Cards (SD) MMSD3F The MMSD3K is complete development kit interfaced to a SD or MMC card. This board ideal for projects that involve

More information

Mega128-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN (317) (317) FAX

Mega128-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN (317) (317) FAX Mega128-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN 46268 (317) 471-1577 (317) 471-1580 FAX http://www.prllc.com GENERAL The Mega128-Development board is designed for

More information

Part Number: PCB-STM32-F4B1 (unpopulated PCB with Discovery module sockets, no other parts) STM32-F4B1 (assembled board, not presently available)

Part Number: PCB-STM32-F4B1 (unpopulated PCB with Discovery module sockets, no other parts) STM32-F4B1 (assembled board, not presently available) PCB-STM32-F4B1 Development baseboard for the STMicro Discovery-F4 module (STMicro part# STM32F4DISCOVERY) PCB Rev 1.00 shown. PCB Rev 1.20 has on-board RS232 drivers. Part Number: PCB-STM32-F4B1 (unpopulated

More information

Universal Keying Adapter 3+

Universal Keying Adapter 3+ Universal Keying Adapter 3+ The Universal Keying Adapter Version 3+ kit will allow you to key nearly any transmitter or transceiver with a straight key, electronic keyer, computer serial or parallel port

More information

Bill of Materials: Picaxe-based IR Control Module Pair PART NO

Bill of Materials: Picaxe-based IR Control Module Pair PART NO Picaxe-based IR Control Module Pair PART NO. 2171014 The IRGEII is an IR (Infra Red) Transmitter and Receiver pair that uses a 38 KHZ frequency of invisible light to communicate simple instructions. The

More information

KPIC-0818P (V050919) Devices Included in this Data sheet: KPIC-0818P

KPIC-0818P (V050919) Devices Included in this Data sheet: KPIC-0818P Devices Included in this Data sheet: KPIC-0818P Features: Carefully designed prototyping area Accepts 8 pin PIC12 series micro-controllers Accepts 14 and 18 Pin PIC16 series Accepts some 8,14 and 18 pin

More information

GLiPIC Ver C Assembly manual Ver 1.0

GLiPIC Ver C Assembly manual Ver 1.0 GLiPIC Ver C Assembly manual Ver 1.0 Last Rev 1.1 Oct 30, 2001 Author: Ranjit Diol Disclaimer and Terms of Agreement As with any kit, only the individual parts supplied are guaranteed against defects and

More information

QRPGuys Digital Dial/Frequency Counter

QRPGuys Digital Dial/Frequency Counter QRPGuys Digital Dial/Frequency Counter First, familiarize yourself with the parts and check for all the components. If a part is missing, please contact us and we will send one. You must use qrpguys.parts@gmail.com

More information

Morse Code Practice Oscillator

Morse Code Practice Oscillator Features Description Keyer speed range: Limited only by keying source True Sine wave tone output Tone Volume Control Tone Frequency Control Internal Speaker 1/8 External Speaker/Headphone Jack RCA Key

More information

OpenSprinkler v2.1u Build Instructions

OpenSprinkler v2.1u Build Instructions OpenSprinkler v2.1u Build Instructions (Note: all images below are 'clickable', in order for you to see the full-resolution details. ) Part 0: Parts Check Part 1: Soldering Part 2: Testing Part 3: Enclosure

More information

ARRL ETP Solder Hour Clock Kit Construction Manual

ARRL ETP Solder Hour Clock Kit Construction Manual ARRL ETP Solder 101 24-Hour Clock Kit Construction Manual Do a complete parts check cross checking the individual parts against the parts list. Pay particular attention to the color code for the resistors:

More information

LED Knight Rider. Yanbu College of Applied Technology. Project Description

LED Knight Rider. Yanbu College of Applied Technology. Project Description LED Knight Rider Yanbu College of Applied Technology Project Description This simple circuit functions as a 12 LED chaser. A single illuminated LED 'walks' left and right in a repeating sequence, similar

More information

Shack Clock kit. U3S Rev 2 PCB 1. Introduction

Shack Clock kit. U3S Rev 2 PCB 1. Introduction Shack Clock kit U3S Rev 2 PCB 1. Introduction Thank you for purchasing the QRP Labs Shack Clock kit. This clock uses the Ultimate3S QRSS/WSPR kit hardware, but a different firmware version. It can be used

More information

BSCB-2 BASIC STAMP CARRIER BOARD

BSCB-2 BASIC STAMP CARRIER BOARD BSCB-2 BASIC STAMP CARRIER BOARD Technical Manual Document Revision: 1.04 Date: 06 August 2003 BiPOM Electronics, Inc. 16301 Blue Ridge Road, Missouri City, Texas 77489 Telephone: 1-713-283-9970 Fax: 1-281-416-2806

More information

Build Your Own Home Security System

Build Your Own Home Security System Build Your Own Home Security System Student Lab Guide Engineering Teaching Laboratory Name Date Lab Partner(s) NEW TERMS Electric Circuit: Electric circuits are paths for transmitting electric current,

More information

RC Tractor Guy Controller V2.1 Assembly Guide

RC Tractor Guy Controller V2.1 Assembly Guide RC Tractor Guy Controller V. Assembly Guide Features 0 Push button inputs Dual axis thumb sticks with built-in push button Rotary encoders with built-in push button MCU Socket to suit Meduino Mega 560

More information

4.1 Parts and Components... IV Assembly Tips... IV Assembly Precautions... IV Required Tools, Equipment and Materials..

4.1 Parts and Components... IV Assembly Tips... IV Assembly Precautions... IV Required Tools, Equipment and Materials.. IV PERSONALITY MODULE ASSEMBLY 4.1 Parts and Components............ IV-1 4.2 Assembly Tips............... IV-1 4.3 Assembly Precautions............ IV-1 4.4 Required Tools, Equipment and Materials.. IV-1

More information

Display Real Time Clock (RTC) On LCD. Version 1.2. Aug Cytron Technologies Sdn. Bhd.

Display Real Time Clock (RTC) On LCD. Version 1.2. Aug Cytron Technologies Sdn. Bhd. Display Real Time Clock (RTC) On LCD PR12 Version 1.2 Aug 2008 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended through suggestion

More information

OpenSprinkler v2.2u Build Instructions

OpenSprinkler v2.2u Build Instructions OpenSprinkler v2.2u Build Instructions (Note: all images below are 'clickable', in order for you to see the full-resolution details. ) Part 0: Parts Check Part 1: Soldering Part 2: Testing Part 3: Enclosure

More information

Schematic Diagram: R2,R3,R4,R7 are ¼ Watt; R5,R6 are 220 Ohm ½ Watt (or two 470 Ohm ¼ Watt in parallel)

Schematic Diagram: R2,R3,R4,R7 are ¼ Watt; R5,R6 are 220 Ohm ½ Watt (or two 470 Ohm ¼ Watt in parallel) Nano DDS VFO Rev_2 Assembly Manual Farrukh Zia, K2ZIA, 2016_0130 Featured in ARRL QST March 2016 Issue Nano DDS VFO is a modification of the original VFO design in Arduino Projects for Amateur Radio by

More information

Sierra Radio Systems. HamStack. Project Board Reference Manual V1.0

Sierra Radio Systems. HamStack. Project Board Reference Manual V1.0 Sierra Radio Systems HamStack Project Board Reference Manual V1.0 Welcome HamStack Project Board Reference Manual Revision 1.0.3 2011 George Zafiropoulos, KJ6VU and John Best, KJ6K This guide provides

More information

Rapid28iXL PIC Prototyping PCB User Manual

Rapid28iXL PIC Prototyping PCB User Manual Description Features This is a PCB designed to facilitate the rapid prototyping of a device based on a 28 pin Microchip PIC microcontroller. To allow users to focus on their application, we take care of

More information

Button Code Kit. Assembly Instructions and User Guide. Single Button Code Entry System

Button Code Kit. Assembly Instructions and User Guide. Single Button Code Entry System Button Code Kit Single Button Code Entry System Assembly Instructions and User Guide Rev 1.0 December 2009 www.alan-parekh.com Copyright 2009 Alan Electronic Projects Inc. 1. Introduction... 4 1.1 Concept

More information

Propeller Project Board USB (#32810)

Propeller Project Board USB (#32810) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Onwards and Upwards, Your near space guide Overview of the NearSys Two Sensor Temperature Array Figure 1. A complete Two Sensor Temperature Array

Onwards and Upwards, Your near space guide Overview of the NearSys Two Sensor Temperature Array Figure 1. A complete Two Sensor Temperature Array The NearSys Two Sensor Temperature Array is a kit that permits a BalloonSat to measure two separate temperatures. When plugged into a flight computer like the BalloonSat Mini, the flight computer provides

More information

Electronics Construction Manual

Electronics Construction Manual Electronics Construction Manual MitchElectronics 2018 Version 1 07/05/2018 www.mitchelectronics.co.uk CONTENTS Introduction 3 How To Solder 4 Resistors 5 Capacitors 6 Diodes and LEDs 7 Switches 8 Transistors

More information

Rapid40iXL PIC Prototyping PCB User Manual

Rapid40iXL PIC Prototyping PCB User Manual Description This is a PCB designed to facilitate the rapid prototyping of a device based on a 40 pin Microchip PIC microcontroller. To allow users to focus on their application, we take care of key housekeeping

More information

Rapid40i PIC Prototyping PCB User Manual

Rapid40i PIC Prototyping PCB User Manual Description This is a PCB designed to facilitate the rapid prototyping of a device based on a 40 pin Microchip PIC microcontroller. To allow users to focus on their application, we take care of key housekeeping

More information

4.0 Blue LED DCF77 Clock documentation

4.0 Blue LED DCF77 Clock documentation 4.0 Blue LED DCF77 Clock documentation 1. LED Clock Main Board PCB mounting: Mount and solder the eight wire bridges. Mount and solder resistors R16, R18, R20, R22. Mount and solder capacitors C1 C3 (pitch

More information

RECORD & PLAYBACK KIT

RECORD & PLAYBACK KIT ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS ADD AN AUDIO MESSAGE TO YOUR PRODUCT WITH THIS RECORD & PLAYBACK KIT Version 2.1 Build Instructions

More information

University of Florida EEL 4744 Drs. Eric M. Schwartz, Karl Gugel & Tao Li Department of Electrical and Computer Engineering

University of Florida EEL 4744 Drs. Eric M. Schwartz, Karl Gugel & Tao Li Department of Electrical and Computer Engineering Page 1/9 Revision 1 OBJECTIVES In this document you will learn how to solder and to debug a board as you are building it. REQUIRED MATERIALS Website documents o UF 68HC12 Development Board Manual (board

More information

MegaAVR-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN (317) (317) FAX

MegaAVR-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN (317) (317) FAX MegaAVR-DEVelopment Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN 46268 (317) 471-1577 (317) 471-1580 FAX http://www.prllc.com GENERAL The MegaAVR-Development board is designed for

More information

RC-210 Repeater Controller Assembly Manual

RC-210 Repeater Controller Assembly Manual Arcom Communications 24035 NE Butteville Rd Aurora, Oregon 97002 (503) 678-6182 arcom@ah6le.net RC-210 Repeater Controller Assembly Manual Hardware Version 3.0 Original Release Date September 13, 2004

More information

Figure 1. A complete Temperature Sensor

Figure 1. A complete Temperature Sensor The NearSys Temperature Sensor is a kit that permits a BalloonSat to measure the temperature of the air, interior, or object the sensor itself is placed in contact with. When plugged into a flight computer

More information

Images Scientific OWI Robotic Arm Interface Kit (PC serial) Article

Images Scientific OWI Robotic Arm Interface Kit (PC serial) Article Images Scientific OWI Robotic Arm Interface Kit (PC serial) Article Images Company Robotic Arm PC Interface allows real time computer control and an interactive script writer/player for programming and

More information

Flight Data Recorder Hardware Version 1.0

Flight Data Recorder Hardware Version 1.0 Flight Data Recorder Hardware Version 1.0 By R. G. Sparber Scope The Flight Data Recorder (FDR) hardware is described here. The software is described in a separate document. The reader can etch their own

More information

Mega128-Net Mega128-Net Mega128 AVR Boot Loader Mega128-Net

Mega128-Net Mega128-Net Mega128 AVR Boot Loader Mega128-Net Mega128-Net Development Board Progressive Resources LLC 4105 Vincennes Road Indianapolis, IN 46268 (317) 471-1577 (317) 471-1580 FAX http://www.prllc.com GENERAL The Mega128-Net development board is designed

More information

KDS Channel DMX Controlled Servo Kit

KDS Channel DMX Controlled Servo Kit KDS00801 8-Channel DMX Controlled Servo Kit This is a DMX512-A controlled servo kit using ANSI approved RJ-45 connectors for DMX networks. Power requirements are 8-20 VDC @ 50 ma. The board features an

More information

H89-Z37 DOUBLE-DENSITY FLOPPY CONTROLLER

H89-Z37 DOUBLE-DENSITY FLOPPY CONTROLLER H8-Z37 DOUBLE DENSITY FLOPPY CONTROLLER 2015 H89-Z37 DOUBLE-DENSITY FLOPPY CONTROLLER Norberto Collado norby@koyado.com 6/6/2015 Revision History and Disclaimer Revision History Revision Date Comments

More information

Electronics Construction Manual

Electronics Construction Manual Electronics Construction Manual MitchElectronics 2019 Version 3 04/02/2019 www.mitchelectronics.co.uk CONTENTS Introduction 3 How To Solder 4 Resistors 5 Capacitors 6 Diodes and LEDs 7 Switches 8 Transistors

More information

MICRO-TRAK 300 MANUAL VER 1.4

MICRO-TRAK 300 MANUAL VER 1.4 MICRO-TRAK 300 MANUAL VER 1.4 The Micro-Trak 300 Version 1.4 is a miniature APRS (Automatic Position Reporting System) transmitter operating on the North American APRS frequency standard of 144.390 MHz.

More information

Board Of Education USB (#28850)

Board Of Education USB (#28850) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 Sales: sales@parallax.com 1-888-512-1024 Tech Support: support@parallax.com 1-888-99-STAMP Web Site:

More information

Building the FlipChip Tester

Building the FlipChip Tester Building the FlipChip Tester 1. Assembly of the Core Board You will need a fine low-wattage soldering iron and a Voltmeter. Take your time to solder the components on the Core Board. Better to spend a

More information

Shack Clock kit PCB Revision: QCU Rev 1 or QCU Rev 3

Shack Clock kit PCB Revision: QCU Rev 1 or QCU Rev 3 1. Introduction Shack Clock kit PCB Revision: QCU Rev 1 or QCU Rev 3 Thank you for purchasing this QRP Labs Shack Clock kit. The kit uses the same PCB and bag of components as some other QRP Labs kits.

More information

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

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

More information

Uzebox Kit Assembly Guide

Uzebox Kit Assembly Guide Uzebox Kit Assembly Guide V1.3 Page 1 of 18 Revision History Version Date Author Description 1.0 01-Nov-2012 A.Bourque Initial release 1.1 6-Nov-2012 A.Bourque Minor corrections 1.2 28-Jan-2014 A.Bourque

More information

An open-source hardware+software project. For design files and additional documentation, please visit:

An open-source hardware+software project. For design files and additional documentation, please visit: An open-source hardware+software project. For design files and additional documentation, please visit: http://www.evilmadscientist.com/go/diavolino Support: http://www.evilmadscientist.com/forum/ Distributed

More information

Uzebox Kit Assembly Guide

Uzebox Kit Assembly Guide Uzebox Kit Assembly Guide V1.7 Page 1 of 21 Revision History Version Date Author Description 1.0 01-Nov-2012 A.Bourque Initial release 1.1 6-Nov-2012 A.Bourque Minor corrections 1.2 28-Jan-2014 A.Bourque

More information

Professional Development Board (#28138)

Professional Development Board (#28138) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

More information

Sierra Radio Systems. Digital Compass. Reference Manual. Version 1.0

Sierra Radio Systems. Digital Compass. Reference Manual. Version 1.0 Sierra Radio Systems Digital Compass Reference Manual Version 1.0 Contents Digital compass board RS485 power injector For more information, go to the Sierra Radio Systems web site at www.sierraradio.net

More information

High Power (15W + 15W) Stereo Amplifier

High Power (15W + 15W) Stereo Amplifier High Power (15W + 15W) Stereo Amplifier Build Instructions Issue 1.0 Build Instructions Before you put any components in the board or pick up the soldering iron, just take a look at the Printed Circuit

More information

QRPGuys Single Lever Keyer/Paddle

QRPGuys Single Lever Keyer/Paddle QRPGuys Single Lever Keyer/Paddle First, familiarize yourself with the parts and check for all the components. If a part is missing, please contact us and we will send one. You must use qrpguys.parts@gmail.com

More information

Insert the male, 90 angled, 2x10 connectors into the corresponding 2x10 sockets and put them in place, flat under the PCB. Solder.

Insert the male, 90 angled, 2x10 connectors into the corresponding 2x10 sockets and put them in place, flat under the PCB. Solder. MC624 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

DLA. DMX512 Analyzer. DLA Users Manual SV2_00 B.lwp copyright ELM Video Technology, Inc.

DLA. DMX512 Analyzer. DLA Users Manual SV2_00 B.lwp copyright ELM Video Technology, Inc. DLA DMX512 Analyzer DLA DLA-HH 1 Table Of Contents IMPORTANT SAFEGUARDS... 2 DLA OVERVIEW... 3 CONNECTION... 3 OPERATION... 3 HARDWARE SETUP... 4 DLA-HH (PORTABLE) LAYOUT... 4 CHASSIS LAYOUT... 4 DLA MENU

More information

R e v. I - 4, N o v e m b e r 2 7,

R e v. I - 4, N o v e m b e r 2 7, K2 OWNER S MANUAL ERRATA R e v. I - 4, N o v e m b e r 2 7, 2 0 1 5 M A K E T H E S E C H A N G E S T O Y O U R R E V. I M A N U A L B E F O R E Y O U B E G I N A S S E M B L Y 1. Page 20, Right Column,

More information

QRPometer Assembly Manual Copyright 2012 David Cripe NM0S The 4 State QRP Group. Introduction

QRPometer Assembly Manual Copyright 2012 David Cripe NM0S The 4 State QRP Group. Introduction QRPometer Assembly Manual Copyright 2012 David Cripe NM0S The 4 State QRP Group Introduction Thank you for purchasing a QRPometer. We hope you will enjoy building it and and find it a useful addition to

More information

Assembling the Printed Circuit Board for the EDE1200 Robot

Assembling the Printed Circuit Board for the EDE1200 Robot This board receives instructions from either a CBL2, a LabPro or (with an adapter cable) an original CBL. The board has two 595 shift registers (each providing 8 bits of on-board memory) and two EDE1200

More information

Advanced Strobe 1.0 Kit

Advanced Strobe 1.0 Kit Kit Instruction Manual Eastern Voltage Research, LLC December 2013, Rev 1 1 http://www.easternvoltageresearch.com Kit Introduction to the Kit Thank you for purchasing the Kit. If you are looking for a

More information

SX48 OEM Module. Surface mount/through hole kit By Robert L. Doerr. Manual Revision 1.0

SX48 OEM Module. Surface mount/through hole kit By Robert L. Doerr. Manual Revision 1.0 SX48 OEM Module Surface mount/through hole kit 2006 By Robert L. Doerr Manual Revision 1.0 NOTE: This kit provides a convenient method for using the SX48BD on a breadboard. It allows you to build a fully

More information

VG-305A AC Traffic Light Controller Kit

VG-305A AC Traffic Light Controller Kit Galak Electronics Electronic kits and components Website: GalakElectronics.com Email: sales@galakelectronics.com Phone: (302) 832-1978 VG-305A AC Traffic Light Controller Kit Thank you for your purchase

More information

PCB-STM32-F3U. Development baseboard for the STMicro Discovery-F3 module (STMicro part# STM32F3DISCOVERY)

PCB-STM32-F3U. Development baseboard for the STMicro Discovery-F3 module (STMicro part# STM32F3DISCOVERY) PCB-STM32-F3U Development baseboard for the STMicro Discovery-F3 module (STMicro part# STM32F3DISCOVERY) Part Number: PCB-STM32-F3U (unpopulated PCB with Discovery module sockets, no other parts) STM32-F3U

More information

DELUXE STEREO AMPLIFIER KIT

DELUXE STEREO AMPLIFIER KIT ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS CREATE YOUR OWN SPEAKER DOCK WITH THIS DELUXE STEREO AMPLIFIER KIT Version 2.0 Build Instructions

More information

RKP08 Component List and Instructions

RKP08 Component List and Instructions RKP08 Component List and Instructions PCB layout Constructed PCB RKP08 Scematic RKP08 Project PCB Page 1 Description The RKP08 project PCB has been designed to use PIC microcontrollers such as the Genie

More information

Code Practice Oscillator (CPO)

Code Practice Oscillator (CPO) Code Practice Oscillator (CPO) Overview Many thanks for your purchase of this code practice oscillator or CPO, this guide is intended to allow you to quickly get operational. The CPO comprises an approx.

More information

BASIC Stamp Activity Board: Features and Specifications

BASIC Stamp Activity Board: Features and Specifications 27905 w / Power Supply 27906 w/o Power Supply BASIC Stamp Activity Board: Features and Specifications The BASIC Stamp Activity Board (BSAC) is a demonstration board for Parallax BASIC Stamp computers (BS1-IC,

More information

Table of Contents. Introductory Material

Table of Contents. Introductory Material Table of Contents Introductory Material 0.1 Equipment Intoduction 1 breadboard area stimulator board 2 The Board of Education The TDS 340 oscilloscope 0.2 Getting Started with the Micro-controller The

More information

World Clock Operating and Assembly Manual

World Clock Operating and Assembly Manual World Clock Operating and Assembly Manual Table of Contents INTRODUCTION... 3 UNPACKING/PARTS LIST... 4 SOLDERING... 5 ASSEMBLY INSTRUCTIONS DISPLAY SLICE... 7 ASSEMBLY INSTRUCTIONS CONTROLLER SLICE...

More information

Propeller Proto Board (#32212) Propeller Proto Board USB (#32812) Proto Board Accessory Kit (# )

Propeller Proto Board (#32212) Propeller Proto Board USB (#32812) Proto Board Accessory Kit (# ) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Figure 1. The BalloonSat Extreme flight computer

Figure 1. The BalloonSat Extreme flight computer The BalloonSat Extreme is one of the largest BalloonSat flight computers. When assembled, students have a programmable flight computer for BalloonSats that s capable of collecting data from up to eight

More information

UF-3701 Power Board Construction Guide

UF-3701 Power Board Construction Guide Page 1/5 Soldering and Part Placement See the Chapter 3 of the MIT 6270 Manual for information on electronic assembly, including soldering techniques and component mounting. Construction Information All

More information

Pacific Antenna Easy TR Switch Kit

Pacific Antenna Easy TR Switch Kit Pacific Antenna Easy TR Switch Kit 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

More information

K1EL Morse Code Practice Oscillator CPO

K1EL Morse Code Practice Oscillator CPO Features This is an oscillator not a Morse keyer Input source can be a keyer or straight key Near Sine wave tone output CPO Tone Volume Control CPO Tone Frequency Control Use headphones or external speaker

More information

The GENIE Light Kit is ideal for introducing simple lighting projects, such as an electronic die, a wearable badge or a night-time warning system.

The GENIE Light Kit is ideal for introducing simple lighting projects, such as an electronic die, a wearable badge or a night-time warning system. Introduction 1 Welcome to the GENIE microcontroller system! The GENIE Light Kit is ideal for introducing simple lighting projects, such as an electronic die, a wearable badge or a night-time warning system.

More information

Infrared Add-On Module for Line Following Robot

Infrared Add-On Module for Line Following Robot 1 Infrared Add-On Module for Line Following Robot January 3, 2015 Jeffrey La Favre The infrared add-on module allows multiple line following robots to operate on the same track by preventing collisions

More information

GE-INTERNATIONAL JOURNAL OF ENGINEERING RESEARCH VOLUME -3, ISSUE -5 (May 2015) IF ISSN: ( )

GE-INTERNATIONAL JOURNAL OF ENGINEERING RESEARCH VOLUME -3, ISSUE -5 (May 2015) IF ISSN: ( ) DESIGN AND IMPLEMENTATION OF MICROCONTROLLER BASED SPEED DATA LOGGER Kriti Jain *, Prem Chand #, Saad Shamsi #, Dimple Taneja #, Rahul Yadav #, Sanjeev Yadav # *Assistant Professor, ECE Department, Amity

More information

GEKCO MODEL CLK036 DIGITAL CLOCK ASSEMBLY & OPERATION MANUAL. GEKCO Inc SW Cypress Ln McMinnville, OR (503) P/N REV 1.

GEKCO MODEL CLK036 DIGITAL CLOCK ASSEMBLY & OPERATION MANUAL. GEKCO Inc SW Cypress Ln McMinnville, OR (503) P/N REV 1. GEKCO MODEL CLK036 DIGITAL CLOCK ASSEMBLY & OPERATION MANUAL GEKCO Inc. 1565 SW Cypress Ln McMinnville, OR 97128 (503) 472-4770 P/N 595-324 REV 1.0 Copyright c 2018 GEKCO Inc. All Rights Reserved Printed

More information

RC-210 Repeater Controller Assembly Manual

RC-210 Repeater Controller Assembly Manual Arcom Communications 24035 NE Butteville Rd Aurora, Oregon 97002 (503) 678-6182 arcom@ah6le.net RC-210 Repeater Controller Assembly Manual Hardware Version 2.5 Reproduction or translation of any part of

More information

solutions for teaching and learning

solutions for teaching and learning RKP18Motor Component List and Instructions PCB layout Constructed PCB Schematic Diagram RKP18Motor Project PCB Page 1 Description The RKP18Motor project PCB has been designed to use PIC microcontrollers

More information

Educato. Assembly Instructions

Educato. Assembly Instructions Product Description The Educato is an Arduino compatible board that has about the functionality of the Arduino Uno. It also has the ability, however, to plug into a solderless breadboard and to have all

More information

SRI-02 Speech Recognition Interface

SRI-02 Speech Recognition Interface SRI-02 Speech Recognition Interface Data & Construction Booklet The Speech Recognition Interface SRI-02 allows one to use the SR-07 Speech Recognition Circuit to create speech controlled electrical devices.

More information

PIC Dev 14 Through hole PCB Assembly and Test Lab 1

PIC Dev 14 Through hole PCB Assembly and Test Lab 1 Name Lab Day Lab Time PIC Dev 14 Through hole PCB Assembly and Test Lab 1 Introduction: The Pic Dev 14 is a simple 8-bit Microchip Pic microcontroller breakout board for learning and experimenting with

More information

A Programmer for the 68HC705C8 MicroController Figure 1 PROG05 As Built PROG05 User Guide Version C1 Page 1 of 14

A Programmer for the 68HC705C8 MicroController Figure 1 PROG05 As Built PROG05 User Guide Version C1 Page 1 of 14 A Programmer for the 68HC705C8 MicroController Figure 1 PROG05 As Built PROG05 User Guide Version C1 Page 1 of 14 Table of Contents midon design 1. Introduction...3 2. Description...4 3. Construction...5

More information

Assembly Instructions (8/14/2014) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement.

Assembly Instructions (8/14/2014) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement. NeoLoch NLT-28P-LCD-5S Assembly Instructions (8/14/2014) Your kit should contain the following items. If you find a part missing, please contact NeoLoch for a replacement. Kit contents: 1 Printed circuit

More information

Building the RGBW LED Controller

Building the RGBW LED Controller Building the RGBW LED Controller A guide for the assembly and operation of your RGBW LED Controller. ver 3.1 Getting Started Parts list - You should have received the following parts: (1) Circuit Board,

More information

JUNEBUG PIC LABORATORY

JUNEBUG PIC LABORATORY JUNEBUG PIC LABORATORY Assembly Instructions The Junebug PIC Lab Introduction Powered from your computers USB port the Junebug is everything you ll need in a small self contained portable PIC Laboratory

More information

Chill Interface PCB Assembly Instructions

Chill Interface PCB Assembly Instructions ExcelValley Chill Interface PCB Waveblaster Module MIDI Interface Board Chill Limited Edition V2 Assembly Kit Standalone midi interface board for Waveblaster synthesizer modules. Suitable for most Waveblaster

More information

Thursday, September 15, electronic components

Thursday, September 15, electronic components electronic components a desktop computer relatively complex inside: screen (CRT) disk drive backup battery power supply connectors for: keyboard printer n more! Thursday, September 15, 2011 integrated

More information

Proto-DB (#28310): Prototyping Daughterboard

Proto-DB (#28310): Prototyping Daughterboard Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

QUASAR KIT No DIGITAL DOWN TIMER 99 MIN WITH PIC

QUASAR KIT No DIGITAL DOWN TIMER 99 MIN WITH PIC QUASAR KIT No 1173 - DIGITAL DOWN TIMER 99 MIN WITH PIC KIT 1173 is a digital countdown timer based on a micro controller, thus securing reliability and excellent operation under any circumstances. It

More information

BITSCOPE Mixed Signal Capture Engine. Kit Assembly Guide

BITSCOPE Mixed Signal Capture Engine. Kit Assembly Guide BITSCOPE Mixed Signal Capture Engine Kit Assembly Guide Kit Assembly Guide Bitscope Designs Suite 1A2, 410 Elizabeth St. Surry Hills NSW 2010 Australia Table of Contents 1 Parts Identification 1 1.1 Before

More information

BASIC Stamp 1 Project Board (#27112) Development / Education Platform for the BASIC Stamp 1

BASIC Stamp 1 Project Board (#27112) Development / Education Platform for the BASIC Stamp 1 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

More information

Installation/assembly manual for DCC/Power shield

Installation/assembly manual for DCC/Power shield Installation/assembly manual for DCC/Power shield The DCC circuit consists of the following components: R1/R6 R2/R3 R4/R5 D1 C2 2 kω resistor ½ Watt (colour code Red/Black/Black/Brown/Brown) 10 kω resistor

More information

DMX CONTROLLED RELAY K8072

DMX CONTROLLED RELAY K8072 Total solder points: 167 Difficulty level: beginner 1 2 3 4 5 advanced DMX CONTROLLED RELAY K8072 f the means o ol. y b y la a re 2 protoc Control DMX51 wn well-kno ILLUSTRATED ASSEMBLY MANUAL Total solder

More information

DEV-1 HamStack Development Board

DEV-1 HamStack Development Board Sierra Radio Systems DEV-1 HamStack Development Board Reference Manual Version 1.0 Contents Introduction Hardware Compiler overview Program structure Code examples Sample projects For more information,

More information