SlideShare une entreprise Scribd logo
1  sur  22
Télécharger pour lire hors ligne
Pebble Watch
Wrist control of your smart home
Pavel Dmitriev, http://nimble.com
What’s inside
• Sharp 1,32" eInk display (144 × 168 pixels, 176 PPI)
• 3 x LCDs backlight
• Bluetooth 2.1 (default), 4.0 + EDR 4.0 + LE
• ARM Cortex-M3, up to 80 MHz with 512 KB
• 8 x 96 KB slots (in old Pebbles)
• 4 buttons, 3 axis accelerometer with gesture
detection, magnetometer, ambient light sensor, vibro
What's the deal?
• Time
• Notifications
• Activity tracker (Misfit, Runkeeper, Jawbone UP, etc.)
• Music remote
• Calendars, twitter, RSS
• Compass, timers, GoPro, etc., etc., etc.
Positive sides
• eInk — visible on bright sun of Montenegro
• Allways on
• Works up to 7 days (5 days avg.)
• Inexpensive (from $99)
• Water resistant (50m for basic, 30m for Time)
Negative sides
• Slow CPU and limited resources
• Not so good system integration
• No speakerphone (Time have microphone)
• Phone required for Internet access and GPS
Only real smart
WATCH
Two languages
VS
JavascriptC++
Development options
• Local SDK 

No so easy to set up, but fast and reliable
• Cloud IDE

Easy to start, but some glitches present
Simple example
• Simple API, let’s pretend it’s smart controller API
• GET /api — get value {'val': x}
• POST /api — set value {'val': x}
• /ws — websocket API
Requirements
var ajax = require('ajax');
var UI = require('ui');
var Vector2 = require('vector2');
var Vibe = require('ui/vibe');
var val = 5;
Main window
var wind = new UI.Window({
fullscreen: true,
backgroundColor: 'white',
action: {
up: 'images/Icon Plus.png',
down: 'images/Icon Minus.png',
select: 'images/Icon Check.png'
}
});
Two text fields
var val_field = new UI.Text({
position: new Vector2(0, 65),
size: new Vector2(114, 30),
font: 'gothic-28-bold',
text: '???',
textAlign: 'center',
color: 'black',
});
Two text fields
var stat_field = new UI.Text({
position: new Vector2(0, 140),
size: new Vector2(114, 30),
font: 'gothic-14-bold',
text: 'Status',
textAlign: 'center',
color: 'white',
});
wind.add(val_field);
wind.add(stat_field);
Clicks handler
function on_click(e) {
if(e.button == 'up') {
if(val < 10) {
val += 1;
} else {
Vibe.vibrate('short');
}
} else {
if(val > 0) {
val -= 1;
} else {
Vibe.vibrate('short');
}
}
val_field.text('Value = ' + val);
console.log('Value = ' + val);
}
Helper and handlers setting
function show_status(stat_text) {
stat_field.text(stat_text);
stat_field.color('black');
setTimeout(function () {
stat_field.color('white');
}, 1000);
}
wind.on('click', 'up', on_click);
wind.on('click', 'down', on_click);
Über server interaction
wind.on('click', 'select', function(e) {
ajax({
'url': 'http://cleg.pagekite.me/api',
'method': 'post',
'type': 'json',
'data': {'val': val}
},
function(data, status, request) {
console.log('OK ' + JSON.stringify(data));
show_status('GUT !');
},
function(error, status, request) {
console.log('The ajax request failed: ' + error);
show_status('FAIL :(');
}
);
console.log('Tried to set value=' + val);
});
Ask value from server
(with respect)
Get initial value
ajax(
{
url: 'http://cleg.pagekite.me/api',
type: 'json'
},
function(data, status, request) {
val = data.val;
val_field.text('Value = ' + val);
},
function(error, status, request) {
console.log('The ajax request failed: ' + error);
}
);
Main magic
wind.show();
Now we see it!
Near future: Time
• 64 color screen (remember EGA? it's 4 times
better)
• Microphone for spoken notes and replies
• New 3.0 SDK and timelite view
Thank you!
• https://github.com/cleg/bulb
• https://github.com/cleg/DummyServ

Contenu connexe

En vedette

SMS For Email Service Providers Webinar
SMS For Email Service Providers WebinarSMS For Email Service Providers Webinar
SMS For Email Service Providers WebinarWaterfall Mobile
 
【STR2 ポケラボ プレゼンテーション】
【STR2 ポケラボ プレゼンテーション】【STR2 ポケラボ プレゼンテーション】
【STR2 ポケラボ プレゼンテーション】Up Hatch
 
Phoenix Sales Conference
Phoenix Sales ConferencePhoenix Sales Conference
Phoenix Sales ConferenceChris Koehncke
 
When it rains: Prepare for scale with Amazon EC2
When it rains: Prepare for scale with Amazon EC2When it rains: Prepare for scale with Amazon EC2
When it rains: Prepare for scale with Amazon EC2Dan Lynn
 
Interculturalidad compilacion de temas
Interculturalidad compilacion de temasInterculturalidad compilacion de temas
Interculturalidad compilacion de temasTeodoro Pozo Uribe
 
Join the python_side
Join the python_sideJoin the python_side
Join the python_sidePaul Dmitryev
 
Zur blutlehre
Zur blutlehreZur blutlehre
Zur blutlehreedospeedo
 
Extending your CRM to Mobile_april 2011
Extending your CRM to Mobile_april 2011Extending your CRM to Mobile_april 2011
Extending your CRM to Mobile_april 2011Waterfall Mobile
 
Stacked deck presentation (1)
Stacked deck presentation (1)Stacked deck presentation (1)
Stacked deck presentation (1)Joe Hines
 
Сгореть на работе и восстать из пепла (SQA Days-15)
Сгореть на работе и восстать из пепла (SQA Days-15)Сгореть на работе и восстать из пепла (SQA Days-15)
Сгореть на работе и восстать из пепла (SQA Days-15)Catherine Tipanova
 
Fall sem exam review 2010 #1
Fall sem exam review 2010 #1Fall sem exam review 2010 #1
Fall sem exam review 2010 #1tracygrem
 
Retail Mobile Marketing Webinar
Retail Mobile Marketing WebinarRetail Mobile Marketing Webinar
Retail Mobile Marketing WebinarWaterfall Mobile
 

En vedette (19)

2011 CWMU & Landowner Associations — Dec. 2, 2010 Meeting
2011 CWMU & Landowner Associations — Dec. 2, 2010 Meeting2011 CWMU & Landowner Associations — Dec. 2, 2010 Meeting
2011 CWMU & Landowner Associations — Dec. 2, 2010 Meeting
 
SMS For Email Service Providers Webinar
SMS For Email Service Providers WebinarSMS For Email Service Providers Webinar
SMS For Email Service Providers Webinar
 
【STR2 ポケラボ プレゼンテーション】
【STR2 ポケラボ プレゼンテーション】【STR2 ポケラボ プレゼンテーション】
【STR2 ポケラボ プレゼンテーション】
 
Metaprogramming
MetaprogrammingMetaprogramming
Metaprogramming
 
Phoenix Sales Conference
Phoenix Sales ConferencePhoenix Sales Conference
Phoenix Sales Conference
 
When it rains: Prepare for scale with Amazon EC2
When it rains: Prepare for scale with Amazon EC2When it rains: Prepare for scale with Amazon EC2
When it rains: Prepare for scale with Amazon EC2
 
Interculturalidad compilacion de temas
Interculturalidad compilacion de temasInterculturalidad compilacion de temas
Interculturalidad compilacion de temas
 
Join the python_side
Join the python_sideJoin the python_side
Join the python_side
 
Zur blutlehre
Zur blutlehreZur blutlehre
Zur blutlehre
 
Commsday presentation
Commsday presentationCommsday presentation
Commsday presentation
 
Neostorm case analysis
Neostorm case analysisNeostorm case analysis
Neostorm case analysis
 
Extending your CRM to Mobile_april 2011
Extending your CRM to Mobile_april 2011Extending your CRM to Mobile_april 2011
Extending your CRM to Mobile_april 2011
 
