From e9be1435c5a7d537b621b74b61538dff3a987649 Mon Sep 17 00:00:00 2001 From: auke Date: Sun, 1 Mar 2020 10:16:00 +0000 Subject: [PATCH] Update page 'Message Queue Endpoint' --- Message-Queue-Endpoint.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Message-Queue-Endpoint.md b/Message-Queue-Endpoint.md index e03f1fe..09b6207 100644 --- a/Message-Queue-Endpoint.md +++ b/Message-Queue-Endpoint.md @@ -1,7 +1,6 @@ ## Intro This documentation page provides the basics on how to access the MQTT endpoint of FarmMaps, using Python code for examples. - -Even when using a different programming language, the same workflow can be followed (as long as there's a MQTT client and a Protobuf library for the language you are using). FarmMaps provides an MQTT endpoint to allow your application to send signals to FarmMaps, and listen for events. These signals are collected in a "message queue". +The same workflow can be followed for different languages, as long as there's a MQTT client and a Protobuf library for the language you are using. FarmMaps provides an MQTT endpoint to allow your application to send signals to FarmMaps, and listen for events. These signals are collected in a "message queue". If you are not familiar with MQTT or message queues in general, please see the short explanation below. @@ -24,7 +23,7 @@ To quote the Google Documentation: > Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data – think XML, but smaller, faster, and simpler. > You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. -More information can be found in the [protobuf documentation](https://developers.google.com/protocol-buffers/docs/overview) +More information can be found in the [protobuf documentation](https://developers.google.com/protocol-buffers/docs/overview). ### Prerequisites To follow along with the examples, you need: