SlideShare ist ein Scribd-Unternehmen logo
1 von 90
Downloaden Sie, um offline zu lesen
INDEX
0. INTRODUCTION
1. ARDUINO
2. DRIVERS
3. FIRMWARE
4. RFID
5. PHISYCAL OBJECTS
6. SCRATCH
CONFIGURATION
CUSTOMIZATION
DEMOSTRATION
0. INTRODUCTION
OBJECTIVES:
DIGITAL INCLUSION
INCLUSIÓN
DIGITAL
DIGITAL
INCLUSION
INCLUSIÓN DIGITAL
APLICACIÓN MULTIMÉDIA ACCESIBLE
ACCESSIBLE MULTIMEDIA APPLICATION
e-Inclusion
APLICACIÓN MULTIMÉDIA ACCESIBLE
LINK
WE ATTEMPT TO INTEGRATE BLIND AND
VISUALLY IMPAIRED PEOPLE IN ...
...HOBBIES AND LEISURE ACTIVITIES SO THEY CAN PARTICIPATE
ON EQUAL TERMS WITH THE COMMUNITY MEMBERS
1. HARDWARE: ARDUINO + RFID
PLACA/BOARD
ARDUINO UNO
SONADOR/BUZZER
Necesario para personas con ceguera o baja visión.
Confirma que el lector RFID ha recibido información
Required for people with blindness or low vision.
Confirms that the RFID reader has received information
LECTOR/READER RDIF
PACK
PACK
Otras versiones de Hardware/Other versions of Hardware
Arduino + Xbee + RFID reader
2. ARDUINO + COMPUTER (DRIVERS)
ARDUINO ENVIRONMENT
WWW.ARDUINO.CC link
SOFTWARE
ARDUINO ENVIRONMENT
ARBUINO BOARD + DRIVERS
3. ARDUINO + SCRATCH (FIRMWARE )
LINK FIRMWARE ARDUINO
CITILAB HA DESARROLLADO S4A
NOSOTROS HEMOS MODIFICADO SU FIRWARE
S4A DEVELOPED BY CITILAB
WE HAVE MODIFIED YOUR FIRWARE
LINK FIRMWARE ARDUINO SACOSTA.ORG
ARDUINO.EXE > FIRMWARE > ARDUINO BOARD
ARDUINO.EXE
OPEN FIRMWARE
OPEN FIRMWARE
// Basado en ArduinoBoard de Rai and Mike McKenzie modificado por Francesc Galbany
//============================================================================
//#include <Wire.h>
char rfid[12];
int pos=0;
void ScratchBoardSensorReport(int sensor, int value)
{
Serial.write( B10000000
| ((sensor & B1111)<<3)
| ((value>>7) & B111));
Serial.write( value & B1111111);
}
void setup()
{
Serial.begin(9600);
pinMode(4, INPUT);
}
int map3a1(char a, char b, char c){
int val = 255*hexVal(a) + hexVal(b)*16 + hexVal(c);
return map(val, 0, 4095, 0, 1023); // Passem de 4k a 1k perdent precisi´
}
int hexVal(char c){
char ret = 0;
if((c >= '0') && (c <= '9')){
ret = c - '0';
}else if((c >= 'A') && (c <= 'F')){
ret = c - 'A' + 10;
}
return ret;
}
void loop()
{
//Si hi ha dades RFID...
if(Serial.available())
{
while(Serial.available()){
delay(10);
char c = (char)Serial.read();
if( ((int)c >= 48) && ((int)c <=70)){
rfid[pos]=c;
pos++;
}
if(pos == 12){
break;
}
}
//Cal comprovar que i==12
if(pos == 12){
pos = 0;
Serial.end();
Serial.begin(38400);
ScratchBoardSensorReport(0, map3a1(rfid[0],rfid[1],rfid[2]));
ScratchBoardSensorReport(1, map3a1(rfid[3],rfid[4],rfid[5]));
ScratchBoardSensorReport(2, map3a1(rfid[6],rfid[7],rfid[8]));
ScratchBoardSensorReport(3, map3a1(rfid[9],rfid[10],rfid[11]));
ScratchBoardSensorReport(4, 0);
ScratchBoardSensorReport(5, 0);
ScratchBoardSensorReport(6, 0);
ScratchBoardSensorReport(7, digitalRead(4)?1023:0);
tone(11,4000,200);
delay(1000);
ScratchBoardSensorReport(0, 0);
ScratchBoardSensorReport(1, 0);
ScratchBoardSensorReport(2, 0);
ScratchBoardSensorReport(3, 0);
delay(30);
Serial.end();
Serial.begin(9600);
}
}
// Let Scratch catch up with us
delay(30);
}
Radio-frequency identification (RFID)
is the wireless non-contact use of
radio-frequency electromagnetic
fields to transfer data, for the
purposes of automatically identifying
and tracking tags attached to objects.
4. RFID
RFID
RFID
Tags RFID
RFID
Tags RFID
ÚNICA / UNIQUE
RFID
Tags RFID
RFID
Tags RFID
PERROS
DOGS
RFID
Tags RFID
ADHESIVO
STICKER
RFID
Tags RFID
ROPA
CLOTHING
RFID
Tags RFID
ALMACÉN
STORE
5. PHISYCAL OBJECTS
MATERIALES/MATERIALS
TACTO, TEXTURA, SEGURIDAD, MEDIDA/FEEL, TEXTURE, SIZE, SAFETY
6. SCRATCH
PORT COM
SCRATCH BOARD
SENSING > SENSOR VALUE
SCRATCHBOARD
SCRATCHBOARD WATCHER
SEARCH PORT COM
CONTROL PANEL SYSTEM
DECIVE MANAGER
COM
SELECT USB PORT
SELECT USB PORT
RIGHT BUTTOM + SHIFT:
REPORT RAW DATA
VARIABLES
EASY CUSTOMIZATION
PHISYCAL OBJECT + TAG RFID
SCRATCHBOARD WATCHER
PHISYCAL OBJECT + TAG RFID
SCRATCHBOARD WATCHER
RELATIONSHIP BETWEEN
OBJECTS AND VARIABLES
RELATIONSHIP BETWEEN
OBJECTS AND VARIABLES
SCRATCH.MIT.EDU
LINK
CUSTOMIZATION EXAMPLE
GEOMETRIA
COMPARTIDA
SHARED
GEOMETRY
ACTIVITIES: BASIC SHAPES
ACTIVITIES: TRIANGLES
ACTIVITIES: QUADRILATERALS
ACTIVITIES: REGULARS POLYGONS
ACTIVITIES: DIFFICULTY LEVELS
ISOSCELES TRAPEZOID?
ACTIVITIES: DIFFICULTY LEVELS
HEPTAGON?
OTHERS KINDS OF INTERACTION
STICKERS ON KEYBOARD
TAGS WITH BRAILLE CODE
TAGS CARD
BRAILLE CODE
TAGS + BRAILLE CODE
INFORMATION ALWAYS IN AUDIO
COLORS
3 COLORS
GREEN RIGHT
RED ERROR
ORANGE INFORMATION
OK ERROR INFO
OK
ERROR MESAGE
ERROR MESAGE
INFORMATION
FORMAS GRANDES, COLORES CONTRASTADOS
LARGE SHAPES, CONTRASTING COLORS
WORDS / TEXTOS
TYPOGRAPHY ARIAL, SIZE LARGE, CAPITALS
TIPOGRAFIA ARIAL, MEDIDA GRANDE, MAYÚSCULAS
MENÚ / MENU
OPTIONS: PRESENTATION, IDENTIFY AND POINT
OPCIONES: IDENTIFICAR, SEÑALAR Y RECONOCER
MENÚ / MENU
OPTIONS: PRESENTATION, IDENTIFY AND POINT
OPCIONES: IDENTIFICAR, SEÑALAR Y RECONOCER
APLICATION / LEVEL 1 / BASIC SHAPES PRESENTATION
TRIANGLE SQUARE CIRCLE STAR
APLICATION / LEVEL 2 / INDENTIFY
+
=TRIANGLE
APLICATION / LEVEL 3 / PONT TO SHAPES
TRIANGLE ?
+
= OK
WEB
WWW.SACOSTA.ORG/RFID
www.sacosta.org/rfid (català)
www.rfid.org/rfid_castellano
Imatges i fotos: Jesús Arbués, Bea Cascante,
Banco Imágenes y Sonidos del ITE
GRACIAS
THANK YOU
DEMO

