This application demonstrates capturing sensor measurements on the blockchain using Ambrosus API.
It's composed of:
- A local connection to our private Ethereum test network using testrpc
- A local node.js app (bridge) that receives data from sensors and pushes it
- An ethereum smart contract that receives sensor data periodically and reacts if sensed data exceeds a predefined threshold
- Clone this repo and install dependencies
$ git clone https://github.com/ambrosus/app-sensor-telemetry
$ cd app-sensor-telemetry
$ npm install
- In a separate shell, start testrpc
$ testrpc -u0 -u1 -u2 -u3
NOTE: If you don't have testrpc
, you can install like so: npm i -g ethereumjs-testrpc
- Deploy contracts to the network
$ truffle migrate
NOTE: If you don't have truffle
, you can install like so: npm i -g truffle
- Start Web server
$ npm start
You should see something along the lines of:
$ npm start
> app-sensor-telemetry@1.0.0 start /home/ambrosus/app-sensor-telemetry
> DEBUG=api:* ./bin/api
api:server API service started on 0.0.0.0:3000 +0ms
- Create an account at https://dev.ambrosus.com and get an address and secret.
- Open a browser and go to the app by passing sensor data in the query params as follows:
http://localhost:3000/telemetry/send?
owner=[your-address]
&secret=[your-secret]
&shipmentId=123
&name=Tylenol
&temp=5
&humidity=40
&pressure=1000
A shipment is created if it doesn't exist. all subsequent calls add sensor information to the given shipmentId
.