+ All Categories
Home > Documents > Mesh Enabling sobees Demo

Mesh Enabling sobees Demo

Date post: 03-Jan-2016
Category:
Upload: sebastien-romano
View: 11 times
Download: 0 times
Share this document with a friend
Description:
Mesh Enabling sobees Demo. Jean-Pierre Rey, Professor HES, [email protected] Alain Duc, scientific collaborator , [email protected] Academic TechDays , Geneva, Bern, April 2009. Live Framework Client. VPC: [email protected]. Laptop: [email protected]. MeshAppPOC Startup. - PowerPoint PPT Presentation
Popular Tags:
20
Mesh Enabling sobees Demo Jean-Pierre Rey, Professor HES, [email protected] Alain Duc, scientific collaborator, [email protected] Academic TechDays, Geneva, Bern, April 2009
Transcript
Page 1: Mesh Enabling sobees Demo

Mesh Enabling sobeesDemo

Jean-Pierre Rey, Professor HES, [email protected] Alain Duc, scientific collaborator, [email protected]

Academic TechDays, Geneva, Bern, April 2009

Page 2: Mesh Enabling sobees Demo

Laptop: [email protected]

VPC: [email protected]

Live Framework Client

Page 3: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Startup

VPC: MeshAppPOC Startup

MeshAppPOC Startup

Page 4: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Connect to Cloud LOE

VPC: MeshAppPOC Startup

Connection to Cloud LOE

Page 5: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Connected to Cloud LOE

VPC: MeshAppPOC Startup

Profile

Page 6: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Create MeshObject

VPC: MeshAppPOC Startup

MeshObject

Page 7: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Connect to Local LOE and wait for MeshObject

VPC: MeshAppPOC Connect to Local LOE and wait for MeshObject

Connect to Local LOE

Page 8: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Connected to Local LOE and MeshObject ready

VPC: MeshAppPOC Connected to Local LOE and MeshObject ready

Local LOE ready

Page 9: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Get DataEntries

VPC: MeshAppPOC Get DataEntries

DataEntries

Page 10: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Drag&Drop Images

VPC: MeshAppPOC Wait for Images

Add images

Page 11: Mesh Enabling sobees Demo

Laptop: MeshAppPOC

VPC: MeshAppPOC Images are synchronized

Synchronization

Page 12: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Wait for image to be deleted

VPC: MeshAppPOC Delete an image

Delete image

Page 13: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Image is deleted

VPC: MeshAppPOC

Synchronization

Page 14: Mesh Enabling sobees Demo

Laptop: MeshAppPOC Share MeshObject

Receive invitation

Sharing MeshObject

Page 15: Mesh Enabling sobees Demo

Laptop: MeshAppPOC

Login on Live Mesh

Login on Live Mesh

Page 16: Mesh Enabling sobees Demo

Laptop: MeshAppPOC

Accept invitation

Accept invitation

Page 17: Mesh Enabling sobees Demo

Laptop: MeshAppPOC

VPC: MeshAppPOC

MeshAppPOC

Page 18: Mesh Enabling sobees Demo

Create MeshObject / Data

//Create MeshObjectmeshObject = new MeshObject(MESHOBJECT);//Add it to collectionloe.Mesh.MeshObjects.Add(ref meshObject);

//Create DataFeeddataFeed = new DataFeed(DATAFEED);//Add it to collectionmeshObject.DataFeeds.Add(ref dataFeed);

//Mappingsforeach (MeshDevice device in loe.Mesh.Devices.Entries){ Mapping map = new Mapping(); map.Device = device; meshObject.Mappings.Add(ref map);}

Page 19: Mesh Enabling sobees Demo

Notifications

//Set a handler tracking if MeshObjects collection changesloe.Mesh.MeshObjects.ChangeNotificationReceived += new EventHandler(MeshObjects_ChangeNotificationReceived);

//Set a handler tracking if DataEntries collection changesdataFeed.DataEntries.ChangeNotificationReceived += new EventHandler(DataEntries_ChangeNotificationReceived);

Page 20: Mesh Enabling sobees Demo

Recommended