Weitere ähnliche Inhalte

Andere mochten auch

Realidad Aumentada (RA) desde la Secundaria: Aplicaciones didácticas
Realidad Aumentada (RA) desde la Secundaria: Aplicaciones didácticasRealidad Aumentada (RA) desde la Secundaria: Aplicaciones didácticas
Realidad Aumentada (RA) desde la Secundaria: Aplicaciones didácticasJesús Arbués García del Moral
 
Jornada Realidad Aumentada 2016 Presentación Taller Realidad Virtual Octubr...
Jornada Realidad Aumentada 2016  Presentación Taller Realidad Virtual  Octubr...Jornada Realidad Aumentada 2016  Presentación Taller Realidad Virtual  Octubr...
Jornada Realidad Aumentada 2016 Presentación Taller Realidad Virtual Octubr...Jesús Arbués García del Moral
 
Ponencia Realidades desde la Secundaria. Jornada Realidad Aumentada y Virtual
Ponencia Realidades desde la Secundaria. Jornada Realidad Aumentada y VirtualPonencia Realidades desde la Secundaria. Jornada Realidad Aumentada y Virtual
Ponencia Realidades desde la Secundaria. Jornada Realidad Aumentada y VirtualJesús Arbués García del Moral
 
Workshop Arduino + Scratch
Workshop Arduino + ScratchWorkshop Arduino + Scratch
Workshop Arduino + ScratchAna Carneirinho
 
