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 SHARED GEOMETRY TANGIBLE DIGITAL ENVIRONMENT

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 SHARED GEOMETRY TANGIBLE DIGITAL ENVIRONMENT (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

HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
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
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxJisc
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
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
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
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
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...Nguyen Thanh Tu Collection
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
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
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 

Kürzlich hochgeladen (20)

HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
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
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
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
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
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
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
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
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 

SHARED GEOMETRY TANGIBLE DIGITAL ENVIRONMENT