> For the complete documentation index, see [llms.txt](https://docs.rddl.io/rddl-network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rddl.io/rddl-network/basics/actors.md).

# Actors

* Pro/consumer machines by Tasmota Nodes
  * Data notarization
  * Data trading
  * PoP participation
* Machine operators
  * Offering micro-investments
  * distributing production rewards/participation
* Parties interested in data
  * pay for data with incentive tokens

The following [types of machines](https://github.com/rddl-network/librddl/blob/main/inc/rddl_types.h) are currently supported.

```cpp
#ifndef __RDDL_MACHINE_TYPES__
#define __RDDL_MACHINE_TYPES__

#define RDDL_MACHINE_UNDEFINED          0
#define RDDL_MACHINE_POWER_SWITCH       1
#define RDDL_MACHINE_ENERGY_TRACKER     2
#define RDDL_MACHINE_ENERGY_METER       3
#define RDDL_MACHINE_LOGGER             4
#define RDDL_MACHINE_BATTERY            5
#define RDDL_MACHINE_INVERTER           6
#define RDDL_MACHINE_CONTROLLER         7
#define RDDL_MACHINE_CHARGER            8
#define RDDL_MACHINE_BMS                9 
#define RDDL_MACHINE_ESS               10 

#endif
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rddl.io/rddl-network/basics/actors.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
