32 lines
935 B
C
32 lines
935 B
C
/* ******************************************************** *
|
|
*
|
|
* Simple Template for ATMEL Microcontroller *
|
|
* -------------------------------------------------------- *
|
|
* Created on: 25.07.2016
|
|
* Author: Paolo Iocco
|
|
* ******************************************************** */
|
|
/* ******************************************************** *
|
|
ATtiny 84 Pin map
|
|
+-\/-+
|
|
GND 1|o |14 GND
|
|
PB0 2| |13 PA0 ADC0
|
|
PB1 3| |12 PA1 ADC1
|
|
/Reset PB3 4| |11 PA2 ADC2
|
|
PB2 5| |10 PA3 ADC3
|
|
ADC7 PA7 6| |9 PA4 ADC4 SCK
|
|
MOSI ADC6 PA6 7| |8 PA5 ADC5 MISO
|
|
+----+
|
|
* ******************************************************** */
|
|
|
|
#include "main.h"
|
|
|
|
int main (void)
|
|
{
|
|
while(1)
|
|
{
|
|
// Enter your code here
|
|
}
|
|
return(0);
|
|
}
|
|
|