Files
SyncHome/trunk/AVRProjects/00_C_Templates/ATTiny85/main.c

27 lines
823 B
C
Raw Normal View History

2023-03-13 09:01:12 +00:00
/* ******************************************************** *
*
* Simple Template for ATMEL Microcontroller *
* -------------------------------------------------------- *
* Created on: 25.07.2016
* Author: Paolo Iocco
* ******************************************************** */
/* ******************************************************** *
ATtiny 13/45/85 Pin map
+-\/-+
/Reset ADC0 PB5 1|o |8 Vcc
ADC3 PB3 2| |7 PB2 ADC1 SCK
ADC2 PB4 3| |6 PB1 OC0B MISO AIN1
GND 4| |5 PB0 OC0A MOSI AIN0
+----+
* ******************************************************** */
#include "main.h"
int main (void)
{
while(1)
{
// Enter your code here
}
}