Complete the code to send a setpoint change command to the SCADA system.
scada.set_setpoint([1])The correct variable to send as a setpoint change is setpoint_value.
Complete the code to check if the SCADA system acknowledged the setpoint change.
if scada.acknowledge() == [1]:
The acknowledge() method returns True if the setpoint change was accepted.
Fix the error in the code that sends the setpoint change with the correct method.
scada.[1]_setpoint(setpoint_value)The correct method to send a setpoint change is set_setpoint().
Fill both blanks to create a dictionary with the setpoint and its status.
status_report = {'setpoint': [1], 'status': [2]The dictionary should have the setpoint value and the status as 'active'.
Fill all three blanks to log the setpoint change with timestamp and user.
log_entry = {'time': [1], 'user': [2], 'setpoint': [3]Use time.time() for timestamp, the user name as a string, and the setpoint value variable.