VISIBILIZACIÓN DE LOS OBJETOS DE LA ETNIA ZENÚ A TRAVÉS DE REALIDAD AUMENTADA
VISIBILIZACIÓN DE LOS OBJETOS DE LA ETNIA ZENÚ A TRAVÉS DE REALIDAD AUMENTADA VISIBILIZACIÓN DE LOS OBJETOS DE LA ETNIA ZENÚ A TRAVÉS DE REALIDAD AUMENTADA
VISIBILIZACIÓN DE LOS OBJETOS DE LA ETNIA ZENÚ A TRAVÉS DE REALIDAD AUMENTADA Maria Garcia
 
Introduction to arduino
Introduction to arduinoIntroduction to arduino
Introduction to arduinoAhmed Sakr
 

Andere mochten auch (7)

Realidad Aumentada (RA) desde la Secundaria: Aplicaciones didácticas
Realidad Aumentada (RA) desde la Secundaria: Aplicaciones didácticasRealidad Aumentada (RA) desde la Secundaria: Aplicaciones didácticas
Realidad Aumentada (RA) desde la Secundaria: Aplicaciones didácticas
 
Jornada Realidad Aumentada 2016 Presentación Taller Realidad Virtual Octubr...
Jornada Realidad Aumentada 2016  Presentación Taller Realidad Virtual  Octubr...Jornada Realidad Aumentada 2016  Presentación Taller Realidad Virtual  Octubr...
Jornada Realidad Aumentada 2016 Presentación Taller Realidad Virtual Octubr...
 
Ponencia Realidades desde la Secundaria. Jornada Realidad Aumentada y Virtual
Ponencia Realidades desde la Secundaria. Jornada Realidad Aumentada y VirtualPonencia Realidades desde la Secundaria. Jornada Realidad Aumentada y Virtual
Ponencia Realidades desde la Secundaria. Jornada Realidad Aumentada y Virtual
 
AUMENTAME EDU 2016: Proyecto VIRTUSMAT
AUMENTAME EDU 2016: Proyecto VIRTUSMATAUMENTAME EDU 2016: Proyecto VIRTUSMAT
AUMENTAME EDU 2016: Proyecto VIRTUSMAT
 
Workshop Arduino + Scratch
Workshop Arduino + ScratchWorkshop Arduino + Scratch
Workshop Arduino + Scratch
 
VISIBILIZACIÓN DE LOS OBJETOS DE LA ETNIA ZENÚ A TRAVÉS DE REALIDAD AUMENTADA
VISIBILIZACIÓN DE LOS OBJETOS DE LA ETNIA ZENÚ A TRAVÉS DE REALIDAD AUMENTADA VISIBILIZACIÓN DE LOS OBJETOS DE LA ETNIA ZENÚ A TRAVÉS DE REALIDAD AUMENTADA
VISIBILIZACIÓN DE LOS OBJETOS DE LA ETNIA ZENÚ A TRAVÉS DE REALIDAD AUMENTADA
 
