# Help with Bitpool Edge BACnet needed

**URL:** https://discourse.nodered.org/t/help-with-bitpool-edge-bacnet-needed/100329
**Category:** General
**Created:** [6 February 2026 22:54 UTC](https://discourse.nodered.org/t/help-with-bitpool-edge-bacnet-needed/100329 "2026-02-06T22:54:53Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![atlochowski](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/atlochowski/32/105703_2.png) [@atlochowski](https://discourse.nodered.org/u/atlochowski)
#### Post date: [6 February 2026 22:54 UTC](https://discourse.nodered.org/t/help-with-bitpool-edge-bacnet-needed/100329/1 "2026-02-06T22:54:53Z")

</div>

I have object like this and I want change its value to True. Can you help me?  
What should I put into inject node to change value to True?

 ![Zrzut ekranu_20260206_234237](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/3/a/3a2cc42cb240b3996107d48062da85b4a4e2c53b.png)

---

<div class="post-metadata">

### Author: ![jbudd](https://avatars.discourse-cdn.com/v4/letter/j/5f8ce5/32.png) [@jbudd](https://discourse.nodered.org/u/jbudd)
#### Post date: [7 February 2026 09:22 UTC](https://discourse.nodered.org/t/help-with-bitpool-edge-bacnet-needed/100329/2 "2026-02-07T09:22:04Z")

</div>

Those all look like Home Assistant nodes?

In Node-red you can use a **change node** like this

 ![image](https://us1.discourse-cdn.com/flex026/uploads/nodered/original/3X/c/b/cbdcb9d8a676d3768fbfe0ec0f14d40a9be0d3d3.png)

---

<div class="post-metadata">

### Author: ![atlochowski](https://sea2.discourse-cdn.com/flex026/user_avatar/discourse.nodered.org/atlochowski/32/105703_2.png) [@atlochowski](https://discourse.nodered.org/u/atlochowski)
#### Post date: [7 February 2026 21:19 UTC](https://discourse.nodered.org/t/help-with-bitpool-edge-bacnet-needed/100329/3 "2026-02-07T21:19:39Z")

</div>

No, those are Bitpool Edge Bacnet nodes.

I already have answer to my question.

```auto
To write a value using the Write node, you need to:

1. **Configure the Write node** — open it and add the target point(s) to the write list from the device tree. Set:
  * **Priority** — the BACnet write priority (e.g., `8` for Manual Operator). Use `null` for default.
  * **Application Tag** — for Binary points (BI/BO/BV), use **`9` (Enumerated)**.
2. **Configure the Inject node** — use a standard Node-RED inject node (not the Bitpool Inject) wired into the Write node. Set `msg.payload` to the value you want to write:
  * To set **Active (true)**: `msg.payload = 1`
  * To set **Inactive (false)**: `msg.payload = 0`
  * To **release/relinquish** (clear priority): `msg.payload = null`

So your flow should look like: **Inject → Write → Gateway**

In the Inject node, set payload type to **Number** with value `1` to write Active (true).

BACnet binary points use `1`/`0` (enumerated), not `true`/`false` booleans. The Application Tag on the Write node must match — `9` (Enumerated) for binary objects, `4` (Real) for analog objects, `7` (Character String) for string objects.

```

---

<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: [21 February 2026 21:19 UTC](https://discourse.nodered.org/t/help-with-bitpool-edge-bacnet-needed/100329/4 "2026-02-21T21:19:56Z")

</div>

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