Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cumulocity-iot/cumulocityiot-examples
Smart Trashcan for Cumulocity IoT as seen at IoT World 2019. This is utilizing a HR-SC-4 ultrasonic sensor on Raspberry Pi.
https://github.com/cumulocity-iot/cumulocityiot-examples
cumulocity-example cumulocity-iot example iot-analytics raspberry-pi
Last synced: 2 days ago
JSON representation
Smart Trashcan for Cumulocity IoT as seen at IoT World 2019. This is utilizing a HR-SC-4 ultrasonic sensor on Raspberry Pi.
- Host: GitHub
- URL: https://github.com/cumulocity-iot/cumulocityiot-examples
- Owner: Cumulocity-IoT
- License: apache-2.0
- Archived: true
- Created: 2019-07-15T20:39:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-08T13:25:44.000Z (about 1 year ago)
- Last Synced: 2024-12-20T17:16:03.851Z (2 days ago)
- Topics: cumulocity-example, cumulocity-iot, example, iot-analytics, raspberry-pi
- Language: Python
- Homepage:
- Size: 104 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Connected Ultrasonic Smart Trashcan
Smart Trashcan for Cumulocity IoT as seen at IoT World 2019. This is utilizing a HR-SC04 ultrasonic sensor on Raspberry Pi on the Cumulocity IoT Platform### Prerequisites
Pre-requisites:
- Python (tested on Python 3.6+)
- 'json', 'requests', 'paho-mqtt' packages installed (e.g. pip install xxx)
- Cumulocity tenant with Basic Authentication
- HR-SC04 Ultrasonic Connector hooked to Raspberry Pi using### Hardware
You need the following components:
- Breadboard
- HC-SR04 Sensor
- 1kΩ Resistor
- 2kΩ Resistor
- Jumper WiresThe HC-SR04 ultrasonic distance sensor's voltage needs to be regulated from 5V to 3.3V to prevent damage to your hardware. Wire the ultrasonic sensor based on the following circut below:
![trigger](./HR-SC04-wiring.png)### Script Modifications:
Open the smartTrash.py script, and modify the following:- *Tenant URL*\
This is your own personal C8Y ID- *clientID*\
This could be anything. This is used as a unique identifier for your MQTT messages to be mapped to a device and assist in device creation.- *tenantID*\
Unique system generated ID for your tenant. You can get the tenantID by running the following API Call```
GET /tenant/currentTenant
```- *username/password* \
Basic Auth is fine for MQTT messages. Although it's not required, you will need to encode it in Base64 if you plan on using the API calls. \Synatax for Basic Auth in Base64 is as follows:
```
Basic tenantID/username:password
```Client ID should be unique per device (if you plan on creating multiple devices). This will be used in the MQTT call.
### Running
- Run the python script though your console, ensuring the Python environment and required packages are available in the path.
```
>> python ./smartTrash.py
```This should automatically trigger device creation in Cumulocity and the distance measurements on the python console should start being posted under the measurements tab under device management application for your specific device. You can then start creating a dashboard and apama analytics rules to further built on this demo.
------------
These tools are provided as-is and without warranty or support. They do not constitute part of the Software AG product suite. Users are free to use, fork and modify them, subject to the license agreement. While Software AG welcomes contributions, we cannot guarantee to include every contribution in the main project.