SlideShare a Scribd company logo
1 of 3
Download to read offline
Tangible Displays of Data
Problem: There is too often the feeling that when finding a
form for the display of data, the result has to fall into the screen/
intangible realm. While this is a totally adequate and appropriate
answer most of the time, solutions that fall into the more physical
and industrial design realm should also be considered. Through-
out my stay at the University of Michigan, I’ve been comparing
and exploring different methods of stepping from the world of
screens into more of‘the internet of things’.
Recent Existing
Examples
Solution: There are many routes towards escaping the pure-
ly screen driven realm of design and stepping into the physical
world, regardless of a users abilities in regards to industrial design
or programming. Arduino has allowed microcontrollers to be-
come an easily alterable system, so that someone with the barest
knowledge of circuitry and programming can start to prototype
smart objects. While these are better moved into a more robust
environment if thought of as commercial products, for the Infor-
mation Science Designer they allow an easy step into dealing with
sensors and electronics.
There are also many smart systems being designed by companies
that are hackable and alterable. Displayed within this boards are a
few such examples, including the HUE LED light-bulbs from Phil-
lips, Red-Park cables which allow for an Arduino connection to
iOS devices, and set iOS applications which allow for the begin-
ning steps if attempting to connect to Arduino’s through wireless
communication.
Michael Senkow is a Masters of Science in Information:
Human Computer Interaction and Architecture Science
Masters student at the University of Michigan. A sampling
of his work is viewable at www.mhsenkow.org
Twitter: @senkowm
LinkedIn: www.linkedin.com/in/mhsenkow
Michael Senkow
“SPIMES” are manufactured objects who informational sup-
port is so overwhelmingly extensive and rich that they are
regarded as material instantiations of an immaterial sys-
tem. SPIMES begin and end as data. They are designed on
screens, fabricated by digital means, and precisely tracked
through space and time throughout their earthly sojourn.
Shaping Things, Bruce Sterling
You can’t eat bits, burn them to stay warm or put them in your gas tank. Ideas
and information are important, but things matter much more. Yet today’s in-
formation technology is so dependent on data originated by people that our
computers know more about ideas than things. If we had computers that knew
everything there was to know about things—using data they gathered without
any help from us—we would be able to track and count everything, and greatly
reduce waste, loss and cost. We would know when things needed replacing, re-
pairing or recalling, and whether they were fresh or past their best. The Internet
of Things has the potential to change the world, just as the Internet did. Maybe
even more so.
Kevin Ashton on ‘The Internet of Things’
Kickstarter Project to create a smart socket,
to turn any dimmable bulb into a controlla-
ble object. - www.sparkdevices.com
Spark Socket
Kickstarter Project for a smart lamp system,
when you turn on the small base stations it
alerts the home object, no matter where. -
www.goodnightlamp.com
Good Night Lamp
Twine was an MIT project, to get the objects
in your life talking to you remotely. It’s a
temperature, vibration and orientation sen-
sor that emails you when its environment
changes. - www.supermechanical.com
Twine
Formerly Pachube, Cosm connects devices
and apps, exchangeing data and ideas with
developers, and bring smart products to
the world. - www.cosm.com
Arch 506: Responsive Surfaces
Taught within the School of Architecture, this
course asks the question on how to connect your
physical environment to smart systems. The two
project I developed in this course connected with
twoconcepts;usingthegrowingnumberofsmart
deviceswethrowawaywithinasecondlifeascon-
trol mechanisms AND experimenting with push-
ing data into physical objects.
Project 1 - iPad as Room Control:
This project dealt with controlling simple mechanisms through used iPod Touch
or iPad controls. While the project created was more of a toy, an iPad controlled
musical device, it was meant as a model for a more practical system, say a room
controller.
Design Process
Comparison to Existing Installations
Early in the course there was specific research into existing projects that fell into the
realm of pushing data devices into the architectural realm.
niklasroy - Responsive Window
TouchOSC Connection
Low Fidelity Display Conception
jimcampbell - Scattered LIght
InitialTesting with LED lighting
Experimentation
Before settling on the wired connection between the iPad and Arduino, multiple
experiments were performed, with different wireless and wired connections. The
final project was taken on due to limitations with the schools wireless network.
Final Critiques and Continuation
The final results of the course ended in more of the Architectural Critique form and
part of the projects continued into other courses. The lighting studies moved into
the examples I have on the next board, and the low fidelity prototype inspired work
for SI:582 Interaction Design
Expansion Potential
While the project was simply an arduino being controlled through an iPad, this con-
cept could easily be exanded into housing controls, interfaces for other mechanical
systems, or other physical systems that need an interface. A first gen iPod Touch
can be found on eBay now for less than $30.00, displaying an entire realm of poten-
tial interface options.
Expansion Potential
All too often data ends up purely in the screen environment. This project shows a
potentail stepping stone, moving information nodes into more physical objects.
While lighting is only a small step away from a screen, it shows that you could de-
velop a system that doesn’t fall back on the flat world quite as often.
Videos and Further discussion at http://portfolio.mhsenkow.org/responsivesurf.html
Project 2 - Sensors within Furniture
The second project connected a more physical, ambient object with a data store.
This project created a higher powered, incandescent lamp that detected a user
nearby and set off a organic lighting display.
SI 601: Data Manipulation
Michael Senkow is a Masters of Science in Information:
Human Computer Interaction and Architecture Science
Masters student at the University of Michigan. A sampling
of his work is viewable at www.mhsenkow.org
ThecoreoftheDataManipulationcourseislook-
ing into ways to stream data from sites and ap-
plications. As a final project, I worked with Haley
Vingsness, Vijay Swamy, and Nicholas Hung to
produce a simply python concept that connects
with Phillips HUE lightbulbs.
The Core concept was to think of a way to take
weather data and push it into a physical object.
HUE recently put out an API for control of the
bulbs, but at the time this was more of a hack
on the system.
Design Focus
Multiple steps were taken to determine the final
set of data that could be displayed. Weather.com
was the first source, but Yahoo weather became
our go to because of its more segmented set of
weather options.
One of the biggest challenges was simply deter-
miningpatternsfortheweather.Asampleofsome
of the code prouduced is shown below.
Code for the Project is at
https://github.com/mhsenkow/Hue-Weather
Video of the Project is at
http://www.youtube.com/watch?v=Rq6Tn0AiFn4
if display ==“weather”:
	 while description ==“0”:#tornado
		l.bri(250)
		l.alert()
		 for y in range(10):
			 for dim in range(10):
				l.set_state({“bri”: 250-dim*20,”xy”: [0.1, y*0.1]})
				time.sleep(0.01)
		l.alert()		
		 switch = switch*-1
	 while description ==“1”:#tropical storm
		l.bri(250)
		l.alert()
		 for y in range(10):
			 for dim in range(10):
				l.set_state({“bri”: 250-dim*20,”xy”: [0.3, y*0.1]})
				time.sleep(0.01)
		l.alert()		
		 switch = switch*-1
	 while description ==“2”:#hurricane
		l.bri(250)
		l.alert()
		 for y in range(10):
			 for dim in range(10):
				l.set_state({“bri”: 250-dim*20,”xy”: [0.5, y*0.1]})
				time.sleep(0.01)
		l.alert()		
		 switch = switch*-1
