Skip to main content

Posts

Showing posts with the label Project

Contents

                                                                            Embedded Projects On Facebook Contents of Embedded Projects Blog Embedded Projects PIC Digital Voltmeter using PIC Microcontroller  PC Based Voltmeter Using C#  .N et            PC Based Digital Voltmeter Using PIC            Using RB0 External Interrupt of PIC 16F877A           An Extra UART For Your PIC ·         Generate Sound And Melody Using PIC Microcontroller ·         PIC Serial Communication Tutorial (UART) ·       ...

8051 4 Bit LCD Interfacing Tutorial

Click Here For Character LCD Basics   Lcd Library The mikroC PRO for 8051 provides a library for communication with Lcds (with HD44780 compliant controllers) through the 4-bit interface. An example of Lcd connections is given on the schematic at the bottom of this page. For creating a set of custom Lcd characters use Lcd Custom Character Tool. External dependencies of Lcd Library The following variables must be defined in all projects using Lcd Library : Description : Example : extern sfr sbit LCD_RS: Register Select line. sbit LCD_RS at P2_0_bit; extern sfr sbit LCD_EN: Enable line. sbit LCD_EN at P2_1_bit; extern sfr sbit LCD_D7; Data 7 line. sbit LCD_D7 at P2_5_bit; extern sfr sbit LCD_D6; Data 6 line. sbit LCD_D6 at P2_4_bit; extern sfr sbit LCD_D5; Data 5 line. sbit LCD_D5 at P2_3_bit; extern sfr sbit LCD_D4; Data 4 line. sbit LCD_D4 at P2_2_bi...

USB to Serial Converter using AVR microcontrollers

AVR-CDC converts USB and RS-232C signals using the AVR micro- controller which has no on-chip USB interface. This technology is based on Object Deveopment's V-USB (Software-USB on AVR), and the CDC (Communication Device Class) protocol was extended over it. AVR-CDC enables PC to communicate with the USB device through virtual COM port. The basic idea of using CDC protocol over Low-speed USB is based on Kyosuke Ishikawa's experiment in 2005. To make it stable and practical, Christian Starkjohann in Object Development helped me modifying his V-USB stack. Since three endpoints and the bulk transfer on low-speed device violates the USB standard, I added a tiny patch driver on Windows' USB stack. Although this technology is quite experimental, it may be useful to interface your original system to PC easily. The circuit is very simple, but it requires a certain amount of skills to control. If you need practical or stable solutions, or you are not familiar with electronics n...

Projects Topic List

Projects Topic List With Links   Discussion Group Updated on 11/11/2012 From Cornell University ECE 4760 Designing with Microcontrollers Final Projects OBD-II Autocross/Track Data Logger for BMW E36 M3 (video: hardware , op , in-car ) hackaday 3D paint ( video ) hackaday , EEG pong ( video ) popular science , NYTimes , adafruit , hackaday , DCemu , CNET , engadget , PC world , CBC , Slate , WiSci , mashable , TicTocTrac ( video ) Forbes , hackaday , makerbot , adafruit , arduino blog , geek.com , theVerge , smartplanet , Electronic saxophone--1 ( video ) hackaday , Make , hackedgadgets Electronic saxophone--2 ( video ) hackaday Electronic Dhol (video: description . play ) Building control model ( video ) TFT resistive touch screen ( video ) Auto-composing keyboard ( video ) hackaday , engadget , Ubergizmo , DAS M.I.T.-MAGAZIN FUR INNOVATION , Phased-array speaker system (video: near-field , far-field ) MicroKart 644 --A rec...