Introduction to arduino
Introduction to arduinoIntroduction to arduino
Introduction to arduino
 

Ähnlich wie Accessible Multimedia Application for Digital Inclusion

Attendance system using MYSQL with Raspberry pi and RFID-RC522
Attendance system using MYSQL with Raspberry pi and RFID-RC522Attendance system using MYSQL with Raspberry pi and RFID-RC522
Attendance system using MYSQL with Raspberry pi and RFID-RC522Sanjay Kumar
 
IoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3BIoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3BJingfeng Liu
 
Attendance System using ESP8266(Wi-Fi) with MySQL
Attendance System using ESP8266(Wi-Fi) with MySQLAttendance System using ESP8266(Wi-Fi) with MySQL
Attendance System using ESP8266(Wi-Fi) with MySQLSanjay Kumar
 
RFID Reader 125KHz USB Serial
RFID Reader 125KHz USB SerialRFID Reader 125KHz USB Serial
RFID Reader 125KHz USB SerialRaghav Shetty
 
Walk in store simulation
Walk in store  simulationWalk in store  simulation
Walk in store simulationAditya Negi
 
A Novel RFID Readers Employee Management System
A Novel RFID Readers Employee Management SystemA Novel RFID Readers Employee Management System
A Novel RFID Readers Employee Management SystemIJMTST Journal
 
Dolphin rfid laptop tracking with secure gate app latest
Dolphin rfid   laptop tracking with secure gate app latestDolphin rfid   laptop tracking with secure gate app latest
Dolphin rfid laptop tracking with secure gate app latestnipunmalhotra1971
 
Gaztea Tech Robotica 2016
Gaztea Tech Robotica 2016Gaztea Tech Robotica 2016
Gaztea Tech Robotica 2016Svet Ivantchev
 
Gvm project report g95
Gvm project report g95Gvm project report g95
Gvm project report g95G0VIND G0URAV
 
Project ACRN expose and pass through platform hidden PCIe devices to SOS
Project ACRN expose and pass through platform hidden PCIe devices to SOSProject ACRN expose and pass through platform hidden PCIe devices to SOS
Project ACRN expose and pass through platform hidden PCIe devices to SOSProject ACRN
 
Mypptinslideshare 180508104046 (1)
Mypptinslideshare 180508104046 (1)Mypptinslideshare 180508104046 (1)
Mypptinslideshare 180508104046 (1)raviteja srinivasula
 
RFID based smart shopping cart and billing system
RFID based smart shopping cart and billing systemRFID based smart shopping cart and billing system
RFID based smart shopping cart and billing systemlaharipothula
 
Bare metal Javascript & GPIO programming in Linux
Bare metal Javascript & GPIO programming in LinuxBare metal Javascript & GPIO programming in Linux
Bare metal Javascript & GPIO programming in LinuxAlexander Vanwynsberghe
 
VLSI Implementation of CORDIC Based Robot Navigation Processor
VLSI Implementation of CORDIC Based Robot Navigation ProcessorVLSI Implementation of CORDIC Based Robot Navigation Processor
VLSI Implementation of CORDIC Based Robot Navigation ProcessorIRJET Journal
 
Near Field Communication on Raspberry Pi
Near Field Communication on Raspberry PiNear Field Communication on Raspberry Pi
Near Field Communication on Raspberry PiIRJET Journal
 
FIWARE Developers Week_FIWARE IoT: Beginner's tutorial_conference
 FIWARE Developers Week_FIWARE IoT: Beginner's tutorial_conference FIWARE Developers Week_FIWARE IoT: Beginner's tutorial_conference
FIWARE Developers Week_FIWARE IoT: Beginner's tutorial_conferenceFIWARE
 
Road to Republic of IoT - IoT Technologies & Machine Learning
Road to Republic of IoT - IoT Technologies & Machine LearningRoad to Republic of IoT - IoT Technologies & Machine Learning
Road to Republic of IoT - IoT Technologies & Machine LearningAndri Yadi
 