Solution Without a Problem:
Part of the joy of this project is simply in its solu-
tion for something that doesn’t have a direct
need. Not all of the concepts created in the In-
ternet of Things Realm really have a problem to
begin with. They’re more of a solution to some-
thing se didn’t even know we needed. By having
this added bit of aesthetic though, you can start
to see solutions to other problems that may not
have been considered.

More Related Content

What's hot

small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)
small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)
small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)ariannaschlegel
 
Digital jewellery ppt
Digital jewellery pptDigital jewellery ppt
Digital jewellery pptNida Khan
 
Digitaljewellery presentation
Digitaljewellery presentationDigitaljewellery presentation
Digitaljewellery presentationaishwarya_320
 
Arduino: Arduino + android proyectos de genio malvado
Arduino: Arduino  + android proyectos de genio malvadoArduino: Arduino  + android proyectos de genio malvado
Arduino: Arduino + android proyectos de genio malvadoSANTIAGO PABLO ALBERTO
 
Digital jewellery hints
Digital jewellery hintsDigital jewellery hints
Digital jewellery hintsYoga Kkg
 
Intro to the Arduino Entrepreneurial System
Intro to the Arduino Entrepreneurial SystemIntro to the Arduino Entrepreneurial System
Intro to the Arduino Entrepreneurial Systemtodbotdotcom
 
