I got my code to work. I converted my class, which is not in the code I shared, and made it into one simple function instead. I think my issue was the way I was trying to use my class. Here is my updated code that works:
Private Sub UpdateConveyorStatus(
e As Drivers.Common.PlcComEventArgs,
ByRef conveyorStatus As AdvancedHMIControls.BasicIndicator,
ByRef Active As Boolean,
ByRef HalfFull As Boolean,
ByRef Full As Boolean,
ByRef Jam As Boolean,
ByRef MotorFault As Boolean,
ByRef Estop As Boolean,
ByRef Interlock As Boolean,
ByRef plcActive As String,
ByRef plcHalfFull As String,
ByRef plcFull As String,
ByRef plcJam As String,
ByRef plcMotorFault As String,
ByRef plcEstop As String,
ByRef plcInterlock As String)
' SyncLock lockObject
Dim currentTime As DateTime = DateTime.Now
'If (currentTime - lastUpdateTime).TotalMilliseconds < 500 Then
'Debug.WriteLine("[DEBUG] Ignoring rapid state change.")
'Exit Sub
'End If
lastUpdateTime = currentTime
' Update the state properties based on PLC address
If plcFull IsNot "NA" Then
If e.PlcAddress = plcFull Then
Full = e.Values(0) = True
End If
End If
If plcActive IsNot "NA" Then
If e.PlcAddress = plcActive Then
Debug.WriteLine($"[DEBUG] PLC Address: {e.PlcAddress}, Received Value: {e.Values(0)}, Time: {DateTime.Now}")
If e.Values(0) = True Then
Active = e.Values(0) = True
Debug.WriteLine($"[DEBUG] Active state updated to: {Active}")
Else
Debug.WriteLine("[DEBUG] No change in Active state.")
Active = False
End If
End If
Else
Active = False
End If
If plcHalfFull IsNot "NA" Then
If e.PlcAddress = plcHalfFull Then
HalfFull = e.Values(0) = True
End If
Else
HalfFull = False
End If
If plcJam IsNot "NA" Then
If e.PlcAddress = plcJam Then
Jam = e.Values(0) = True
End If
Else
Jam = False
End If
If plcMotorFault IsNot "NA" Then
If e.PlcAddress = plcMotorFault Then
MotorFault = e.Values(0) = True
End If
Else
MotorFault = False
End If
If plcEstop IsNot "NA" Then
If e.PlcAddress = plcEstop Then
Estop = e.Values(0) = True
Debug.WriteLine($"E-Stop = {Estop}")
End If
Else
Estop = False
Debug.WriteLine($"E-Stop = {Estop}")
End If
If plcInterlock = "NA" Then
If e.PlcAddress = plcInterlock Then
Interlock = e.Values(0) = True
End If
Else
Interlock = False
End If
' Determine the new color based on the states
If Estop Then
conveyorStatus.Color1 = Color.Red
ElseIf Interlock Then
conveyorStatus.Color1 = Color.Orange
ElseIf Jam Then
conveyorStatus.Color1 = Color.Orange
ElseIf MotorFault Then
conveyorStatus.Color1 = Color.Red
ElseIf Active And Not HalfFull And Not Full Then
conveyorStatus.Color1 = Color.Green
Debug.WriteLine("[DEBUG] Active green")
ElseIf Active And Full And HalfFull Then
conveyorStatus.Color1 = Color.Blue
ElseIf Active And Not Full And HalfFull Then
conveyorStatus.Color1 = Color.Yellow
ElseIf Active = False Then
conveyorStatus.Color1 = Color.DarkGray
Debug.WriteLine("[DEBUG] Inactive gray")
End If
' End SyncLock
End Sub