top of page

EventIDE Q&A

Public·7 members

simon Ksimon K

Bug's in Event IDE Project

Dear Community,

I am currently in the process of building my first project in Event IDE—a cybernetic system consisting of four sublayers: a Sensor, Comparator, Controller, and an Actuator, all within the root layer (environment). At the moment, I’m facing two bugs that I cannot explain:

Bug 1:I defined a double variable called Input_Signal in the header. In the control loop of the root layer, I assign it the value NewestSamples 2 (where NewestSamples is a proxy variable of the element Single Channel Analyzer). However, the error states that the operator  cannot be applied to a type double.

Bug 2:This issue is similar to the first. I attempt to assign the value of NewestSamples (again, a proxy variable of Single Channel Analyzer) to a double variable called Output in the actuator. The error message says that a value of type double cannot be converted to type double.

Thank you very much for your feedback and any hints you can provide! Simon

62 Views

Simon hi,


The “Newest Samples” property returns a double array with all samples in a selected analysis window. If you want to read the last signal sample, you should create a proxy variable for “Newest Sample” property. I agree that these names are confusingly similar. If it helps, there is a trick: if you stop the mouse over any property in EventIDE, it will show a popup description that tells what is the property’s  data type.

bottom of page