# Communication Node Red rs485 without Modbus?

**URL:** https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345
**Category:** General
**Created:** [4 January 2025 08:31 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345 "2025-01-04T08:31:09Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![firstfacility](https://avatars.discourse-cdn.com/v4/letter/f/ce7236/32.png) [@firstfacility](https://discourse.nodered.org/u/firstfacility)
#### Post date: [4 January 2025 08:31 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345/1 "2025-01-04T08:31:09Z")

</div>

Hi everyone, I`m trying to read the Values from a Greisinger Gia1002 ns with a rs485 device.

I try it with Node Red Modbus Reader but in the Debug ther is ony an Timeout. I think my device don´t support Modbus.

Can i use the Basic Serial Communication ?  
I hope you can help me send hexadecimal commands to my device.  
I enclose the ballast manual:[Gir 1002 ns](https://www.greisinger.de/files/upload/en/produkte/bda/GIR1002NS_e.pdf)

---

<div class="post-metadata">

### Author: ![Colin](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/colin/32/17040_2.png) [@Colin](https://discourse.nodered.org/u/Colin)
#### Post date: [4 January 2025 11:52 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345/2 "2025-01-04T11:52:49Z")

</div>

> [@firstfacility](#):
>
> Can i use the Basic Serial Communication

Yes, you should be able to do that, using the serial-request node from [node-red-node-serialport (node) - Node-RED](https://flows.nodered.org/node/node-red-node-serialport).

I had a quick look at the manual and it says that the requests are all ascii strings so you may be able just to send it the strings.

---

<div class="post-metadata">

### Author: ![firstfacility](https://avatars.discourse-cdn.com/v4/letter/f/ce7236/32.png) [@firstfacility](https://discourse.nodered.org/u/firstfacility)
#### Post date: [4 January 2025 12:49 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345/3 "2025-01-04T12:49:23Z")

</div>

i try:

```auto
msg.payload = Buffer.from("\21H\30H\30H\30H\30H\2FH");

return msg;
```

but no answer from Device. What´s wrong ?

---

<div class="post-metadata">

### Author: ![edje11](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/edje11/32/572_2.png) [@edje11](https://discourse.nodered.org/u/edje11)
#### Post date: [4 January 2025 12:52 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345/4 "2025-01-04T12:52:55Z")

</div>

Did you set the TX pin of your RS485 driver before sending? Or is that not necessary with the convertor you have?

---

<div class="post-metadata">

### Author: ![dceejay](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/dceejay/32/38_2.png) [@dceejay](https://discourse.nodered.org/u/dceejay)
#### Post date: [4 January 2025 13:46 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345/5 "2025-01-04T13:46:33Z")

</div>

What should the command termination character be ?  
It is unusual for it to be 2f (hex) = /  
I would expect something like 0A hex or 0D hex as they are usually used for Enter when you type in a command.

---

<div class="post-metadata">

### Author: ![firstfacility](https://avatars.discourse-cdn.com/v4/letter/f/ce7236/32.png) [@firstfacility](https://discourse.nodered.org/u/firstfacility)
#### Post date: [4 January 2025 14:57 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345/6 "2025-01-04T14:57:34Z")

</div>

in the Greisinger Dokomentation i can read:  
\<code  
/: ASCII-Code: 2FH  
Indicates the end of a data transfer process. Each data transfer process, either from host to  
GIR1002 NS or from GIR1002 NS to host is completed by putting “ /”  
\</code  
I dont now but the tx pin on my usb stick

---

<div class="post-metadata">

### Author: ![Colin](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/colin/32/17040_2.png) [@Colin](https://discourse.nodered.org/u/Colin)
#### Post date: [4 January 2025 15:27 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345/7 "2025-01-04T15:27:51Z")

</div>

You should not need to use a buffer, you should just be able to send the ascii string direct, I think.

---

<div class="post-metadata">

### Author: ![firstfacility](https://avatars.discourse-cdn.com/v4/letter/f/ce7236/32.png) [@firstfacility](https://discourse.nodered.org/u/firstfacility)
#### Post date: [4 January 2025 16:25 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345/8 "2025-01-04T16:25:58Z")

</div>

Have you got an example, please

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/1X/d073cd938eafa2e558d7c2cd59003b3ef4963033.png) [@system](https://discourse.nodered.org/u/system)
#### Post date: [4 April 2025 16:26 UTC](https://discourse.nodered.org/t/communication-node-red-rs485-without-modbus/94345/9 "2025-04-04T16:26:45Z")

</div>

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.
