Hello World – Arduino UNO with Atmel Studio Elecrom February 18, 2017; Updated On: February 19th, 2017 11 Overview In the last post we got introduced to the Arduino Uno. In this post let us see how to use Arduino Uno (with ATmega328P device) outside of the Arduino software environment. We will use Atmel Studio 7 for programming the Arduino Uno in C. The use of Atmel Studio gives you complete flexibility and … Continue reading Hello World – Arduino UNO with Atmel Studio
Introduction to Arduino UNO (uses AVR ATmega328) Elecrom January 27, 2017; Updated On: January 27th, 2017 4 Overview Arduino is an Open Source embedded development platform which is easy-to-use. It comprises of Hardware boards and Software tools. Examples of some of the most popular Arduino Hardware boards are – Arduino Uno This board is designed around the ATmega328 AVR microcontroller. It is an 8 bit microcontroller with 32KB of flash, 2KB of … Continue reading Introduction to Arduino UNO (uses AVR ATmega328)
Program / Flash Arduino Uno with Atmel Studio Elecrom January 3, 2017; Updated On: June 1st, 2019 1 Overview Programming Arduino Uno with Atmel Studio 7 is super easy. The Arduino Uno is one of the famous platforms for embedded application development using AVR microcontrollers. It is most commonly used with the Arduino’s own software tool. However, many hardcore programmers still prefer to code for AVRs in native C. This approach offers tremendous … Continue reading Program / Flash Arduino Uno with Atmel Studio
Arduino Uno vs Mega 2560 Elecrom January 2, 2017; Updated On: January 5th, 2017 2 Arduino Uno vs Arduino Mega – Which one to choose? The Following table shows the comparison between the three popular Arduino boards. It is primarily a comparison between Arduino Uno vs Mega 2560. Note that the Arduino Mega 1280 is now super seeded by the newer Arduino Mega 2560. The Atmel AVR ATmega2560 has more … Continue reading Arduino Uno vs Mega 2560
ATMEL AVR Tips – Input Output Ports Code Snippets Elecrom August 12, 2015; Updated On: January 4th, 2017 6 In the previous Blog Post ( How to access Input / Output Ports ?) we learned how to use DDRx, PINx, and PORTx registers to access GPIOs. In this post you will find some ready to use AVR Input Output Ports (GPIO) settings (c code snippets) for AVR microcontrollers. This snippets will help you to: … Continue reading ATMEL AVR Tips – Input Output Ports Code Snippets
AVR microcontroller video tutorial – Part 1 Elecrom February 27, 2015; Updated On: January 4th, 2017 1 Part 1 – Introduction to AVR microcontroller Hello, we had recorded this AVR microcontroller video tutorial long time ago for the benefit of students and electronics enthusiasts. Hope you find it useful. I tried my best to give almost impromptu talk. Kindly excuse me for my English. Topics Covered What is AVR ? Difference between … Continue reading AVR microcontroller video tutorial – Part 1
USBasp Drivers for Windows 7 Elecrom June 25, 2010; Updated On: June 25th, 2010 1 I have uploaded USBasp drivers for windows 7. Drivers can be downloaded from the following link: https://www.dropbox.com/s/30yl4p8tbrd3qr6/USBasp%20-%20Drivers%20and%20Sources.zip?dl=0 Instructions: Continue reading USBasp Drivers for Windows 7
AVR fuse bits settings Elecrom April 3, 2010; Updated On: June 1st, 2019 10 Setting AVR fuse bits correctly is most important and equally confusing part for many beginners. In this post I have presented some of the ready to use fuse bit settings and corresponding batch files, which can be used with AVRdude. Link for downloading avrdude batch files (to be used with USBasp) is given at the … Continue reading AVR fuse bits settings
Products Elecrom February 17, 2010; Updated On: February 17th, 2010 11 JAN 2015 – THESE PRODUCTS ARE NO LONGER SOLD. If you are still interested, please send me an email. Following products are available for sell. Continue reading Products
CodeVisionAVR Tip: How to display formatted numbers on LCD Elecrom July 14, 2009; Updated On: October 14th, 2015 24 Generally at some point of time we all need to display something more than “hello world” onto LCD. CodeVisionAVR(cvavr) provides functions like lcd_putsf() and lcd_puts() for displaying strings on LCD. However these function cannot be used directly to display something like : “Vin = 10V” or may be “Value = 0000A01F”. In short these functions … Continue reading CodeVisionAVR Tip: How to display formatted numbers on LCD