UDP Sender
- class gpype.backend.sinks.udp_sender.UDPSender[source]
Bases:
INodeUDP sink node for real-time data transmission.
Transmits data as float64 numpy arrays via UDP packets to a configurable target address. Each step() sends one packet with direct transmission.
- DEFAULT_IP = '127.0.0.1'
Default target IP address (localhost)
- DEFAULT_PORT = 56000
Default target UDP port number
- start()[source]
Start UDP sender and initialize socket connection.
Creates UDP socket and configures target address from configuration.
- Raises:
OSError – If socket creation fails.