Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
python [2021/08/11 10:55] wikiadmin |
python [2024/09/19 15:57] (current) wikiadmin |
||
---|---|---|---|
Line 4: | Line 4: | ||
The python wrapper uses the [[https:// | The python wrapper uses the [[https:// | ||
+ | |||
+ | For the tool,copy the GEMToolRuntime.jar from the TransSECS GEMTool project into the build folder | ||
For the host,copy the GEMHostRuntime.jar from the TransSECS GEMHost project into the build folder | For the host,copy the GEMHostRuntime.jar from the TransSECS GEMHost project into the build folder | ||
- | The samples, demonstrates all the features required to collect data from a host. | + | The sample, demonstrates all the features required to build a tool. It can be extended to include any features available in the Java host or tool. |
Here's the code sample from the python wrapper archive: | Here's the code sample from the python wrapper archive: | ||
Line 18: | Line 20: | ||
from jpype.types import * | from jpype.types import * | ||
- | jpype.startJVM(classpath=[' | + | jpype.startJVM(classpath=[' |
from com.ergotech.util import SimulationManager | from com.ergotech.util import SimulationManager | ||
- | from deploy.GEMHost | + | from deploy.GEMTool |
+ | from com.ergotech.transsecs.secs.gem import GemHandler | ||
+ | from com.ergotech.vib.valueobjects import DoubleValueObject, | ||
import time | import time | ||
+ | import random | ||
- | hostname = " | + | # Configuration |
port = 5010 | port = 5010 | ||
deviceid = 1 | deviceid = 1 | ||
+ | online = 1 # Online state | ||
+ | remote = 1 # Remote state | ||
+ | # Initialize the equipment controller | ||
SimulationManager.getSimulationManager().setSimulating(False) | SimulationManager.getSimulationManager().setSimulating(False) | ||
- | + | equipment | |
- | host = EquipmentController() | + | host.setPort(port) |
- | host.setEquipmentHostName(hostname) | + | |
- | host.setActivePort(port) | + | |
host.setDeviceId(deviceid) | host.setDeviceId(deviceid) | ||
host.init() | host.init() | ||
host.start() | host.start() | ||
- | def event_received(ceid, event_report_values): | + | # Set initial VID values |
- | print("Event received: " + str(ceid) + " with values: | + | host.setIntValue(33006, online) # Go Online |
+ | host.setIntValue(33005, remote) # Allow Local-Remote transition | ||
- | d = {' | + | # Get the gemHandler for setting VID values using names |
- | listener_proxy | + | gemHandler |
+ | gemHandler.setValue("MDLN", StringValueObject(" | ||
+ | gemHandler.setValue(" | ||
- | # Add a listener | + | # Example of setting OnlineOfflineState using VID name |
- | host.setGlobalEventListener(listener_proxy) | + | gemHandler.setValue(" |
+ | |||
+ | # Get data source container | ||
+ | # container = DataSourceContainer.getRootContainer().getContainer(" | ||
+ | |||
+ | # Event and Alarm setup | ||
+ | gemEvent = gemHandler.getServerForName(" | ||
+ | alarm = gemHandler.getServerForName(" | ||
+ | |||
+ | # Host Command START Notifier | ||
+ | class HostCommandSTARTNotifier: | ||
+ | def messageReceived(self, | ||
+ | print(f" | ||
+ | hostCommand = message | ||
+ | command = hostCommand.getCommand() | ||
+ | print(f" | ||
+ | if command != " | ||
+ | print(" | ||
+ | self.sendErrorResponse(1) | ||
+ | return | ||
+ | |||
+ | print(" | ||
+ | self.sendOKResponse() | ||
+ | |||
+ | def sendErrorResponse(self, | ||
+ | connection = GemIDConnection.createConnection(" | ||
+ | response = connection.getController().getMessageBean(" | ||
+ | response.setHCACK([hcack]) | ||
+ | response.sendMessage() | ||
+ | |||
+ | def sendOKResponse(self): | ||
+ | connection = GemIDConnection.createConnection(" | ||
+ | response = connection.getController().getMessageBean(" | ||
+ | response.sendMessage() | ||
+ | |||
+ | # Register the notifier | ||
+ | notifier_proxy = JProxy(" | ||
+ | controller.registerForReceiveNotification(" | ||
+ | |||
+ | print(" | ||
+ | |||
+ | # Main loop to change some SVID values and trigger alarms/ | ||
+ | cycles = 0 | ||
+ | waferCount = 0 | ||
+ | alarm_set = False | ||
while True: | while True: | ||
- | print(' | + | |
- | time.sleep(10)</ | + | # Update process variables |
+ | gemHandler.setValue(" | ||
+ | gemHandler.setValue(" | ||
+ | |||
+ | # Increment the wafer count every 20 cycles | ||
+ | if cycles % 20 == 0: | ||
+ | waferCount += 1 | ||
+ | gemHandler.setValue(" | ||
+ | |||
+ | # Trigger the event every 120 cycles | ||
+ | if cycles % 120 == 0: | ||
+ | gemEvent.setBooleanValue(True) | ||
+ | | ||
+ | else: | ||
+ | gemEvent.setBooleanValue(False) | ||
+ | |||
+ | # Check for alarm conditions | ||
+ | temperature = gemHandler.getServerForName(" | ||
+ | if temperature > 128.5 and not alarm_set: | ||
+ | alarm.set() | ||
+ | alarm_set = True | ||
+ | print(" | ||
+ | elif alarm_set: | ||
+ | alarm.clear() | ||
+ | alarm_set = False | ||
+ | print(" | ||
+ | |||
+ | # Wait for next cycle | ||
+ | time.sleep(0.5) | ||
+ | </ |