Slave library functions
The configuration of the slave is very important before starting the communication with the master device.
Library constructor
Before using the library, an object of the library must be created. This object is necessary for managing the rest of the functions.
Example of use for the RS-485 module:
For RS-232 communication the way of use is very similar.
Configuring the slave
This function is used to configure some necessary parameters of the network. This function will assign the baud rate and the slave direction that the master will use to communicate with the slave in a network.
For RS-485:
In RS-232 the use is very similar, but you have to configure the socket where the module is connected in the configuration function.
Example of use:
See an example of use here:
Saving data in registers
To use Waspmote as a Modbus slave device you need create some specific registers to exchange information. These registers are used to read or write the information sent by the master device, depending on the operation. Waspmote slave library only accepts the next Modbus functions:
These registers can be used to store information, for example from the sensors connected to Waspmote.
Example of use:
The function updates the current values of the registers in the Modbus slave object. These registers can also be written from the master device and used for example, to activate a digital output or to configure some parameters of the slave.
This function is useful for controlling what values the user wants to make available for the master.
See an example of use here:
Last updated