+ All Categories
Home > Documents > Presentazione standard di PowerPoint - LugManlugman.org/images/0/03/Pinguini_volanti.pdf · ARDUINO...

Presentazione standard di PowerPoint - LugManlugman.org/images/0/03/Pinguini_volanti.pdf · ARDUINO...

Date post: 21-Jul-2020
Category:
Upload: others
View: 4 times
Download: 0 times
Share this document with a friend
7
Transcript
Page 1: Presentazione standard di PowerPoint - LugManlugman.org/images/0/03/Pinguini_volanti.pdf · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step
Page 2: Presentazione standard di PowerPoint - LugManlugman.org/images/0/03/Pinguini_volanti.pdf · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step

ARDUINO

OPEN - SOURCE

SCHEDINA

ELETTRONICA

MICROCONTROLLORI

ATMEL

BOOTLOADER

SOFTWARE IDE

PSEUDO C++

SHIELD

UNO, MEGA, NANO,

PRO, ecc…

Page 3: Presentazione standard di PowerPoint - LugManlugman.org/images/0/03/Pinguini_volanti.pdf · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step

DI SE

STESSO’’

‘‘PROGRAMMATORE

Page 4: Presentazione standard di PowerPoint - LugManlugman.org/images/0/03/Pinguini_volanti.pdf · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step

SEMPLICE.

INTUITIVO.

LINGUAGGIO DI

PROGRAMMAZIO

NE: PSEUDO C++.

FUNZIONI

OBBLIGATORIE:

setup() e loop().

Page 5: Presentazione standard di PowerPoint - LugManlugman.org/images/0/03/Pinguini_volanti.pdf · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step
Page 6: Presentazione standard di PowerPoint - LugManlugman.org/images/0/03/Pinguini_volanti.pdf · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step

ESPANDIBILITA’

Page 7: Presentazione standard di PowerPoint - LugManlugman.org/images/0/03/Pinguini_volanti.pdf · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step

int pinLed=13;

void setup()

{

pinMode(pinLed, OUTPUT);

}

void loop()

{

digitalWrite(pinLed, HIGH);

delay(1000);

digitalWrite(pinLed, LOW);

delay(1000);

}


Recommended