Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Tutorial grovepi
- https://www.dexterindustries.com/grovepi-tutorials-documentation/
- # Description des ports grovepi
- https://www.dexterindustries.com/GrovePi/engineering/port-description/
- # Installation logiciel grove
- sudo curl -kL dexterindustries.com/update_grovepi | bash
- # Exemples grovepi
- # exemples python dans GrovePi/Software/Python
- sudo git clone https://github.com/DexterInd/GrovePi
- # Installation mqtt
- sudo wget https://repo.mosquitto.org/debian/mosquitto-repo.gpg.key
- sudo apt-key add mosquitto-repo.gpg.key
- cd /etc/apt/sources.list.d/
- sudo wget http://repo.mosquitto.org/debian/mosquitto-stretch.list
- sudo apt-get update
- sudo apt-get install mosquitto mosquitto-clients
- # installation bibliothèque python paho mqtt
- sudo pip install paho-mqtt
- # Démarrage / Arrêt du serveur mosquitto
- sudo /etc/init.d/mosquitto stop
- sudo /etc/init.d/mosquitto start
- # Test du broker ouvert mosquitto.org
- mosquitto_sub -h test.mosquitto.org -t "#" -v
- # Exemple mqtt python
- git clone https://rbastide@bitbucket.org/rbastide/grovemqtt.git
- # Exemple mqtt javascript
- git clone https://rbastide@bitbucket.org/rbastide/mqttjavascriptclient.git
- # Exemple mqtt java
- git clone https://rbastide@bitbucket.org/rbastide/mqtttransformer.git
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement