PRESENTATION DE LA PLATEFORME Mickael Couzinet Jeudi 26 Janvier 2012
KEZAKO ?
Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It's intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments. Source : http://www.arduino.cc
DE L’ELECTRONIQUE WTF?
EVOLUTION DE L’ACCES À INTERNET INTERNET DES OBJETS
ARDUINO, CA COMMUNIQUE AVEC QUOI INTERNET MOTEUR CAPTEUR HARDWARE ET BEAUCOUP D’AUTRES
POURQUOI ARDUINO ? OPEN SOURCE PEU CHER TRES SIMPLE GROSSE COMMUNAUTE CROSS- PLATFORME
HARDWARE
LES CARTES
LES SHIELDS ET BEAUCOUP D’AUTRES
LES ENTREES / SORTIES
UN EXEMPLE DE CABLAGE
UN PEU PLUS COMPLIQUÉ
SOFTWARE ET PROGRAMMATION
INTERFACE DE DÉVELOPPEMENT UNE INTERFACE SIMPLE
LE LANGAGE
HELLO WORLD ! /* Blink Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain. */ void setup() { // initialize the digital pin as an output. // Pin 13 has an LED connected on most Arduino boards: pinMode(13, OUTPUT); } void loop() { digitalWrite(13, HIGH); // set the LED on delay(1000); // wait for a second digitalWrite(13, LOW); // set the LED off delay(1000); // wait for a second }
DES EXEMPLES
DES EXEMPLES
DES QUESTIONS ?

Introduction à Arduino