presentazione standard di powerpoint - lugman · arduino pouer analog in . yhewÒ e a 2 3456 e...

7

Upload: others

Post on 11-Aug-2020

2 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Presentazione standard di PowerPoint - LugMan · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step 0000 . Title: Presentazione standard di PowerPoint
Page 2: Presentazione standard di PowerPoint - LugMan · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step 0000 . Title: Presentazione standard di PowerPoint

ARDUINO

OPEN - SOURCE

SCHEDINA

ELETTRONICA

MICROCONTROLLORI

ATMEL

BOOTLOADER

SOFTWARE IDE

PSEUDO C++

SHIELD

UNO, MEGA, NANO,

PRO, ecc…

Page 3: Presentazione standard di PowerPoint - LugMan · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step 0000 . Title: Presentazione standard di PowerPoint

DI SE

STESSO’’

‘‘PROGRAMMATORE

Page 4: Presentazione standard di PowerPoint - LugMan · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step 0000 . Title: Presentazione standard di PowerPoint

SEMPLICE.

INTUITIVO.

LINGUAGGIO DI

PROGRAMMAZIO

NE: PSEUDO C++.

FUNZIONI

OBBLIGATORIE:

setup() e loop().

Page 5: Presentazione standard di PowerPoint - LugMan · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step 0000 . Title: Presentazione standard di PowerPoint
Page 6: Presentazione standard di PowerPoint - LugMan · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step 0000 . Title: Presentazione standard di PowerPoint

ESPANDIBILITA’

Page 7: Presentazione standard di PowerPoint - LugMan · ARDUINO pouER ANALOG IN . yhewÒ e a 2 3456 e 123456 01234567 Y ETHERNET SHIELD 2 step 0000 . Title: Presentazione standard di PowerPoint

int pinLed=13;

void setup()

{

pinMode(pinLed, OUTPUT);

}

void loop()

{

digitalWrite(pinLed, HIGH);

delay(1000);

digitalWrite(pinLed, LOW);

delay(1000);

}