# Actors

* Pro/consumer machines by Tasmota Nodes
  * Data notarization
  * Data trading
  * PoP participation
* Machine operators&#x20;
  * Offering micro-investments
  * distributing production rewards/participation
* Parties interested in data
  * &#x20;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: 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.
