
- The goal of this tutorial is to get you up and running as quickly as possible.
- You can get to exploring and modifying on your own without having to fiddle with hardware, software, parts, or settings.
- This tutorial will show on how to do an analog-digital conversion with AVR microcontroller.
- AVR will receive data from the it's serial port.
- The two-wire interface consists of two signal lines named SDA (serial data) and SCL (serial clock).
- All devices participating in the bus are connected together.
- The pullups must be small enough to recharge the line capacity in short enough time compared to the desired maximal clock frequency.
Details can be found HERE
- Tutorial for using AVR single chip processors with practical examples.
- This version are excellent for homebrewing every kind of processor-driven electronics.
- The only problem is that assembly has to be learned in order to program these devices.
- These pages are for beginners and help in learning the first steps.
Details can be found HERE
- This page serves as collection of the programs or the collection of AVR assembly code.
- List of the code available is : AtMega as switch, Text output with UART, Switch LED by UART, Perfect timing, Servo controlled by buttons, Servo controlled by UART, Controlling multiple servos by UART and Processing the PPM signal.
Details can be found HERE
- The following tutorial introduces programming of your AVR microcontroller using In System Programming (ISP).
- This programming technique allows you to program the eeprom and flash memories of your chip while in circuit.
- This removes the requirement of placing your chip in a dedicated programmer every time for programming.
- You will need an ISP compatible programmer.
- These come in both parallel and serial versions and can be bought from atmel and many other people.
Details can be found HERE
- The Atmel AVR family is a set of powerful microcontrollers that were designed to be used with the C programming language.
- You can now compile a C program for the AVRs with gcc, then load the program onto the chip using an inexpensive programmer and free tools.
- For Linux users who want to work on digital electronics, robotics, and automation, these chips are the way to go.
- This page is a step-by-step tutorial that presents the simplest, cheapest way to start experimenting with AVRs.
Details can be found HERE
Categories:
Linux
Tutorial
- Tutorial on how to use AVR microcontroller i/o pins.
- Overall will discuss about input , processing it and generating output.
- Understand i/o registers and their correct settings is indispensable part while learning to program any microcontroller.
- This tutorial will show how to use AVR ports and actually code for writing/reading data to/from port pins.
- Really good understanding for beginners.
Details can be found HERE
- This is a guide to control unhacked servos using Timer1 on the ATMega8 chip.
- For those of you using ATMega128 or different Timers this techniques and ideas can easily be applied to your situation.