Re: [sensors] When there are multiple sensors of a given type, how do we identify which one to instantiate?

Or:

```
var pSensors = Sensor.Proximity.list(); // => [ 
<ProximitySensorObject>, <ProximitySensorObject> ];
var topLeft = pSensors[0];
topLeft.meta(); // => {position: 'top-left'}
topLeft.meta({more:'info'});
topLeft.meta(); // => {position: 'top-left', more: 'info'}
var mySensor = topLeft.create(); // or pSensors[0].spawn(); ?

/**
<ProximitySensorObject>
   id: 'as per id discovered from device?' //read-only
**/

```





-- 
GitHub Notif of comment by davidmarkclements
See https://github.com/w3c/sensors/issues/26#issuecomment-109305722

Received on Friday, 5 June 2015 14:14:10 UTC