5 pen-pc-technology complete ppt
5 pen-pc-technology complete ppt5 pen-pc-technology complete ppt
5 pen-pc-technology complete pptatinav242
 
Digital jewellery
Digital jewelleryDigital jewellery
Digital jewelleryNIT TRICHY
 
5 pen technology \
5 pen technology \5 pen technology \
5 pen technology \Abbiee
 
Researchpaper 5-pen-pc-technology
Researchpaper 5-pen-pc-technologyResearchpaper 5-pen-pc-technology
Researchpaper 5-pen-pc-technologyRamya Rajan
 
5 pen pc technology by divya
5 pen pc technology by divya5 pen pc technology by divya
5 pen pc technology by divyaDivya Baghel
 

What's hot (20)

small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)
small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)
small electronics for your makerspace 2 (clc trendspotting - 26 march 2014)
 
Digital jewellery
Digital jewelleryDigital jewellery
Digital jewellery
 
Doc of 5 pen pc technology
Doc of 5 pen pc technologyDoc of 5 pen pc technology
Doc of 5 pen pc technology
 
The AirBoard brief
The AirBoard briefThe AirBoard brief
The AirBoard brief
 
Digital jewellery ppt
Digital jewellery pptDigital jewellery ppt
Digital jewellery ppt
 
5 pen pc technology
5 pen pc technology5 pen pc technology
5 pen pc technology
 
5 pen technology
5 pen technology5 pen technology
5 pen technology
 
Digital jewellery ppt
Digital jewellery  pptDigital jewellery  ppt
Digital jewellery ppt
 
Arduino Art
Arduino ArtArduino Art
Arduino Art
 
Digitaljewellery presentation
Digitaljewellery presentationDigitaljewellery presentation
Digitaljewellery presentation
 
Arduino: Arduino + android proyectos de genio malvado
Arduino: Arduino  + android proyectos de genio malvadoArduino: Arduino  + android proyectos de genio malvado
Arduino: Arduino + android proyectos de genio malvado
 
Digital jewellery hints
Digital jewellery hintsDigital jewellery hints
Digital jewellery hints
 
Intro to the Arduino Entrepreneurial System
Intro to the Arduino Entrepreneurial SystemIntro to the Arduino Entrepreneurial System
Intro to the Arduino Entrepreneurial System
 
5 pen-pc-technology complete ppt
5 pen-pc-technology complete ppt5 pen-pc-technology complete ppt
5 pen-pc-technology complete ppt
 
Digital jewellery
Digital jewelleryDigital jewellery
Digital jewellery
 
Digital jewellery ppt
Digital   jewellery pptDigital   jewellery ppt
Digital jewellery ppt
 
A Study Paper on 5 Pen PC Technology
A Study Paper on 5 Pen PC TechnologyA Study Paper on 5 Pen PC Technology
A Study Paper on 5 Pen PC Technology
 
5 pen technology \
5 pen technology \5 pen technology \
5 pen technology \
 
Researchpaper 5-pen-pc-technology
Researchpaper 5-pen-pc-technologyResearchpaper 5-pen-pc-technology
Researchpaper 5-pen-pc-technology
 
5 pen pc technology by divya
5 pen pc technology by divya5 pen pc technology by divya
5 pen pc technology by divya
 

Similar to Internet of Things Expo Concept from Umich Grad Program

UXLx 2015: 'Designing Connected Products workshop
UXLx 2015: 'Designing Connected Products workshopUXLx 2015: 'Designing Connected Products workshop
UXLx 2015: 'Designing Connected Products workshopClaire Rowland
 
The Programmable Internet of Things
The Programmable Internet of ThingsThe Programmable Internet of Things
The Programmable Internet of ThingsRich Miller
 
Introducing the Internet of Things: lecture @IULM University
Introducing the Internet of Things: lecture @IULM UniversityIntroducing the Internet of Things: lecture @IULM University
Introducing the Internet of Things: lecture @IULM UniversityLeandro Agro'
 
Green: The Color of Passion
Green: The Color of PassionGreen: The Color of Passion
Green: The Color of PassionInfosys
 
K1ND 6-Smarts No.5
K1ND 6-Smarts No.5K1ND 6-Smarts No.5
K1ND 6-Smarts No.5Be OneKind
 
