GetSignal filter by unit not working

Tompanhuhu
✭✭
Hi I'm trying to get all signals belonging to a specific unit, but it returns all signals in the system.
Am I doing something wrong?
Latest RW and PCSDK.
IOFilterTypes aSigFilter = IOFilterTypes.Digital & IOFilterTypes.Unit; foreach (Signal sig in unit.Controller.IOSystem.GetSignals(aSigFilter, unit.Name)) { Console.WriteLine(sig.Name + " = " + sig.Value); }
Am I doing something wrong?
Latest RW and PCSDK.
Systemintegrator - Web / C# / Rapid / Robotstudio
If I helped, please press Vote Up
If I helped, please press Vote Up

0
Comments
-
Hi, this filtering feature still dosent work.
It feel's like the performance would have been alot better in my app if I didn't get all the signals in the system.Systemintegrator - Web / C# / Rapid / Robotstudio
If I helped, please press Vote Up0 -
Hi,
When adding two filters together, you should use the bitwise or flag (|).
If you use bitwise and (&) it will in this case result in 0, which I suppose means no filter, and that is why you get all signals.
Try this insteadIOFilterTypes aSigFilter = IOFilterTypes.Digital | IOFilterTypes.Unit; foreach (Signal sig in unit.Controller.IOSystem.GetSignals(aSigFilter, unit.Name)) { Console.WriteLine(sig.Name + " = " + sig.Value); }
//Markus Näslund0
Categories
- All Categories
- 5.4K RobotStudio
- 375 UpFeed
- 15 Tutorials
- 12 RobotApps
- 286 PowerPacs
- 405 RobotStudio S4
- 1.8K Developer Tools
- 241 ScreenMaker
- 2.7K Robot Controller
- 266 IRC5
- 38 OmniCore
- 6 RCS (Realistic Controller Simulation)
- 3 RobotStudio AR Viewer
- 717 RAPID Programming
- 15 Wizard Easy Programming
- 107 Collaborative Robots
- 3 Job listings