Impacts of Predation on Mule Deer in Utah, April 2011
Impacts of Predation on Mule Deer in Utah, April 2011Impacts of Predation on Mule Deer in Utah, April 2011
Impacts of Predation on Mule Deer in Utah, April 2011
 
2011 Antlerless Recommendations, May 4, 2011
2011 Antlerless Recommendations, May 4, 20112011 Antlerless Recommendations, May 4, 2011
2011 Antlerless Recommendations, May 4, 2011
 
Stacked deck presentation (1)
Stacked deck presentation (1)Stacked deck presentation (1)
Stacked deck presentation (1)
 
Сгореть на работе и восстать из пепла (SQA Days-15)
Сгореть на работе и восстать из пепла (SQA Days-15)Сгореть на работе и восстать из пепла (SQA Days-15)
Сгореть на работе и восстать из пепла (SQA Days-15)
 
Fall sem exam review 2010 #1
Fall sem exam review 2010 #1Fall sem exam review 2010 #1
Fall sem exam review 2010 #1
 
Retail Mobile Marketing Webinar
Retail Mobile Marketing WebinarRetail Mobile Marketing Webinar
Retail Mobile Marketing Webinar
 
Portfolio
PortfolioPortfolio
Portfolio
 

Similaire à Pebble as remote control

An introduction to Deep Learning with Apache MXNet (November 2017)
An introduction to Deep Learning with Apache MXNet (November 2017)An introduction to Deep Learning with Apache MXNet (November 2017)
An introduction to Deep Learning with Apache MXNet (November 2017)Julien SIMON
 
Fun with sensors - JSConf.asia 2014
Fun with sensors - JSConf.asia 2014Fun with sensors - JSConf.asia 2014
Fun with sensors - JSConf.asia 2014Jan Jongboom
 
How to Program SmartThings
How to Program SmartThingsHow to Program SmartThings
How to Program SmartThingsJanet Huang
 
BINARY DATA ADVENTURES IN BROWSER JAVASCRIPT
BINARY DATA ADVENTURES  IN BROWSER JAVASCRIPTBINARY DATA ADVENTURES  IN BROWSER JAVASCRIPT
BINARY DATA ADVENTURES IN BROWSER JAVASCRIPTOr Hiltch
 
Monitoring Complex Systems: Keeping Your Head on Straight in a Hard World
Monitoring Complex Systems: Keeping Your Head on Straight in a Hard WorldMonitoring Complex Systems: Keeping Your Head on Straight in a Hard World
Monitoring Complex Systems: Keeping Your Head on Straight in a Hard WorldBrian Troutwine
 
TestowanieIoT2016
TestowanieIoT2016TestowanieIoT2016
TestowanieIoT2016kraqa
 
Development of wearable object detection system &amp; blind stick for visuall...
Development of wearable object detection system &amp; blind stick for visuall...Development of wearable object detection system &amp; blind stick for visuall...
Development of wearable object detection system &amp; blind stick for visuall...Arkadev Kundu
 
Developing a Multiplayer RTS with the Unreal Engine 3
Developing a Multiplayer RTS with the Unreal Engine 3Developing a Multiplayer RTS with the Unreal Engine 3
Developing a Multiplayer RTS with the Unreal Engine 3Nick Pruehs
 
T-Mobile and Elastic
T-Mobile and ElasticT-Mobile and Elastic
T-Mobile and ElasticElasticsearch
 
Fullstack Conference - Proxies before proxies: The hidden gems of Javascript...
Fullstack Conference -  Proxies before proxies: The hidden gems of Javascript...Fullstack Conference -  Proxies before proxies: The hidden gems of Javascript...
Fullstack Conference - Proxies before proxies: The hidden gems of Javascript...Tim Chaplin
 
A guided fuzzing approach for security testing of network protocol software
A guided fuzzing approach for security testing of network protocol softwareA guided fuzzing approach for security testing of network protocol software
A guided fuzzing approach for security testing of network protocol softwarebinish_hyunseok
 
Fun with JavaScript and sensors - AmsterdamJS April 2015
Fun with JavaScript and sensors - AmsterdamJS April 2015Fun with JavaScript and sensors - AmsterdamJS April 2015
Fun with JavaScript and sensors - AmsterdamJS April 2015Jan Jongboom
 