Iot mirror but can u add artificia @1000KV Technologies 9030844877
Iot mirror but can u add artificia @1000KV Technologies 9030844877Iot mirror but can u add artificia @1000KV Technologies 9030844877
Iot mirror but can u add artificia @1000KV Technologies 90308448771000kv technologies
 
Rajat Bandejiya(14uec076)Lusip (Smart Campus) Report
Rajat Bandejiya(14uec076)Lusip (Smart Campus) Report Rajat Bandejiya(14uec076)Lusip (Smart Campus) Report
Rajat Bandejiya(14uec076)Lusip (Smart Campus) Report Raybaen
 
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...Keiichiro Ono
 
Raspberry Pi Augmentation: A Cost Effective Solution To Google Glass
Raspberry Pi Augmentation: A Cost Effective Solution To Google GlassRaspberry Pi Augmentation: A Cost Effective Solution To Google Glass
Raspberry Pi Augmentation: A Cost Effective Solution To Google GlassIRJET Journal
 
Gridforum David De Roure Newe Science 20080402
Gridforum David De Roure Newe Science 20080402Gridforum David De Roure Newe Science 20080402
Gridforum David De Roure Newe Science 20080402vrij
 
How the Internet of Things and People can help improve our health, well-being...
How the Internet of Things and People can help improve our health, well-being...How the Internet of Things and People can help improve our health, well-being...
How the Internet of Things and People can help improve our health, well-being...Maged N. Kamel Boulos
 
Prototyping the Internet of Things
Prototyping the Internet of ThingsPrototyping the Internet of Things
Prototyping the Internet of ThingsDavid Bliss
 
Towards the Design of Intelligible Object-based Applications for the Web of T...
Towards the Design of Intelligible Object-based Applications for the Web of T...Towards the Design of Intelligible Object-based Applications for the Web of T...
Towards the Design of Intelligible Object-based Applications for the Web of T...Pierrick Thébault
 
Closing the Loop - From Citizen Sensing to Citizen Actuation
Closing the Loop - From Citizen Sensing to Citizen ActuationClosing the Loop - From Citizen Sensing to Citizen Actuation
Closing the Loop - From Citizen Sensing to Citizen ActuationDavid Crowley
 
Soderstrom
SoderstromSoderstrom
SoderstromNASAPMC
 
AGI Part 4.pdf
AGI Part 4.pdfAGI Part 4.pdf
AGI Part 4.pdfBob Marcus
 

Similar to Internet of Things Expo Concept from Umich Grad Program (20)

Widetag @ QU-ID
Widetag @ QU-IDWidetag @ QU-ID
Widetag @ QU-ID
 
UXLx 2015: 'Designing Connected Products workshop
UXLx 2015: 'Designing Connected Products workshopUXLx 2015: 'Designing Connected Products workshop
UXLx 2015: 'Designing Connected Products workshop
 
The Programmable Internet of Things
The Programmable Internet of ThingsThe Programmable Internet of Things
The Programmable Internet of Things
 
Introducing the Internet of Things: lecture @IULM University
Introducing the Internet of Things: lecture @IULM UniversityIntroducing the Internet of Things: lecture @IULM University
Introducing the Internet of Things: lecture @IULM University
 
Green: The Color of Passion
Green: The Color of PassionGreen: The Color of Passion
Green: The Color of Passion
 
K1ND 6-Smarts No.5
K1ND 6-Smarts No.5K1ND 6-Smarts No.5
K1ND 6-Smarts No.5
 
Iot mirror but can u add artificia @1000KV Technologies 9030844877
Iot mirror but can u add artificia @1000KV Technologies 9030844877Iot mirror but can u add artificia @1000KV Technologies 9030844877
Iot mirror but can u add artificia @1000KV Technologies 9030844877
 
Iot chap i
Iot chap iIot chap i
Iot chap i
 
Rajat Bandejiya(14uec076)Lusip (Smart Campus) Report
Rajat Bandejiya(14uec076)Lusip (Smart Campus) Report Rajat Bandejiya(14uec076)Lusip (Smart Campus) Report
Rajat Bandejiya(14uec076)Lusip (Smart Campus) Report
 
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
VIZBI 2015 Tutorial: Cytoscape, IPython, Docker, and Reproducible Network Dat...
 
Raspberry Pi Augmentation: A Cost Effective Solution To Google Glass
Raspberry Pi Augmentation: A Cost Effective Solution To Google GlassRaspberry Pi Augmentation: A Cost Effective Solution To Google Glass
Raspberry Pi Augmentation: A Cost Effective Solution To Google Glass
 
