1from typing
import Tuple
3 from ANNarchy.intern.SpecificPopulation
import SpecificPopulation
5 from ANNarchy.core.SpecificPopulation
import SpecificPopulation
8class KinematicForward(SpecificPopulation):
10 ANNarchy population class to connect with the iCub forward kinematics.
11 Readout the angles from the iCub, compute the forward kinematics and set it as population activation.
13 def __init__(self, geometry: Tuple =..., ip_address: str = ..., port: int = ..., copied: bool = ..., name: str |
None = ...) ->
None:
14 '''Init the KinematicForward Population.
17 geometry (tuple, optional): ANNarchy population geometry. Defaults to (3,).
18 ip_address (str, optional): ip-address of the gRPC connection. Need to fit with the respective kinematic reader module. Defaults to "0.0.0.0".
19 port (int, optional): port of the gRPC connection. Need to fit with the respective kinematic reader module. Defaults to 50020.
20 copied (bool, optional): ANNarchy specific parameter. Defaults to False.
21 name (str, optional): individiual name for the population. Defaults to None.
30 def port(self, value) -> None: ...
32 """Connect the population to the gRPC socket. Need to be called once after compile."""
__init__(self, geometry=(3,), ip_address="0.0.0.0", port=50020, copied=False, name=None)