Chute: OnChuteIsFullStateChange
Invoked when the ‘Full PE Sensor’ has been blocked by the same product for longer than the ‘Full PE sensor Delay’ value.
Note: This event does not support multiple subscription. Previous subscription will be lost if subscribed twice.
You MUST have the Simulate Full Logic property of the Chute enabled for this event to be triggered.
Event
void xxxxxxxxxxxxxxxxx (sender: object);
Parameters
Name | Type | Description |
---|---|---|
sender | Object | The object associated with the changed property |
Example
SubscribeToEvent("OnChuteIsFullStateChange", "CEXd2.01", "Chute", "ChuteFull")
function ChuteFull(sender) {
LogDebug("ChuteFull:" + sender.Name + " full=" + sender.IsFull);
}