diff --git a/examples/quickstart/README.md b/examples/quickstart/README.md new file mode 100644 index 000000000..0183dad5f --- /dev/null +++ b/examples/quickstart/README.md @@ -0,0 +1,10 @@ +# Quick Start Things + +This set of Things can be used to build mashup applications for a smart home scenario. +These Things are: + +- Simple coffee machine that can take an order to brew a coffee. +- Presence sensor that emits an event when a person is detected. +- Smart clock that runs 60 times faster than real time, where 1 hour happens in 1 minute. + +These Things are hosted on plugfest.thingweb.io but can be also self-hosted. diff --git a/examples/quickstart/simple-coffee-machine.js b/examples/quickstart/simple-coffee-machine.js index 2df23d60c..dd042b3a6 100644 --- a/examples/quickstart/simple-coffee-machine.js +++ b/examples/quickstart/simple-coffee-machine.js @@ -47,17 +47,17 @@ servient.start().then((WoT) => { water: { type: "integer", minimum: 0, - maximum: 100, + maximum: 1000, }, beans: { type: "integer", minimum: 0, - maximum: 100, + maximum: 1000, }, milk: { type: "integer", minimum: 0, - maximum: 100, + maximum: 1000, }, }, }, diff --git a/packages/examples/src/quickstart/simple-coffee-machine.ts b/packages/examples/src/quickstart/simple-coffee-machine.ts index 5775d9cf5..fbd753d85 100644 --- a/packages/examples/src/quickstart/simple-coffee-machine.ts +++ b/packages/examples/src/quickstart/simple-coffee-machine.ts @@ -53,17 +53,17 @@ servient.start().then((WoT) => { water: { type: "integer", minimum: 0, - maximum: 100, + maximum: 1000, }, beans: { type: "integer", minimum: 0, - maximum: 100, + maximum: 1000, }, milk: { type: "integer", minimum: 0, - maximum: 100, + maximum: 1000, }, }, },