Modbus master library not working

I am using below code but receiving 224 value in result instead of 0 but my modbus rtu drive is accepting commands
What to do?

#include <ModbusMaster.h>
#include <SoftwareSerial.h>
#define MODBUS_DATA_TRANSACTION_PIN 8
SoftwareSerial mySerial(2,3); //Software Serial port For Arduino Uno

ModbusMaster node;

void preTransmission()
{
digitalWrite(MODBUS_DATA_TRANSACTION_PIN, 1);
}

void postTransmission()
{
digitalWrite(MODBUS_DATA_TRANSACTION_PIN, 0);
}

void setup()
{
pinMode(MODBUS_DATA_TRANSACTION_PIN, OUTPUT);
digitalWrite(MODBUS_DATA_TRANSACTION_PIN, 0);
Serial.begin(9600);
mySerial.begin(9600);

// Modbus slave ID 1
node.begin(1, mySerial);
// Callbacks allow us to configure the RS485 transceiver correctly
node.preTransmission(preTransmission);
node.postTransmission(postTransmission);
}

void loop()
{
uint8_t result;
result = node.writeSingleRegister(182, 1); //1-RS485 enable & 2-RS485 disable
Serial.print(result);
}

Please submit an issue for all questions, bug reports, and feature requests. Email requests will be politely redirected to the issue tracker so others may contribute to the discussion and requestors get a more timely response.

Source: GitHub - 4-20ma/ModbusMaster: Enlighten your Arduino to be a Modbus master

##Support## Please report any bugs on the Issue Tracker.

Source: https://github.com/syvic/ModbusMaster

It is ku8mbinvalidslaveid 0xE0 error
https://4-20ma.io/ModbusMaster/group__constant.html
How to remove this error?

How can I receive echo response from modbus device using ModbusMaster library?
Please help.