SlideShare uma empresa Scribd logo
1 de 49
Baixar para ler offline
P&O.3 
Erik Duval 
@erikduval 
Jose Luis Santos 
@jlsantoso 
Joris Klerkx 
@jkofmsk 
Robin De Croon 
@robindecroon 
Sven Charleer 
@svencharleer
...-1980s
1990s
https://vimeo.com/55658574
http://theswitchtolinux.blogspot.com/2012/12/ 
raspberry-pi-daily-deviations-picture.html
http://www.youtube.com/watch? 
v=5npkz0xY1fo#t=75
http://www.youtube.com/watch?v=5JoARkj7XMA
http://www.youtube.com/watch?v=Nfk1-XMASrk
http://www.instructables.com/id/RaspberryPi- 
Powered-Wearable-Computer/#step1
Pi setup
Raspberry Pi Basics 
login: pi 
password: raspberry 
config: sudo raspi-config 
xwindows: startx 
shutdown: sudo shutdown -h now 
restart: sudo shutdown -r now
GPIO
GPIO 3.3V
GPIO 3.3V
GPIO Programming 
Python 
RPi.GPIO module 
import 
RPi.GPIO 
as 
GPIO 
## 
Import 
GPIO 
library 
GPIO.setmode(GPIO.BCM) 
## 
Use 
board 
pin 
numbering 
GPIO.setup(7, 
GPIO.OUT) 
## 
Setup 
GPIO 
Pin 
7 
to 
OUT 
GPIO.output(7,True) 
## 
Turn 
on 
GPIO 
pin 
7
GPIO Programming 
Python 
RPi.GPIO module 
import 
RPi.GPIO 
as 
GPIO 
## 
Import 
GPIO 
library 
GPIO.setmode(GPIO.BCM) 
## 
Use 
board 
pin 
numbering 
GPIO.setup(7, 
GPIO.IN) 
## 
Setup 
GPIO 
Pin 
7 
to 
IN 
result 
= 
GPIO.input(7) 
## 
Read 
GPIO 
pin 
7
import 
RPi.GPIO 
as 
GPIO 
## 
Import 
GPIO 
library 
GPIO.setmode(GPIO.BCM) 
## 
Use 
board 
pin 
numbering 
GPIO.setup(7, 
GPIO.OUT) 
## 
Setup 
GPIO 
Pin 
7 
to 
OUT 
GPIO.output(7,True) 
## 
Turn 
on 
GPIO 
pin 
7 
import 
RPi.GPIO 
as 
GPIO 
## 
Import 
GPIO 
library 
GPIO.setmode(GPIO.BCM) 
## 
Use 
board 
pin 
numbering 
GPIO.setup(7, 
GPIO.IN) 
## 
Setup 
GPIO 
Pin 
7 
to 
IN 
result 
= 
GPIO.input(7) 
## 
Read 
GPIO 
pin 
7
http://www.youtube.com/watch? 
feature=player_embedded&v=zE5PGeh2K9k
http://www.instructables.com/id/Power-Laces-the-Auto-lacing-shoe/
http://www.youtube.com/watch?feature=player_embedded&v=ZtNEPkwCfxA
Arduino Basics 
Powered by USB 
Data transfer by USB 
Digital pins + Analog pins
Arduino Programming 
Arduino Development Environment 
Language based on C 
http://arduino.cc/en/Reference/HomePage
Arduino Programming
Arduino Programming 
void 
setup() 
{ 
//a 
comment 
in 
the 
setup 
section 
which 
is 
run 
once 
Serial.begin(9600); 
} 
void 
loop() 
{ 
//a 
comment 
in 
the 
loop 
section, 
which 
is 
looped 
forever 
int 
sensorValue 
= 
analogRead(A0); 
if(sensorValue 
> 
0) 
{ 
Serial.println(sensorValue); 
} 
delay(1); 
}
Sensors
#define 
PHOTOSENSE_ANA_PIN 
A0 
void 
setup() 
{ 
//a 
comment 
in 
the 
setup 
section 
which 
is 
run 
once 
Serial.begin(9600); 
} 
void 
loop() 
{ 
int 
microphoneValue 
= 
analogRead(PHOTOSENSE_ANA_PIN); 
Serial.print("Sensor 
Value: 
"); 
Serial.println(microphoneValue); 
delay(1000); 
}
Sensor Arduino 
Raspberry Pi 
a LED 
a
Sensor Arduino 
Raspberry Pi 
a LED 
a 
6
Hook up sensors to Arduino 
(test on pc)
Hook up sensors to Arduino 
(test on pc) 
Plug Arduino into Pi 
(hub)
Hook up sensors to Arduino 
(test on pc) 
Plug Arduino into Pi 
(hub) 
Boot Pi
Devices on Linux 
/dev/serial/by-id/usb-Gravitech_ARDUINO_NANO_13BP1184-if00-port0
Devices on Linux 
/dev/serial/by-id/usb-Gravitech_ARDUINO_NANO_13BP1184-if00-port0
Devices on Linux 
/dev/serial/by-id/usb-Gravitech_ARDUINO_NANO_13BP1184-if00-port0
Devices on Linux 
sudo ln -s 
/dev/serial/by-id/usb-Gravitech_ARDUINO_NANO_13BP1184-if00-port0 
/dev/arduino
Python & Arduino 
/dev/serial/by-id/usb-Gravitech_ARDUINO_NANO_13BP1184-if00-port0
Python & Arduino 
https://pypi.python.org/pypi/pyserial
Python & Arduino 
https://pypi.python.org/pypi/pyserial 
sudo python setup.py install 
TAR -XF
Python & Arduino 
import 
serial 
arduino 
= 
serial.Serial('/dev/arduino', 
9600) 
while 
True: 
value 
= 
arduino.readline() 
print(value)

Mais conteúdo relacionado

Mais procurados

From front-end to the hardware
From front-end to the hardwareFrom front-end to the hardware
From front-end to the hardwareHenri Cavalcante
 
主機自保指南
主機自保指南主機自保指南
主機自保指南維泰 蔡
 
Deploying Prometheus stacks with Juju
Deploying Prometheus stacks with JujuDeploying Prometheus stacks with Juju
Deploying Prometheus stacks with JujuJ.J. Ciarlante
 
Alexander Reelsen - Seccomp for Developers
Alexander Reelsen - Seccomp for DevelopersAlexander Reelsen - Seccomp for Developers
Alexander Reelsen - Seccomp for DevelopersDevDay Dresden
 
How to build Open Hardware self-navigating car robot
How to build Open Hardware self-navigating car robotHow to build Open Hardware self-navigating car robot
How to build Open Hardware self-navigating car robotTomáš Jukin
 
Environmental effects - a ray tracing exercise
Environmental effects - a ray tracing exerciseEnvironmental effects - a ray tracing exercise
Environmental effects - a ray tracing exercisePierangelo Cecchetto
 
Debian 5 Hardening Tips
Debian 5 Hardening TipsDebian 5 Hardening Tips
Debian 5 Hardening Tipss3m1llon
 
Programming simple games with a raspberry pi and
Programming simple games with a raspberry pi andProgramming simple games with a raspberry pi and
Programming simple games with a raspberry pi andKellyn Pot'Vin-Gorman
 
Raspberry Pi with Java (JJUG)
Raspberry Pi with Java (JJUG)Raspberry Pi with Java (JJUG)
Raspberry Pi with Java (JJUG)Stephen Chin
 
IoT: Internet of Things with Python
IoT: Internet of Things with PythonIoT: Internet of Things with Python
IoT: Internet of Things with PythonLelio Campanile
 
Active Web Development
Active Web DevelopmentActive Web Development
Active Web DevelopmentDivya Manian
 

Mais procurados (13)

From front-end to the hardware
From front-end to the hardwareFrom front-end to the hardware
From front-end to the hardware
 
主機自保指南
主機自保指南主機自保指南
主機自保指南
 
Deploying Prometheus stacks with Juju
Deploying Prometheus stacks with JujuDeploying Prometheus stacks with Juju
Deploying Prometheus stacks with Juju
 
firewall
firewallfirewall
firewall
 
Alexander Reelsen - Seccomp for Developers
Alexander Reelsen - Seccomp for DevelopersAlexander Reelsen - Seccomp for Developers
Alexander Reelsen - Seccomp for Developers
 
Python setup
Python setupPython setup
Python setup
 
How to build Open Hardware self-navigating car robot
How to build Open Hardware self-navigating car robotHow to build Open Hardware self-navigating car robot
How to build Open Hardware self-navigating car robot
 
Environmental effects - a ray tracing exercise
Environmental effects - a ray tracing exerciseEnvironmental effects - a ray tracing exercise
Environmental effects - a ray tracing exercise
 
Debian 5 Hardening Tips
Debian 5 Hardening TipsDebian 5 Hardening Tips
Debian 5 Hardening Tips
 
Programming simple games with a raspberry pi and
Programming simple games with a raspberry pi andProgramming simple games with a raspberry pi and
Programming simple games with a raspberry pi and
 
Raspberry Pi with Java (JJUG)
Raspberry Pi with Java (JJUG)Raspberry Pi with Java (JJUG)
Raspberry Pi with Java (JJUG)
 
IoT: Internet of Things with Python
IoT: Internet of Things with PythonIoT: Internet of Things with Python
IoT: Internet of Things with Python
 
Active Web Development
Active Web DevelopmentActive Web Development
Active Web Development
 

Destaque

The game dragon quest[1]
The game dragon quest[1]The game dragon quest[1]
The game dragon quest[1]Julie Platt
 
Arkitektur på vondt og godt
Arkitektur på vondt og godtArkitektur på vondt og godt
Arkitektur på vondt og godtilmyggo
 
соц-дем_07-08'10 (NashKiev.UA)
соц-дем_07-08'10 (NashKiev.UA)соц-дем_07-08'10 (NashKiev.UA)
соц-дем_07-08'10 (NashKiev.UA)NashKiev.UA
 
Health,Wealth,Freedom
Health,Wealth,FreedomHealth,Wealth,Freedom
Health,Wealth,FreedomKC Tan
 
соц-дем 06-07'11 (NashKiev.UA) + social
соц-дем 06-07'11 (NashKiev.UA) + socialсоц-дем 06-07'11 (NashKiev.UA) + social
соц-дем 06-07'11 (NashKiev.UA) + socialNashKiev.UA
 
Досуг в Киеве. Спецпроект
Досуг в Киеве. СпецпроектДосуг в Киеве. Спецпроект
Досуг в Киеве. СпецпроектNashKiev.UA
 
Big Crazy Citation PowerPoint
Big Crazy Citation PowerPointBig Crazy Citation PowerPoint
Big Crazy Citation PowerPointJulie Platt
 
SUW Case Palveluseteli, Eija Seppänen ja Tuomo Melin
SUW Case Palveluseteli, Eija Seppänen ja Tuomo MelinSUW Case Palveluseteli, Eija Seppänen ja Tuomo Melin
SUW Case Palveluseteli, Eija Seppänen ja Tuomo MelinOulu Wellness Institute
 
Priori Data - Mobile Tech Con Berlin - Summer 2013
Priori Data - Mobile Tech Con Berlin - Summer 2013Priori Data - Mobile Tech Con Berlin - Summer 2013
Priori Data - Mobile Tech Con Berlin - Summer 2013Patrick Kane
 
Grain cash seed bank
Grain cash seed bankGrain cash seed bank
Grain cash seed bankarunima1989
 
Global Markets For Dental Devices – Germany, United Kingdom, United States, A...
Global Markets For Dental Devices – Germany, United Kingdom, United States, A...Global Markets For Dental Devices – Germany, United Kingdom, United States, A...
Global Markets For Dental Devices – Germany, United Kingdom, United States, A...Market Research & Data Services
 

Destaque (14)

The game dragon quest[1]
The game dragon quest[1]The game dragon quest[1]
The game dragon quest[1]
 
Arkitektur på vondt og godt
Arkitektur på vondt og godtArkitektur på vondt og godt
Arkitektur på vondt og godt
 
соц-дем_07-08'10 (NashKiev.UA)
соц-дем_07-08'10 (NashKiev.UA)соц-дем_07-08'10 (NashKiev.UA)
соц-дем_07-08'10 (NashKiev.UA)
 
Lesson plan
Lesson planLesson plan
Lesson plan
 
Download8
Download8Download8
Download8
 
Health,Wealth,Freedom
Health,Wealth,FreedomHealth,Wealth,Freedom
Health,Wealth,Freedom
 
соц-дем 06-07'11 (NashKiev.UA) + social
соц-дем 06-07'11 (NashKiev.UA) + socialсоц-дем 06-07'11 (NashKiev.UA) + social
соц-дем 06-07'11 (NashKiev.UA) + social
 
Досуг в Киеве. Спецпроект
Досуг в Киеве. СпецпроектДосуг в Киеве. Спецпроект
Досуг в Киеве. Спецпроект
 
Big Crazy Citation PowerPoint
Big Crazy Citation PowerPointBig Crazy Citation PowerPoint
Big Crazy Citation PowerPoint
 
Download
DownloadDownload
Download
 
SUW Case Palveluseteli, Eija Seppänen ja Tuomo Melin
SUW Case Palveluseteli, Eija Seppänen ja Tuomo MelinSUW Case Palveluseteli, Eija Seppänen ja Tuomo Melin
SUW Case Palveluseteli, Eija Seppänen ja Tuomo Melin
 
Priori Data - Mobile Tech Con Berlin - Summer 2013
Priori Data - Mobile Tech Con Berlin - Summer 2013Priori Data - Mobile Tech Con Berlin - Summer 2013
Priori Data - Mobile Tech Con Berlin - Summer 2013
 
Grain cash seed bank
Grain cash seed bankGrain cash seed bank
Grain cash seed bank
 
Global Markets For Dental Devices – Germany, United Kingdom, United States, A...
Global Markets For Dental Devices – Germany, United Kingdom, United States, A...Global Markets For Dental Devices – Germany, United Kingdom, United States, A...
Global Markets For Dental Devices – Germany, United Kingdom, United States, A...
 

Semelhante a PenO 3 2014 sessie 2

Scottish Ruby Conference 2010 Arduino, Ruby RAD
Scottish Ruby Conference 2010 Arduino, Ruby RADScottish Ruby Conference 2010 Arduino, Ruby RAD
Scottish Ruby Conference 2010 Arduino, Ruby RADlostcaggy
 
pcDuino Presentation at SparkFun
pcDuino Presentation at SparkFunpcDuino Presentation at SparkFun
pcDuino Presentation at SparkFunJingfeng Liu
 
Raspberry pi-spectrum-analyzer-display-on-rgb-led-strip
Raspberry pi-spectrum-analyzer-display-on-rgb-led-stripRaspberry pi-spectrum-analyzer-display-on-rgb-led-strip
Raspberry pi-spectrum-analyzer-display-on-rgb-led-stripStefan Oprea
 
Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !Dobrica Pavlinušić
 
Introduction to Raspberry Pi and GPIO
Introduction to Raspberry Pi and GPIOIntroduction to Raspberry Pi and GPIO
Introduction to Raspberry Pi and GPIOKris Findlay
 
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session MaterialsBruno Capuano
 
IoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3BIoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3BJingfeng Liu
 
When a robot is smart enough?
When a robot is smart enough?When a robot is smart enough?
When a robot is smart enough?Tomáš Jukin
 
Innovation with pcDuino
Innovation with pcDuinoInnovation with pcDuino
Innovation with pcDuinoJingfeng Liu
 
Introduction to Arduino and Circuits
Introduction to Arduino and CircuitsIntroduction to Arduino and Circuits
Introduction to Arduino and CircuitsJason Griffey
 
All about ir arduino - cool
All about ir   arduino - coolAll about ir   arduino - cool
All about ir arduino - coolVlada Stoja
 
Cassiopeia Ltd - standard Arduino workshop
Cassiopeia Ltd - standard Arduino workshopCassiopeia Ltd - standard Arduino workshop
Cassiopeia Ltd - standard Arduino workshoptomtobback
 
Using arduino and raspberry pi for internet of things
Using arduino and raspberry pi for internet of thingsUsing arduino and raspberry pi for internet of things
Using arduino and raspberry pi for internet of thingsSudar Muthu
 
Controlling robots using javascript
Controlling robots using javascriptControlling robots using javascript
Controlling robots using javascriptSudar Muthu
 
Getting Started With Raspberry Pi - UCSD 2013
Getting Started With Raspberry Pi - UCSD 2013Getting Started With Raspberry Pi - UCSD 2013
Getting Started With Raspberry Pi - UCSD 2013Tom Paulus
 
Raspberry pi tutorial
Raspberry pi tutorialRaspberry pi tutorial
Raspberry pi tutorialImad Rhali
 
Python and Machine Learning
Python and Machine LearningPython and Machine Learning
Python and Machine Learningtrygub
 

Semelhante a PenO 3 2014 sessie 2 (20)

Scottish Ruby Conference 2010 Arduino, Ruby RAD
Scottish Ruby Conference 2010 Arduino, Ruby RADScottish Ruby Conference 2010 Arduino, Ruby RAD
Scottish Ruby Conference 2010 Arduino, Ruby RAD
 
pcDuino Presentation at SparkFun
pcDuino Presentation at SparkFunpcDuino Presentation at SparkFun
pcDuino Presentation at SparkFun
 
Raspberry pi-spectrum-analyzer-display-on-rgb-led-strip
Raspberry pi-spectrum-analyzer-display-on-rgb-led-stripRaspberry pi-spectrum-analyzer-display-on-rgb-led-strip
Raspberry pi-spectrum-analyzer-display-on-rgb-led-strip
 
Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !
 
Introduction to Raspberry Pi and GPIO
Introduction to Raspberry Pi and GPIOIntroduction to Raspberry Pi and GPIO
Introduction to Raspberry Pi and GPIO
 
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
 
IoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3BIoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3B
 
Scratch pcduino
Scratch pcduinoScratch pcduino
Scratch pcduino
 
When a robot is smart enough?
When a robot is smart enough?When a robot is smart enough?
When a robot is smart enough?
 
Innovation with pcDuino
Innovation with pcDuinoInnovation with pcDuino
Innovation with pcDuino
 
Introduction to Arduino and Circuits
Introduction to Arduino and CircuitsIntroduction to Arduino and Circuits
Introduction to Arduino and Circuits
 
P&O Session 2
P&O Session 2P&O Session 2
P&O Session 2
 
All about ir arduino - cool
All about ir   arduino - coolAll about ir   arduino - cool
All about ir arduino - cool
 
Cassiopeia Ltd - standard Arduino workshop
Cassiopeia Ltd - standard Arduino workshopCassiopeia Ltd - standard Arduino workshop
Cassiopeia Ltd - standard Arduino workshop
 
Using arduino and raspberry pi for internet of things
Using arduino and raspberry pi for internet of thingsUsing arduino and raspberry pi for internet of things
Using arduino and raspberry pi for internet of things
 
Controlling robots using javascript
Controlling robots using javascriptControlling robots using javascript
Controlling robots using javascript
 
Getting Started With Raspberry Pi - UCSD 2013
Getting Started With Raspberry Pi - UCSD 2013Getting Started With Raspberry Pi - UCSD 2013
Getting Started With Raspberry Pi - UCSD 2013
 
Raspberry pi tutorial
Raspberry pi tutorialRaspberry pi tutorial
Raspberry pi tutorial
 
Python and Machine Learning
Python and Machine LearningPython and Machine Learning
Python and Machine Learning
 
Johnny-Five
Johnny-FiveJohnny-Five
Johnny-Five
 

Mais de Sven Charleer

Game UX Summit - Designing for the Audience
Game UX Summit - Designing for the AudienceGame UX Summit - Designing for the Audience
Game UX Summit - Designing for the AudienceSven Charleer
 
Don't Let the Data Do the Talking: Better Data Visualisation through UX Design
Don't Let the Data Do the Talking: Better Data Visualisation through UX DesignDon't Let the Data Do the Talking: Better Data Visualisation through UX Design
Don't Let the Data Do the Talking: Better Data Visualisation through UX DesignSven Charleer
 
Data driven dialogue through collaborative dashboards
Data driven dialogue through collaborative dashboardsData driven dialogue through collaborative dashboards
Data driven dialogue through collaborative dashboardsSven Charleer
 
Real-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
Real-time dashboards to support eSports spectators - CHI PLAY '18 MelbourneReal-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
Real-time dashboards to support eSports spectators - CHI PLAY '18 MelbourneSven Charleer
 
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...Sven Charleer
 
Preliminary PhD Defence - Student-facing Dashboards
Preliminary PhD Defence - Student-facing DashboardsPreliminary PhD Defence - Student-facing Dashboards
Preliminary PhD Defence - Student-facing DashboardsSven Charleer
 
Studie Traject Begeleiding, Learning Dashboards
Studie Traject Begeleiding, Learning DashboardsStudie Traject Begeleiding, Learning Dashboards
Studie Traject Begeleiding, Learning DashboardsSven Charleer
 
Creating Effective Learning Analytics Dashboards: 
Lessons Learnt
Creating Effective Learning Analytics Dashboards: 
Lessons LearntCreating Effective Learning Analytics Dashboards: 
Lessons Learnt
Creating Effective Learning Analytics Dashboards: 
Lessons LearntSven Charleer
 
Faceted Search on Coordinated Tablets and Tabletop: a Comparison
Faceted Search on Coordinated Tablets and Tabletop: a ComparisonFaceted Search on Coordinated Tablets and Tabletop: a Comparison
Faceted Search on Coordinated Tablets and Tabletop: a ComparisonSven Charleer
 
Intro to Learning Analytics
Intro to Learning AnalyticsIntro to Learning Analytics
Intro to Learning AnalyticsSven Charleer
 
PoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
PoPI: Glyph Designs for Collaborative Filtering on Interactive TabletopsPoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
PoPI: Glyph Designs for Collaborative Filtering on Interactive TabletopsSven Charleer
 
Exploring Inquiry-Based Learning Analytics through Interactive Surfaces
Exploring Inquiry-Based Learning Analytics through Interactive SurfacesExploring Inquiry-Based Learning Analytics through Interactive Surfaces
Exploring Inquiry-Based Learning Analytics through Interactive SurfacesSven Charleer
 
Leren, Doceren en Technologie: Visual Learning Analytics Workshop
Leren, Doceren en Technologie: Visual Learning Analytics WorkshopLeren, Doceren en Technologie: Visual Learning Analytics Workshop
Leren, Doceren en Technologie: Visual Learning Analytics WorkshopSven Charleer
 
Science 2.0 and 
Visual Data Exploration using Augmented Reality
Science 2.0 and 
Visual Data Exploration using Augmented RealityScience 2.0 and 
Visual Data Exploration using Augmented Reality
Science 2.0 and 
Visual Data Exploration using Augmented RealitySven Charleer
 
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)Sven Charleer
 
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ HarvardLearning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ HarvardSven Charleer
 