Gridforum David De Roure Newe Science 20080402
Gridforum David De Roure Newe Science 20080402Gridforum David De Roure Newe Science 20080402
Gridforum David De Roure Newe Science 20080402
 
How the Internet of Things and People can help improve our health, well-being...
How the Internet of Things and People can help improve our health, well-being...How the Internet of Things and People can help improve our health, well-being...
How the Internet of Things and People can help improve our health, well-being...
 
Prototyping the Internet of Things
Prototyping the Internet of ThingsPrototyping the Internet of Things
Prototyping the Internet of Things
 
Towards the Design of Intelligible Object-based Applications for the Web of T...
Towards the Design of Intelligible Object-based Applications for the Web of T...Towards the Design of Intelligible Object-based Applications for the Web of T...
Towards the Design of Intelligible Object-based Applications for the Web of T...
 
Closing the Loop - From Citizen Sensing to Citizen Actuation
Closing the Loop - From Citizen Sensing to Citizen ActuationClosing the Loop - From Citizen Sensing to Citizen Actuation
Closing the Loop - From Citizen Sensing to Citizen Actuation
 
Soderstrom
SoderstromSoderstrom
Soderstrom
 
AGI Part 4.pdf
AGI Part 4.pdfAGI Part 4.pdf
AGI Part 4.pdf
 
Sandeep-portfolio-2016
Sandeep-portfolio-2016Sandeep-portfolio-2016
Sandeep-portfolio-2016
 
IoT
IoTIoT
IoT
 

More from Michael Senkow

AI Imagen for data-storytelling Infographics (1).pdf
AI Imagen for data-storytelling Infographics (1).pdfAI Imagen for data-storytelling Infographics (1).pdf
AI Imagen for data-storytelling Infographics (1).pdfMichael Senkow
 
SVG's and their potential for programmatic art
SVG's and their potential for programmatic artSVG's and their potential for programmatic art
SVG's and their potential for programmatic artMichael Senkow
 
3D printing and embedded Electronics concepts from Arch Science
3D printing and embedded Electronics concepts from Arch Science3D printing and embedded Electronics concepts from Arch Science
3D printing and embedded Electronics concepts from Arch ScienceMichael Senkow
 
Michael Senkow Visual Resume
Michael Senkow Visual ResumeMichael Senkow Visual Resume
Michael Senkow Visual ResumeMichael Senkow
 

More from Michael Senkow (9)

AI Imagen for data-storytelling Infographics (1).pdf
AI Imagen for data-storytelling Infographics (1).pdfAI Imagen for data-storytelling Infographics (1).pdf
AI Imagen for data-storytelling Infographics (1).pdf
 
SVG's and their potential for programmatic art
SVG's and their potential for programmatic artSVG's and their potential for programmatic art
SVG's and their potential for programmatic art
 
Nobody expects 3D
Nobody expects 3DNobody expects 3D
Nobody expects 3D
 
3D printing and embedded Electronics concepts from Arch Science
3D printing and embedded Electronics concepts from Arch Science3D printing and embedded Electronics concepts from Arch Science
3D printing and embedded Electronics concepts from Arch Science
 
Display case display
Display case displayDisplay case display
Display case display
 
Umhs companion
Umhs companionUmhs companion
Umhs companion
 
Aaa umhs
Aaa umhsAaa umhs
Aaa umhs
 
Arduino presentation
Arduino presentationArduino presentation
Arduino presentation
 
Michael Senkow Visual Resume
Michael Senkow Visual ResumeMichael Senkow Visual Resume
Michael Senkow Visual Resume
 

Recently uploaded

Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen DatingDubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Datingkojalkojal131
 
Book Paid Saswad Call Girls Pune 8250192130Low Budget Full Independent High P...
Book Paid Saswad Call Girls Pune 8250192130Low Budget Full Independent High P...Book Paid Saswad Call Girls Pune 8250192130Low Budget Full Independent High P...
Book Paid Saswad Call Girls Pune 8250192130Low Budget Full Independent High P...ranjana rawat
 
