www.simpleavr.com writes:
This is a simple rf spectrum analyzer project based on TI Launchpad. i have been working on other rf transceiver projects and in need of a simple rf spectrum analyzer to help me visualize what’s happening.
This is a linux project, i had given attention with my best knowledge to make provisions so that it can be built under windows. however i do not have the time and resources to try out everything under windows.
I did successfully built and run the project under windows 7 w/ TI CCS IDE, for host visualization script, it also works under windows but required you to install some unixish packages (cygwin and more)
I need something simple to show the pattern of frequency hopping. i do not need very accurate display of rf power. the Launchpad came in handy as it is inexpensive and contains fast ADC functions. the included usb to uart is a plus as i can communicate data between the MCU application w/ a PC side application for visualization. there are around a dozen or so commands that you can issue via SPI to control the RFM12B, as well as sending and receiving data.
RFM12B Spectrum Analyzer - [Link]
element14, Microchip and Matrix introduce the new PIC18 Flowcode Developers Kit. Lowers the barrier to electronics design with easy to use Graphical Programming
30 January 2012 – London, element14, the first collaborative global electronics community from Premier Farnell plc (LSE:pfl), has teamed up with Microchip and Matrix to introduce the new PIC18 Flowcode Developers Kit. This innovative development and demonstration kit is designed to offer a hands-on, easy approach to electronics design using Flowcode, one of the world’s most advanced graphical programming languages for microcontrollers.
The development platform is based on a Microchip PIC18F26J50 low power, 8-bit PIC18F26J50 microcontroller, and is integrated with temperature sensor, capacitor touch sensor and potentiometer to help developers verify programs designed using Flowcode.
“The new PIC18 Flowcode Developers Kit is an innovative, fully featured yet low cost solution designed to help developers realize their designs in working hardware,” says Mike Powell, Technology Development Manager, Premier Farnell. “Optimized for Flowcode development, the board has several expansion options, it can be used as a black box and is mounted with a PIC 18 device that is low power, but high performance.
The competitive advantage of Flowcode is that it allows those with little-to-no programming experience to create electronic systems in minutes. Flowcode supports code generation for the PIC® (PIC12, PIC16, and PIC18 series ), PIC24 and dsPIC® series of microcontrollers. The professional edition includes drivers for a range of sub-systems including LCDs, keypads, seven-segment displays, ADC and PWM, as well as communication protocols including I2C, SPI, RS-232RS-232, Zigbee and TCP/IP, among others.
Flowcode is compatible with Microchip’s PICkit programmer as well as third party programmers. It is also compatible with the HI-TECH C compiler. A ‘Lite’ version of Flowcode 4 is included in the kit.
For more information visit element14.
This circuit is a digital sound level meter with a LCD screen, capable of displaying 80 characters (4 rows with 20 characters on each). You can build this LCD display. It also provides more debugging information, such as the minimum and maximum analog-to-digital samples that were measured during each period. [via]
Digital Sound Level Meter - [Link]
Chris The Carpenter has put together possibly the most complete robot module for the Propeller Platform. Called the 444AVXB, he writes… [via]
Let’s start with the name, 444-AVXB stands for:
4 Amps (2 amps x 2 motors) via a L298 motor driver
4 ADC’s (Analog inputs) via a MCP3204 chip
4 Servos with connections to power and with current-limiting resistors on the signal wires
Audio-out (non-amplified)
Video-out via a standard RCA jack
Connections for an X-bee
Connections for a BlueSmirf Bluetooth unithe 444-AVXB was designed with the robot hobbyist in mind. Connections are available for just about every “standard” thing you would find on a small to medium-sized robot. A hefty motor driver handles decent-sized motors with nice screw terminals for both power and motor connections. (4) 3-pin connections are provided for servos which can be powered by either external power or on-board power. An ADC chip allows for 4 analog inputs to be read, great for analog sensors, pots, LDR’s etc.
Video-out takes advantage of the awesome video capability of the prop and can be connected to any TV with a “video-in” and/or many of the cheapie 7” LCD screens (found on Ebay). Audio is just that, audio out with the circuit being the same as can be found on many other propeller products. Pin 15 has been brought forward as well for a Ping))) sonar unit. Finally, there is room and connections for EITHER an X-bee or Bluetooth module. All unused pins are accessible via female headers.
A Robot Module with Everything - [Link]
ad7gd.net writes:
This little board demonstrates the capabilities of the MMA2260 +/- 1.5g X-Axis Micromachined Accelerometer. As you tip it back and forth, LEDs light up to show the magnitude and direction of the G force.
The MMA2260 is the fat SOIC 16 in the upper left, isolated so it could be cut off of the board and used as a breakout, keeping only a pin header and the recommended decoupling and output RC filter.
The microcontroller is a PIC16F628, which is entirely unsuited to this application, having no ADC. I failed to notice that, being quick to note “AN0″ on PORTA and slow to note that it was for a comparator, not an ADC. However, there is a builtin programmable voltage reference which was sufficiently accurate for lighting up 8 LEDs. I’m trying to get away from PICs, as AVRs have spoiled me with their GCC support, many registers and sane memory organization. Even on this project, which is only about 30 lines of C, most of the work was fighting SDCC bugs (failure to banksel, in this case). I’ve discovered a perverse pleasure in soldering down ICs to counteract my packrat nature. It did force me to put an ICSP header on, however.
MMA2260 Accelerometer Demo - [Link]
ermicro.com writes:
The PIC16F690 microcontroller is one of Microchip midrange 8-bit microcontroller that has a build in 10-bit resolution of Analog to Digital Converter (ADC) peripheral. The ADC is one of the important features that enable us to digitize our analog world. Usually we use the electronic sensor to convert the analog value to the voltage level value. Some of the basic sensor such as LDR (Light Dependent Resistor) is used for measuring the light intensity or NTC (Negative Temperature Coefficient) a special resistor for measuring the temperature.
PIC Analog to Digital Converter C Programming – [Link]
ermicro.com writes:
Sometimes we need our microcontroller to interact with more human readable information. It will be better for us if we could make it display the words not just blinking the LED. Today most modern gadget such as mobile phone and PDA, use LCD (Liquid Crystal Display) for interacting with us. In this project we will learn how to use the 2×16 LCD for displaying the room’s temperature.
Actually driving the LCD hardware directly is a complex task, but luckily we don’t have to do that; in the market they have already put it together in one package the LCD display hardware and the microcontroller that control it, so our task will be easier now as we only talk to the build in microcontroller inside. The most famous on the market is the 2×16 LCD with LED backlight using Hitachi HD44780U or the equivalent microcontroller, this 80 pins microcontroller is a special dot matrix LCD driver controller with low power consumption and able to use 4-bit data or 8-bit data interface; my suggestion is to have this HD44780U datasheet near you as we walk through this project.
AVR LCD Thermometer Using ADC and PWM Project – [Link]
ermicro.com writes:
It’s interesting to explore what we can do with this tiny 8 pins; 8-bit microcontroller. The ATtiny13 is the smallest and cheapest Atmel AVR 8-bit microcontroller families but yet, it’s loaded with sophisticated peripherals such as two 8-bit PWM channels and 4 channels 10-bit ADC. Although the memory is quite small; 1 K flash, 64 SRAM and 64 EEPROM but this more the adequate for most PWM and ADC application, if you need more memory, bellow is the list of other Atmel AVR 8 pins microcontrollers which have compatible pins with ATtiny13 microcontroller.
Controlling DC motor with AVR ATtiny13 PWM and ADC Project – [Link]
If you’re interested in how delta-sigma modulators and ADCs work, you should check out this excellent introduction by Uwe Beis: [via]
When looking for an introduction to delta sigma conversion I found that most explanations were from a very theoretical point of view. It took me a while to understand how Delta Sigma converters really work. So I decided to write this introduction for people who prefer circuit diagrams to reading abstract equations.
To understand what I’m talking about you should at least be familiar with:
- Standard analogue techniques (op-amps, comparators etc.)
- Standard digital techniques (latches, binary codes etc.)
- Standard ADCs and DACs (resolution, speed)
- What a low pass filter is (at least an analogue one)
- The sampling theorem (sample frequency > 2 x input bandwidth, alias effects)Delta sigma converters are different from other converters. Note that I do not make a difference between analogue-to-digital (ADC) and digital-to-analogue converters (DAC). Both are very similar and what is realized in one of them using analogue signal processing circuitry is implemented in the other one using digital signal processing and vice versa. I will explain the delta sigma technique with the analogue-to-analogue delta sigma converter as the first object.
An Introduction to Delta-Sigma Converters – [Link]
Wichit Sirichote writes:
This is my student assignment for the class “Designing Microprocessor Based Instrumentation”. The board demonstrates the use of 12-bit ADC, writing c program with digital filtering and interface the LED display. The reading provides 0.1C sensitivity. The optional input of the ADC is available for exercise with other input signals or sensors.
Thermistor Thermometer - [Link]


