Radio Frequency Identification (RFID)
Radio Frequency Identification (RFID)Radio Frequency Identification (RFID)
Radio Frequency Identification (RFID)Liz Sims
 

Ähnlich wie Accessible Multimedia Application for Digital Inclusion (20)

Attendance system using MYSQL with Raspberry pi and RFID-RC522
Attendance system using MYSQL with Raspberry pi and RFID-RC522Attendance system using MYSQL with Raspberry pi and RFID-RC522
Attendance system using MYSQL with Raspberry pi and RFID-RC522
 
IoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3BIoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3B
 
Attendance System using ESP8266(Wi-Fi) with MySQL
Attendance System using ESP8266(Wi-Fi) with MySQLAttendance System using ESP8266(Wi-Fi) with MySQL
Attendance System using ESP8266(Wi-Fi) with MySQL
 
RFID Reader 125KHz USB Serial
RFID Reader 125KHz USB SerialRFID Reader 125KHz USB Serial
RFID Reader 125KHz USB Serial
 
ARDUINO MOTION SENSOR
ARDUINO  MOTION SENSOR ARDUINO  MOTION SENSOR
ARDUINO MOTION SENSOR
 
Walk in store simulation
Walk in store  simulationWalk in store  simulation
Walk in store simulation
 
A Novel RFID Readers Employee Management System
A Novel RFID Readers Employee Management SystemA Novel RFID Readers Employee Management System
A Novel RFID Readers Employee Management System
 
Dolphin rfid laptop tracking with secure gate app latest
Dolphin rfid   laptop tracking with secure gate app latestDolphin rfid   laptop tracking with secure gate app latest
Dolphin rfid laptop tracking with secure gate app latest
 
Gaztea Tech Robotica 2016
Gaztea Tech Robotica 2016Gaztea Tech Robotica 2016
Gaztea Tech Robotica 2016
 
Gvm project report g95
Gvm project report g95Gvm project report g95
Gvm project report g95
 
Project ACRN expose and pass through platform hidden PCIe devices to SOS
Project ACRN expose and pass through platform hidden PCIe devices to SOSProject ACRN expose and pass through platform hidden PCIe devices to SOS
Project ACRN expose and pass through platform hidden PCIe devices to SOS
 
Mypptinslideshare 180508104046 (1)
Mypptinslideshare 180508104046 (1)Mypptinslideshare 180508104046 (1)
Mypptinslideshare 180508104046 (1)
 
RFID based smart shopping cart and billing system
RFID based smart shopping cart and billing systemRFID based smart shopping cart and billing system
RFID based smart shopping cart and billing system
 
Bare metal Javascript & GPIO programming in Linux
Bare metal Javascript & GPIO programming in LinuxBare metal Javascript & GPIO programming in Linux
Bare metal Javascript & GPIO programming in Linux
 
VLSI Implementation of CORDIC Based Robot Navigation Processor
VLSI Implementation of CORDIC Based Robot Navigation ProcessorVLSI Implementation of CORDIC Based Robot Navigation Processor
VLSI Implementation of CORDIC Based Robot Navigation Processor
 
Near Field Communication on Raspberry Pi
Near Field Communication on Raspberry PiNear Field Communication on Raspberry Pi
Near Field Communication on Raspberry Pi
 
FIWARE Developers Week_FIWARE IoT: Beginner's tutorial_conference
 FIWARE Developers Week_FIWARE IoT: Beginner's tutorial_conference FIWARE Developers Week_FIWARE IoT: Beginner's tutorial_conference
FIWARE Developers Week_FIWARE IoT: Beginner's tutorial_conference
 
Road to Republic of IoT - IoT Technologies & Machine Learning
Road to Republic of IoT - IoT Technologies & Machine LearningRoad to Republic of IoT - IoT Technologies & Machine Learning
Road to Republic of IoT - IoT Technologies & Machine Learning
 
Pentest iot - SDR
Pentest iot - SDRPentest iot - SDR
Pentest iot - SDR
 
Radio Frequency Identification (RFID)
Radio Frequency Identification (RFID)Radio Frequency Identification (RFID)
Radio Frequency Identification (RFID)
 

Kürzlich hochgeladen

BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 

Kürzlich hochgeladen (20)

BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 

Accessible Multimedia Application for Digital Inclusion