Escorts Service Cambridge Layout ☎ 7737669865☎ Book Your One night Stand (Ba...
Escorts Service Cambridge Layout  ☎ 7737669865☎ Book Your One night Stand (Ba...Escorts Service Cambridge Layout  ☎ 7737669865☎ Book Your One night Stand (Ba...
Escorts Service Cambridge Layout ☎ 7737669865☎ Book Your One night Stand (Ba...amitlee9823
 
Top Rated Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
Internship Report].pdf iiwmoosmsosmshkssmk
Internship Report].pdf iiwmoosmsosmshkssmkInternship Report].pdf iiwmoosmsosmshkssmk
Internship Report].pdf iiwmoosmsosmshkssmkSujalTamhane
 
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
TEST BANK For Evidence-Based Practice for Nurses Appraisal and Application of...
TEST BANK For Evidence-Based Practice for Nurses Appraisal and Application of...TEST BANK For Evidence-Based Practice for Nurses Appraisal and Application of...
TEST BANK For Evidence-Based Practice for Nurses Appraisal and Application of...robinsonayot
 
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Top Rated Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...poojakaurpk09
 
Résumé (2 pager - 12 ft standard syntax)
Résumé (2 pager -  12 ft standard syntax)Résumé (2 pager -  12 ft standard syntax)
Résumé (2 pager - 12 ft standard syntax)Soham Mondal
 
Production Day 1.pptxjvjbvbcbcb bj bvcbj
Production Day 1.pptxjvjbvbcbcb bj bvcbjProduction Day 1.pptxjvjbvbcbcb bj bvcbj
Production Day 1.pptxjvjbvbcbcb bj bvcbjLewisJB
 
OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理cowagem
 
Joshua Minker Brand Exploration Sports Broadcaster .pptx
Joshua Minker Brand Exploration Sports Broadcaster .pptxJoshua Minker Brand Exploration Sports Broadcaster .pptx
Joshua Minker Brand Exploration Sports Broadcaster .pptxsportsworldproductio
 
CFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceCFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceSanjay Bokadia
 
Motilal Oswal Gift City Fund PPT - Apr 2024.pptx
Motilal Oswal Gift City Fund PPT - Apr 2024.pptxMotilal Oswal Gift City Fund PPT - Apr 2024.pptx
Motilal Oswal Gift City Fund PPT - Apr 2024.pptxMaulikVasani1
 
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...sonalitrivedi431
 
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...amitlee9823
 

Recently uploaded (20)

Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen DatingDubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
Dubai Call Girls Starlet O525547819 Call Girls Dubai Showen Dating
 
VVVIP Call Girls In East Of Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In East Of Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In East Of Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In East Of Kailash ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
Book Paid Saswad Call Girls Pune 8250192130Low Budget Full Independent High P...
Book Paid Saswad Call Girls Pune 8250192130Low Budget Full Independent High P...Book Paid Saswad Call Girls Pune 8250192130Low Budget Full Independent High P...
Book Paid Saswad Call Girls Pune 8250192130Low Budget Full Independent High P...
 
Escorts Service Cambridge Layout ☎ 7737669865☎ Book Your One night Stand (Ba...
Escorts Service Cambridge Layout  ☎ 7737669865☎ Book Your One night Stand (Ba...Escorts Service Cambridge Layout  ☎ 7737669865☎ Book Your One night Stand (Ba...
Escorts Service Cambridge Layout ☎ 7737669865☎ Book Your One night Stand (Ba...
 
Top Rated Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Deccan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Internship Report].pdf iiwmoosmsosmshkssmk
Internship Report].pdf iiwmoosmsosmshkssmkInternship Report].pdf iiwmoosmsosmshkssmk
Internship Report].pdf iiwmoosmsosmshkssmk
 
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Delhi 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
TEST BANK For Evidence-Based Practice for Nurses Appraisal and Application of...
TEST BANK For Evidence-Based Practice for Nurses Appraisal and Application of...TEST BANK For Evidence-Based Practice for Nurses Appraisal and Application of...
TEST BANK For Evidence-Based Practice for Nurses Appraisal and Application of...
 
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Top Rated Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Warje ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
Virgin Call Girls Delhi Service-oriented sexy call girls ☞ 9899900591 ☜ Rita ...
 
Résumé (2 pager - 12 ft standard syntax)
Résumé (2 pager -  12 ft standard syntax)Résumé (2 pager -  12 ft standard syntax)
Résumé (2 pager - 12 ft standard syntax)
 
Production Day 1.pptxjvjbvbcbcb bj bvcbj
Production Day 1.pptxjvjbvbcbcb bj bvcbjProduction Day 1.pptxjvjbvbcbcb bj bvcbj
Production Day 1.pptxjvjbvbcbcb bj bvcbj
 
Sensual Moments: +91 9999965857 Independent Call Girls Paharganj Delhi {{ Mon...
Sensual Moments: +91 9999965857 Independent Call Girls Paharganj Delhi {{ Mon...Sensual Moments: +91 9999965857 Independent Call Girls Paharganj Delhi {{ Mon...
Sensual Moments: +91 9999965857 Independent Call Girls Paharganj Delhi {{ Mon...
 
OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理
 
Joshua Minker Brand Exploration Sports Broadcaster .pptx
Joshua Minker Brand Exploration Sports Broadcaster .pptxJoshua Minker Brand Exploration Sports Broadcaster .pptx
Joshua Minker Brand Exploration Sports Broadcaster .pptx
 
CFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector ExperienceCFO_SB_Career History_Multi Sector Experience
CFO_SB_Career History_Multi Sector Experience
 
Motilal Oswal Gift City Fund PPT - Apr 2024.pptx
Motilal Oswal Gift City Fund PPT - Apr 2024.pptxMotilal Oswal Gift City Fund PPT - Apr 2024.pptx
Motilal Oswal Gift City Fund PPT - Apr 2024.pptx
 
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
Hyderabad 💫✅💃 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATIS...
 
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jayanagar Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
 

Internet of Things Expo Concept from Umich Grad Program

  • 1. Tangible Displays of Data Problem: There is too often the feeling that when finding a form for the display of data, the result has to fall into the screen/ intangible realm. While this is a totally adequate and appropriate answer most of the time, solutions that fall into the more physical and industrial design realm should also be considered. Through- out my stay at the University of Michigan, I’ve been comparing and exploring different methods of stepping from the world of screens into more of‘the internet of things’. Recent Existing Examples Solution: There are many routes towards escaping the pure- ly screen driven realm of design and stepping into the physical world, regardless of a users abilities in regards to industrial design or programming. Arduino has allowed microcontrollers to be- come an easily alterable system, so that someone with the barest knowledge of circuitry and programming can start to prototype smart objects. While these are better moved into a more robust environment if thought of as commercial products, for the Infor- mation Science Designer they allow an easy step into dealing with sensors and electronics. There are also many smart systems being designed by companies that are hackable and alterable. Displayed within this boards are a few such examples, including the HUE LED light-bulbs from Phil- lips, Red-Park cables which allow for an Arduino connection to iOS devices, and set iOS applications which allow for the begin- ning steps if attempting to connect to Arduino’s through wireless communication. Michael Senkow is a Masters of Science in Information: Human Computer Interaction and Architecture Science Masters student at the University of Michigan. A sampling of his work is viewable at www.mhsenkow.org Twitter: @senkowm LinkedIn: www.linkedin.com/in/mhsenkow Michael Senkow “SPIMES” are manufactured objects who informational sup- port is so overwhelmingly extensive and rich that they are regarded as material instantiations of an immaterial sys- tem. SPIMES begin and end as data. They are designed on screens, fabricated by digital means, and precisely tracked through space and time throughout their earthly sojourn. Shaping Things, Bruce Sterling You can’t eat bits, burn them to stay warm or put them in your gas tank. Ideas and information are important, but things matter much more. Yet today’s in- formation technology is so dependent on data originated by people that our computers know more about ideas than things. If we had computers that knew everything there was to know about things—using data they gathered without any help from us—we would be able to track and count everything, and greatly reduce waste, loss and cost. We would know when things needed replacing, re- pairing or recalling, and whether they were fresh or past their best. The Internet of Things has the potential to change the world, just as the Internet did. Maybe even more so. Kevin Ashton on ‘The Internet of Things’ Kickstarter Project to create a smart socket, to turn any dimmable bulb into a controlla- ble object. - www.sparkdevices.com Spark Socket Kickstarter Project for a smart lamp system, when you turn on the small base stations it alerts the home object, no matter where. - www.goodnightlamp.com Good Night Lamp Twine was an MIT project, to get the objects in your life talking to you remotely. It’s a temperature, vibration and orientation sen- sor that emails you when its environment changes. - www.supermechanical.com Twine Formerly Pachube, Cosm connects devices and apps, exchangeing data and ideas with developers, and bring smart products to the world. - www.cosm.com
  • 2. Arch 506: Responsive Surfaces Taught within the School of Architecture, this course asks the question on how to connect your physical environment to smart systems. The two project I developed in this course connected with twoconcepts;usingthegrowingnumberofsmart deviceswethrowawaywithinasecondlifeascon- trol mechanisms AND experimenting with push- ing data into physical objects. Project 1 - iPad as Room Control: This project dealt with controlling simple mechanisms through used iPod Touch or iPad controls. While the project created was more of a toy, an iPad controlled musical device, it was meant as a model for a more practical system, say a room controller. Design Process Comparison to Existing Installations Early in the course there was specific research into existing projects that fell into the realm of pushing data devices into the architectural realm. niklasroy - Responsive Window TouchOSC Connection Low Fidelity Display Conception jimcampbell - Scattered LIght InitialTesting with LED lighting Experimentation Before settling on the wired connection between the iPad and Arduino, multiple experiments were performed, with different wireless and wired connections. The final project was taken on due to limitations with the schools wireless network. Final Critiques and Continuation The final results of the course ended in more of the Architectural Critique form and part of the projects continued into other courses. The lighting studies moved into the examples I have on the next board, and the low fidelity prototype inspired work for SI:582 Interaction Design Expansion Potential While the project was simply an arduino being controlled through an iPad, this con- cept could easily be exanded into housing controls, interfaces for other mechanical systems, or other physical systems that need an interface. A first gen iPod Touch can be found on eBay now for less than $30.00, displaying an entire realm of poten- tial interface options. Expansion Potential All too often data ends up purely in the screen environment. This project shows a potentail stepping stone, moving information nodes into more physical objects. While lighting is only a small step away from a screen, it shows that you could de- velop a system that doesn’t fall back on the flat world quite as often. Videos and Further discussion at http://portfolio.mhsenkow.org/responsivesurf.html Project 2 - Sensors within Furniture The second project connected a more physical, ambient object with a data store. This project created a higher powered, incandescent lamp that detected a user nearby and set off a organic lighting display.
  • 3. SI 601: Data Manipulation Michael Senkow is a Masters of Science in Information: Human Computer Interaction and Architecture Science Masters student at the University of Michigan. A sampling of his work is viewable at www.mhsenkow.org ThecoreoftheDataManipulationcourseislook- ing into ways to stream data from sites and ap- plications. As a final project, I worked with Haley Vingsness, Vijay Swamy, and Nicholas Hung to produce a simply python concept that connects with Phillips HUE lightbulbs. The Core concept was to think of a way to take weather data and push it into a physical object. HUE recently put out an API for control of the bulbs, but at the time this was more of a hack on the system. Design Focus Multiple steps were taken to determine the final set of data that could be displayed. Weather.com was the first source, but Yahoo weather became our go to because of its more segmented set of weather options. One of the biggest challenges was simply deter- miningpatternsfortheweather.Asampleofsome of the code prouduced is shown below. Code for the Project is at https://github.com/mhsenkow/Hue-Weather Video of the Project is at http://www.youtube.com/watch?v=Rq6Tn0AiFn4 if display ==“weather”: while description ==“0”:#tornado l.bri(250) l.alert() for y in range(10): for dim in range(10): l.set_state({“bri”: 250-dim*20,”xy”: [0.1, y*0.1]}) time.sleep(0.01) l.alert() switch = switch*-1 while description ==“1”:#tropical storm l.bri(250) l.alert() for y in range(10): for dim in range(10): l.set_state({“bri”: 250-dim*20,”xy”: [0.3, y*0.1]}) time.sleep(0.01) l.alert() switch = switch*-1 while description ==“2”:#hurricane l.bri(250) l.alert() for y in range(10): for dim in range(10): l.set_state({“bri”: 250-dim*20,”xy”: [0.5, y*0.1]}) time.sleep(0.01) l.alert() switch = switch*-1 Solution Without a Problem: Part of the joy of this project is simply in its solu- tion for something that doesn’t have a direct need. Not all of the concepts created in the In- ternet of Things Realm really have a problem to begin with. They’re more of a solution to some- thing se didn’t even know we needed. By having this added bit of aesthetic though, you can start to see solutions to other problems that may not have been considered.