HTML5 game dev with three.js - HexGL
HTML5 game dev with three.js - HexGLHTML5 game dev with three.js - HexGL
HTML5 game dev with three.js - HexGLThibaut Despoulain
 
ma project
ma projectma project
ma projectAisu
 
Fast rendering with starling
Fast rendering with starlingFast rendering with starling
Fast rendering with starlingFlash Conference
 
Polymer Brush Data Processor
Polymer Brush Data ProcessorPolymer Brush Data Processor
Polymer Brush Data ProcessorCory Bethrant
 

Similaire à Pebble as remote control (20)

An introduction to Deep Learning with Apache MXNet (November 2017)
An introduction to Deep Learning with Apache MXNet (November 2017)An introduction to Deep Learning with Apache MXNet (November 2017)
An introduction to Deep Learning with Apache MXNet (November 2017)
 
Fun with sensors - JSConf.asia 2014
Fun with sensors - JSConf.asia 2014Fun with sensors - JSConf.asia 2014
Fun with sensors - JSConf.asia 2014
 
Virtual mouse
Virtual mouseVirtual mouse
Virtual mouse
 
How to Program SmartThings
How to Program SmartThingsHow to Program SmartThings
How to Program SmartThings
 
BINARY DATA ADVENTURES IN BROWSER JAVASCRIPT
BINARY DATA ADVENTURES  IN BROWSER JAVASCRIPTBINARY DATA ADVENTURES  IN BROWSER JAVASCRIPT
BINARY DATA ADVENTURES IN BROWSER JAVASCRIPT
 
Monitoring Complex Systems: Keeping Your Head on Straight in a Hard World
Monitoring Complex Systems: Keeping Your Head on Straight in a Hard WorldMonitoring Complex Systems: Keeping Your Head on Straight in a Hard World
Monitoring Complex Systems: Keeping Your Head on Straight in a Hard World
 
TestowanieIoT2016
TestowanieIoT2016TestowanieIoT2016
TestowanieIoT2016
 
Development of wearable object detection system &amp; blind stick for visuall...
Development of wearable object detection system &amp; blind stick for visuall...Development of wearable object detection system &amp; blind stick for visuall...
Development of wearable object detection system &amp; blind stick for visuall...
 
Developing a Multiplayer RTS with the Unreal Engine 3
Developing a Multiplayer RTS with the Unreal Engine 3Developing a Multiplayer RTS with the Unreal Engine 3
Developing a Multiplayer RTS with the Unreal Engine 3
 
T-Mobile and Elastic
T-Mobile and ElasticT-Mobile and Elastic
T-Mobile and Elastic
 
Fullstack Conference - Proxies before proxies: The hidden gems of Javascript...
Fullstack Conference -  Proxies before proxies: The hidden gems of Javascript...Fullstack Conference -  Proxies before proxies: The hidden gems of Javascript...
Fullstack Conference - Proxies before proxies: The hidden gems of Javascript...
 
Apache Cassandra at Macys
Apache Cassandra at MacysApache Cassandra at Macys
Apache Cassandra at Macys
 
A guided fuzzing approach for security testing of network protocol software
A guided fuzzing approach for security testing of network protocol softwareA guided fuzzing approach for security testing of network protocol software
A guided fuzzing approach for security testing of network protocol software
 
Brain access
Brain accessBrain access
Brain access
 
Machine Learning in Action
Machine Learning in ActionMachine Learning in Action
Machine Learning in Action
 
Fun with JavaScript and sensors - AmsterdamJS April 2015
Fun with JavaScript and sensors - AmsterdamJS April 2015Fun with JavaScript and sensors - AmsterdamJS April 2015
Fun with JavaScript and sensors - AmsterdamJS April 2015
 
HTML5 game dev with three.js - HexGL
HTML5 game dev with three.js - HexGLHTML5 game dev with three.js - HexGL
HTML5 game dev with three.js - HexGL
 
ma project
ma projectma project
ma project
 
Fast rendering with starling
Fast rendering with starlingFast rendering with starling
Fast rendering with starling
 
Polymer Brush Data Processor
Polymer Brush Data ProcessorPolymer Brush Data Processor
Polymer Brush Data Processor
 

