Reading and Writing Data Using Buffers -Nodejs & Node-Red

What is a Buffer?  -A buffer is an array of binary data. Each element in the array is 8 bit binary data. When are buffers used?  -Buffers are used when you need low level access to data usually that has been received on the network or from the file system. Data stored on computers and transferred between computers on networks is stored or sent as a sequence of bytes. When you read data from a file or from the network it is read into a data buffer. Node.js Buffer Module To work with buffers in node-red we use the node

Continue reading

Control Raspberry Pi GPIO Pins Using MQTT

The Raspberry Pi has 40 General purpose Input/output Pins (GPIO) that can be used for controlling external hardware. There are  a number of add-on boards called hats which plug into these pins and provide various sensors. The most common one being the sense hat.

Continue reading

MQTT Data Logger -Node-Red

This is a IOT data and topic logger similar to the python data and topic loggers that can be used for logging MQTT sensor and device data to log files either as a single file containing multiple topics or multiple files based on topic. It is controlled using a node-red dashboard making it much easier to use than the python loggers.

Continue reading

Beginners Guide to Data and Character Encoding

When I first starting working with computers everything was in ASCII ( American Standard Code for Information Interchange ) However today working with networking protocols and network programming you will come across a variety of data and character encoding schemes. In this tutorial we will look at basic encoding schemes used on computers and in the second part of the tutorial we look at how data is sent over a network.

Continue reading

How MQTT Works -Beginners Guide

How Does MQTT Work ?-MQTT is a messaging protocol i.e it was designed for transferring messages, and uses a publish and subscribe model. This model makes it possible to send messages to 0,1 or multiple clients.

Continue reading

Public MQTT Brokers and Reserved Topics – Discussion Post

Preface This is a discussion post and these are currently my thoughts on this topic. I would be grateful for comments and feedback. Introduction MQTT is still in the early stages of deployment and currently is used only on private networks. However with the growth in the adoption of the MQTT protocol for information distribution the number of public brokers and topics will probably increase substantially just as happened with websites in the early days of the internet.

Continue reading

Republish HTML Data Over MQTT

HTTP is the protocol that powers the Web,and is the most common protocol on the Internet. Because http is a request/response protocol a visitor viewing a web page must issue a new request in order to refresh the data.

Continue reading