Mais de Sven Charleer (20)

Game UX Summit - Designing for the Audience
Game UX Summit - Designing for the AudienceGame UX Summit - Designing for the Audience
Game UX Summit - Designing for the Audience
 
Don't Let the Data Do the Talking: Better Data Visualisation through UX Design
Don't Let the Data Do the Talking: Better Data Visualisation through UX DesignDon't Let the Data Do the Talking: Better Data Visualisation through UX Design
Don't Let the Data Do the Talking: Better Data Visualisation through UX Design
 
Data driven dialogue through collaborative dashboards
Data driven dialogue through collaborative dashboardsData driven dialogue through collaborative dashboards
Data driven dialogue through collaborative dashboards
 
Real-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
Real-time dashboards to support eSports spectators - CHI PLAY '18 MelbourneReal-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
Real-time dashboards to support eSports spectators - CHI PLAY '18 Melbourne
 
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
Designing and Evaluating Student-facing Learning Dashboards: Lessons Learnt (...
 
Preliminary PhD Defence - Student-facing Dashboards
Preliminary PhD Defence - Student-facing DashboardsPreliminary PhD Defence - Student-facing Dashboards
Preliminary PhD Defence - Student-facing Dashboards
 
Studie Traject Begeleiding, Learning Dashboards
Studie Traject Begeleiding, Learning DashboardsStudie Traject Begeleiding, Learning Dashboards
Studie Traject Begeleiding, Learning Dashboards
 
Creating Effective Learning Analytics Dashboards: 
Lessons Learnt
Creating Effective Learning Analytics Dashboards: 
Lessons LearntCreating Effective Learning Analytics Dashboards: 
Lessons Learnt
Creating Effective Learning Analytics Dashboards: 
Lessons Learnt
 
Faceted Search on Coordinated Tablets and Tabletop: a Comparison
Faceted Search on Coordinated Tablets and Tabletop: a ComparisonFaceted Search on Coordinated Tablets and Tabletop: a Comparison
Faceted Search on Coordinated Tablets and Tabletop: a Comparison
 
Peno3server
Peno3serverPeno3server
Peno3server
 
Intro to Learning Analytics
Intro to Learning AnalyticsIntro to Learning Analytics
Intro to Learning Analytics
 
PENO3
PENO3PENO3
PENO3
 
PoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
PoPI: Glyph Designs for Collaborative Filtering on Interactive TabletopsPoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
PoPI: Glyph Designs for Collaborative Filtering on Interactive Tabletops
 
Exploring Inquiry-Based Learning Analytics through Interactive Surfaces
Exploring Inquiry-Based Learning Analytics through Interactive SurfacesExploring Inquiry-Based Learning Analytics through Interactive Surfaces
Exploring Inquiry-Based Learning Analytics through Interactive Surfaces
 
Leren, Doceren en Technologie: Visual Learning Analytics Workshop
Leren, Doceren en Technologie: Visual Learning Analytics WorkshopLeren, Doceren en Technologie: Visual Learning Analytics Workshop
Leren, Doceren en Technologie: Visual Learning Analytics Workshop
 
Science 2.0 and 
Visual Data Exploration using Augmented Reality
Science 2.0 and 
Visual Data Exploration using Augmented RealityScience 2.0 and 
Visual Data Exploration using Augmented Reality
Science 2.0 and 
Visual Data Exploration using Augmented Reality
 
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
LARAe: Learning Analytics Reflection & Awareness environment (ARTEL14@ECTEL2014)
 
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ HarvardLearning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
Learning Dashboard @ Visual Learning Analytics workshop - LASI2014 @ Harvard
 
Learning Dashboards
Learning DashboardsLearning Dashboards
Learning Dashboards
 
Learning Dashboards
Learning DashboardsLearning Dashboards
Learning Dashboards
 

Último

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxdhanalakshmis0310
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 

Último (20)

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 

PenO 3 2014 sessie 2