Dernier

Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...chiefasafspells
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...Jittipong Loespradit
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburgmasabamasaba
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...masabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Bert Jan Schrijver
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park masabamasaba
 

Dernier (20)

Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 

Pebble as remote control

  • 1. Pebble Watch Wrist control of your smart home Pavel Dmitriev, http://nimble.com
  • 2. What’s inside • Sharp 1,32" eInk display (144 × 168 pixels, 176 PPI) • 3 x LCDs backlight • Bluetooth 2.1 (default), 4.0 + EDR 4.0 + LE • ARM Cortex-M3, up to 80 MHz with 512 KB • 8 x 96 KB slots (in old Pebbles) • 4 buttons, 3 axis accelerometer with gesture detection, magnetometer, ambient light sensor, vibro
  • 3. What's the deal? • Time • Notifications • Activity tracker (Misfit, Runkeeper, Jawbone UP, etc.) • Music remote • Calendars, twitter, RSS • Compass, timers, GoPro, etc., etc., etc.
  • 4. Positive sides • eInk — visible on bright sun of Montenegro • Allways on • Works up to 7 days (5 days avg.) • Inexpensive (from $99) • Water resistant (50m for basic, 30m for Time)
  • 5. Negative sides • Slow CPU and limited resources • Not so good system integration • No speakerphone (Time have microphone) • Phone required for Internet access and GPS
  • 8. Development options • Local SDK 
 No so easy to set up, but fast and reliable • Cloud IDE
 Easy to start, but some glitches present
  • 9. Simple example • Simple API, let’s pretend it’s smart controller API • GET /api — get value {'val': x} • POST /api — set value {'val': x} • /ws — websocket API
  • 10. Requirements var ajax = require('ajax'); var UI = require('ui'); var Vector2 = require('vector2'); var Vibe = require('ui/vibe'); var val = 5;
  • 11. Main window var wind = new UI.Window({ fullscreen: true, backgroundColor: 'white', action: { up: 'images/Icon Plus.png', down: 'images/Icon Minus.png', select: 'images/Icon Check.png' } });
  • 12. Two text fields var val_field = new UI.Text({ position: new Vector2(0, 65), size: new Vector2(114, 30), font: 'gothic-28-bold', text: '???', textAlign: 'center', color: 'black', });
  • 13. Two text fields var stat_field = new UI.Text({ position: new Vector2(0, 140), size: new Vector2(114, 30), font: 'gothic-14-bold', text: 'Status', textAlign: 'center', color: 'white', }); wind.add(val_field); wind.add(stat_field);
  • 14. Clicks handler function on_click(e) { if(e.button == 'up') { if(val < 10) { val += 1; } else { Vibe.vibrate('short'); } } else { if(val > 0) { val -= 1; } else { Vibe.vibrate('short'); } } val_field.text('Value = ' + val); console.log('Value = ' + val); }
  • 15. Helper and handlers setting function show_status(stat_text) { stat_field.text(stat_text); stat_field.color('black'); setTimeout(function () { stat_field.color('white'); }, 1000); } wind.on('click', 'up', on_click); wind.on('click', 'down', on_click);
  • 16. Über server interaction wind.on('click', 'select', function(e) { ajax({ 'url': 'http://cleg.pagekite.me/api', 'method': 'post', 'type': 'json', 'data': {'val': val} }, function(data, status, request) { console.log('OK ' + JSON.stringify(data)); show_status('GUT !'); }, function(error, status, request) { console.log('The ajax request failed: ' + error); show_status('FAIL :('); } ); console.log('Tried to set value=' + val); });
  • 17. Ask value from server (with respect)
  • 18. Get initial value ajax( { url: 'http://cleg.pagekite.me/api', type: 'json' }, function(data, status, request) { val = data.val; val_field.text('Value = ' + val); }, function(error, status, request) { console.log('The ajax request failed: ' + error); } );
  • 20. Now we see it!
  • 21. Near future: Time • 64 color screen (remember EGA? it's 4 times better) • Microphone for spoken notes and replies • New 3.0 SDK and timelite view
  • 22. Thank you! • https://github.com/cleg/bulb • https://github.com/cleg/DummyServ