| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OHV.Common.Shareds
- {
- public class ConstString
- {
- //Config
- public const string Addr = "OCSADDRESS";
- public const string PortNo = "OCSPORTNO";
- public const string VehicleID = "VEHICLEID";
- public const string OCSID = "OCSID";
- public const string BuzzerStartReadyTime = "BUZZEER_START_READY";
- public const string PIOInterLockTimeout = "PIO_INTERLOCK_TIMEOUT";
- public const string PIOTimeOut = "PIO_TIMEOUT";
- //Axis Name
- public const string AXIS_CARRIER_LOCK_LEFT = "Axis_CarrierLock_Left";
- public const string AXIS_CARRIER_LOCK_RIGHT = "Axis_CarrierLock_Right";
- //AxisTeaching Position
- public const string TEACH_POSITION_LOCK = "Teach_Postion_Lock";
- public const string TEACH_POSITION_UNLOCK = "Teach_Postion_Unlock";
- }
- public class MessageKey
- {
- public const string Alarm = "Alarm";
- }
- }
|