Received mine last firday. Been busy with them all Friday evening and saterday. The Chrome app was not updated yet because the sensors were delivered a bit quicker than expected
After Vlad updated the app and after a few reboots I got my sensors connected via USB.
Set the Wifi and inputted my http string to get it to work.
Now waiting on new firmware because the Interval Time and Threshold data are not stored and therefore reset to default after a reboot of the sensor. Also I would like to see the LED turned off because it is too bright in my bedroom.
Not all sensors were working properly so I returned a few. This is a soldering problem which only occured a few hours after initial testing. The sensors will be renewed by Vlad.
As for your question:
If
http://192.168.1.16:2234/myservice?co2=%s&id=vAir is what you entered and you are looking in your browser for results, I don't think you will get it to work. You need somekind of php or vbs script which parses the data after the ?
So if you have a simple webserver like mongoose and you have an index.php which parses the values you should address that IP with the PORT that mongoose is listening to executing index.php.
http://yourip:yourport/index.php?%s
In this case index.php will receive the CO2 value. If you have multiple sensors, sending an ID is preferred.
http://yourip:yourport/index.php?co2=%s&ID=yourspecificID
In this case index.php would look for the values splitted by & and thereafter splitted by =.
So co2= (CO2 Value) .. ID= (your id)
If the above makes no sense, than you need to get some other basics first..
Good luck