# ALLNET > Symcon documentation · English · generated on 2026-09-26 > Index: https://www.symcon.de/en/llms.txt Source: https://www.symcon.de/en/service/documentation/module-reference/devices/allnet/ IP-Symcon supports the "tax and measuring computer ALL4000" - for it, numerous sensors and actuators are available. The ALL4000 is connected to the network via its 100Mbit Ethernet interface, and provides a web server on which are displayed the measurements graphically and numerically. All products have their own web server for configuration. Manufacturers and other product information as PDF: [https://www.allnet.de](https://www.allnet.de) _List of supported devices:_ * ALL5000 * ALL4500 * ALL4000 * ALL4001 * ALL3000 * ALL3075 > Network socket for switching over LAN * ALL3076 > Network socket for dimming over LAN * ALL3270 > Narrowband Powerline Master Ethernet Bridge/ requirement for: * ALL3275 > Narrowband Powerline slave socket for switching over Powerline * ALL3090 / All 3096 > 8 Port Reset Switch * ALL4100 > 8 Port Power Switch 19″ with 8 Heating appliance * ALL3000RF MK2 > Control unit for Intertechno radio sockets * ALL3690 > PowerMeter (3 Phases) * ALL3691 > PowerMeter (2*3 Phases, 2*S0, 2*D0) ## ALL_SetAnalog Source: https://www.symcon.de/en/service/documentation/module-reference/devices/allnet/all-setanalog/ `bool ALL_SetAnalog(int $InstanceID, int $ChannelID, float $Value)` _Requires Symcon >= 5.0_ sets the analog value of a channel **Parameters** - `$InstanceID` (int): ID of the device to be switched - `$ChannelID` (int): ID of the channel to be switched - `$Value` (float): Value to which the channel should be set **Returns** (bool): If the command succeeds, it returns __TRUE__, otherwise __FALSE__. Value to which the channel should be set **Example** ```php // Sets channel 3 of device 12345 to 20.4 ALL_SetAnalog(12345, 3, 20.4); //Turn device on ``` ## ALL_SwitchActor Source: https://www.symcon.de/en/service/documentation/module-reference/devices/allnet/all-switchactor/ `bool ALL_SwitchActor(int $InstanceID, int $ChannelID, bool $Status)` switches an ALLNET actuator on/off **Parameters** - `$InstanceID` (int): ID of the device to be switched - `$ChannelID` (int): ID of the channel to be switched - `$Status` (bool): __TRUE__ for on, __FALSE__ for off **Returns** (bool): If the command succeeds, it returns __TRUE__, otherwise __FALSE__. __TRUE__ for on, __FALSE__ for off **Example** ```php ALL_SwitchActor(12345, 1, true); //Switch on the actuator of device 12345 on channel 1 ``` ## ALL_SwitchMode Source: https://www.symcon.de/en/service/documentation/module-reference/devices/allnet/all-switchmode/ `bool ALL_SwitchMode(int $InstanceID, bool $Status)` **Parameters** - `$InstanceID` (int): ID of the device to be switched - `$Status` (bool): __TRUE__ for On, __FALSE__ for Off **Returns** (bool): If the command succeeds, it returns __TRUE__, otherwise __FALSE__. __TRUE__ for On, __FALSE__ for Off **Example** ```php ALL_SwitchMode(12345, true); //Turn on device ``` ## ALL_UpdateValues Source: https://www.symcon.de/en/service/documentation/module-reference/devices/allnet/all-updatevalues/ `bool ALL_UpdateValues(int $InstanceID)` **Parameters** - `$InstanceID` (int): ID of the device to be updated **Returns** (bool): If the command succeeds, it returns __TRUE__, otherwise __FALSE__. ID of the device to be updated **Example** ```php //Update Device with the ID "12345" ALL_UpdateValues(12345); ``` ## Device list Source: https://www.symcon.de/en/service/documentation/module-reference/devices/allnet/device-list/ ### Supported Components An excerpt of supported components. On [request](https://www.symcon.de/en/contact-us/) we will be happy to check other devices that are not listed for their compatibility. #### ALLNET devices with firmware 3.x | Product name | Description | | ------------ | ------------------------------------------------------------------------ | | ALL3040 | WiFi Basic Sensor Central | | ALL3072 | Network socket for switching via LAN/W-LAN | | ALL3073WLAN | Network socket for switching via LAN/W-LAN | | ALL3075 V2 | Network socket for switching via LAN (including consumption measurement) | | ALL3075 V3 | Network socket for switching via LAN (including consumption measurement) | | ALL3418 V2 | IP Triometer | | ALL3419 | IP Thermometer/sensor center | | ALL3500 | IP Homeautomation Appliance | | ALL3505 | IP Homeautomation Appliance | | ALL3653 | Remote Control | | ALL3690 | PM1 PowerMeter (3 phases) | | ALL3691 | PM2 PowerMeter (2x3 phases, 2xS0, 2xD0) | | ALL3692 | PM3 PowerMeter (4xD0, 2xI2C) | | ALL3696 | IP PowerMeter | | ALL3697-32A | PM4 PowerMeter (HUT Powermeter, 3 phases) | | ALL4075 | 4-way Network relay (LAN/WLAN) | | ALL4076 | 6-way IP socket strip | | ALL4175 | 4-way Network relay | | ALL4176 | 6-way IP socket strip | | ALL4500 | Sensoric Appliance | | ALL4550 | POE information display | | ALL5000 | IP Facility Control Server | #### ALLNET devices with firmware 2.x | Product name | Description | | ----------------- | ------------------------------------------------------------- | | ALL3000 | Internet Thermometer | | ALL3000RF MK2 | Control unit for Intertechno radio-controlled sockets | | ALL3075 | Network socket for switching via LAN | | ALL3076 | Network socket for dimming via LAN | | ALL3090 / ALL3096 | 8 Port Reset Switch | | ALL3100 | Ethernet Power Switch | | ALL3270 | Narrowband Powerline Master Ethernet Bridge | | ALL3275 | Narrowband Powerline slave socket for switching via Powerline | | ALL3418 | IP Triometer | | ALL3421 | IP Triometer | | ALL4000 | Ethernet sensor meter | | ALL4001 | HUT Ethernet sensor meter for top hat rail | | ALL4100 | 8 Port Power Switch 19 ″ with 8 IEC sockets |