Hello there Engineers and Hobbyists, we all love Arduino's right! But using an Arduino UNO, NANO or any other Arduino for a small task like displaying a simple message on LCD or just Fading LED would be waste of resource and money, so in this video, we would discover a Cheap and Compact Alternative of Arduino called ATTINY85, so let’s get started!
for this Tutorial, we will need
1. Attiny85 Board
https://in.gearbest.com/boards-shields/pp_00949109...
2. Arduino IDE
At Tiny 85 is similar to Arduino, but it is not Arduino,ATTINY 85 is a Micro-Controller chip, which has 6 General Purpose IO pins(GPIO), out of which 5 are PWM enabled, and ATTINY85 also supports the SPI and I2C Communication Protocols, but it has only 8Kb of programming memory, so yes, it is not as capable as Arduino board, but it will work just fine for small projects.
also, this board few other features like
here is a complete data sheet for brief knowledge
we need to add boards (DigiStump's Attiny85) into our Arduino IDE, to do so,
Now, install the drivers on your computer Attached on this Step
sometimes your drivers are not installed correctly, in such (unusual) case, we will follow these steps
we will simply try Blink code, which you can find attached in this step.
<p>/* Blink Code by Akshay Momaya<br> * for Mission Critical Channel
* ATTINY85 Tutorial for <Mission Critical><mission critical="">
* subscribe for more arduino Tuorials and Projects
<a href="https://www.youtube.com/channel/UCM6rbuieQBBLFsxszWA85AQ?sub_confirmation=1">
https://www.youtube.com/channel/UCM6rbuieQBBLFsxs...</a>
*/</mission></p><p>void setup()
{
pinMode(1, OUTPUT);
}</p><p>void loop()
{
digitalWrite(1, HIGH);
delay(1000);
digitalWrite(1, LOW);
delay(1000);
}
</p>normally we would compile and Upload the code with our Arduino Connected, but here in Attiny85, we will
Ouput of this code will show blinking LED on Pin 1 on the Board