Hello
We have an assignment for school. We want to create a record with multiple data for the height of an object, to see if the object is there, the point where to pick the object up, the color of the object and if the object is a pass or a fail.This is our code but we constantly get an error on line 5
MODULE MainModule
PROC main()
RECORD Marker1
!point112; → this is the point where the Marker is
bool booisthere:=0; → this if to see if the object is there
!AI_SensorSick
num numheight:=5; → this is to know the height
bool boolcolor:=0; → this is to know the color is wright
bool boolbadpiece:=0; → this is to know if the piece passes or fails
ENDRECORD
ENDPROC
ENDMODULE
Can somebody help us?
Arne