|  |  | 
 |  |  |      */ | 
 |  |  |     private void readStatus(){ | 
 |  |  |         try { | 
 |  |  |             OperateResultExOne<byte[]> result = siemensNet.Read("DB101.0", (short) 70); | 
 |  |  |             OperateResultExOne<byte[]> result = siemensNet.Read("DB101.0", (short) 56); | 
 |  |  |             if (result.IsSuccess) { | 
 |  |  |                 if (null == crnProtocol) { | 
 |  |  |                     crnProtocol = new CrnProtocol(); | 
 |  |  |                     crnProtocol.setCrnNo(this.getSlave().getId()); | 
 |  |  |                 } | 
 |  |  |                 crnProtocol.setMode(siemensNet.getByteTransform().TransInt16(result.Content, 0)); | 
 |  |  |                 crnProtocol.setTaskNo(siemensNet.getByteTransform().TransInt16(result.Content, 2)); | 
 |  |  | 
 |  |  |             } else { | 
 |  |  |                 initCrn(); | 
 |  |  |                 OutputQueue.CRN.offer(MessageFormat.format("【{0}】读取堆垛机plc状态信息失败 ===>> [id:{1}] [ip:{2}] [port:{3}] [rack:{4}] [slot:{5}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort(), slave.getRack(), slave.getSlot())); | 
 |  |  |                 log.error("读取堆垛机plc状态信息失败 ===>> [id:{}] [ip:{}] [port:{}] [rack:{}] [slot:{}]", slave.getId(), slave.getIp(), slave.getPort(), slave.getRack(), slave.getSlot()); | 
 |  |  | //                log.error("读取堆垛机plc状态信息失败 ===>> [id:{}] [ip:{}] [port:{}] [rack:{}] [slot:{}]", slave.getId(), slave.getIp(), slave.getPort(), slave.getRack(), slave.getSlot()); | 
 |  |  |             } | 
 |  |  |         } catch (Exception e) { | 
 |  |  |             e.printStackTrace(); | 
 |  |  | //            e.printStackTrace(); | 
 |  |  |             OutputQueue.CRN.offer(MessageFormat.format("【{0}】读取堆垛机plc状态信息失败 ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort())); | 
 |  |  |             log.error("读取堆垛机plc状态信息失败 ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort()); | 
 |  |  | //            log.error("读取堆垛机plc状态信息失败 ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort()); | 
 |  |  |             initCrn(); | 
 |  |  |         } | 
 |  |  |     } | 
 |  |  | 
 |  |  |             log.error("堆垛机写入命令为空"); | 
 |  |  |             return false; | 
 |  |  |         } | 
 |  |  |         convertRow(command); | 
 |  |  | //        convertRow(command); | 
 |  |  |         command.setCrnNo(slave.getId()); | 
 |  |  |         short[] array = new short[12]; | 
 |  |  |         short[] array = new short[10]; | 
 |  |  |         array[0] = command.getAckFinish(); | 
 |  |  |         array[1] = command.getTaskNo(); | 
 |  |  |         array[2] = command.getTaskMode(); | 
 |  |  | 
 |  |  |         array[6] = command.getDestinationPosX(); | 
 |  |  |         array[7] = command.getDestinationPosY(); | 
 |  |  |         array[8] = command.getDestinationPosZ(); | 
 |  |  |         array[9] = command.getSourceStaNo(); | 
 |  |  |         array[10] = command.getDestinationStaNo(); | 
 |  |  |         array[11] = command.getCommand(); | 
 |  |  |         array[9] = command.getCommand(); | 
 |  |  |         OperateResult result = siemensNet.Write("DB100.0", array); | 
 |  |  |  | 
 |  |  |         if (command.getAckFinish() == 0) { | 
 |  |  |             short commandFinish = 1; | 
 |  |  |             result = siemensNet.Write("DB100.22", commandFinish); | 
 |  |  |             Thread.sleep(100); | 
 |  |  |             result = siemensNet.Write("DB100.18", commandFinish); | 
 |  |  |         } | 
 |  |  |  | 
 |  |  |         try { | 
 |  |  | 
 |  |  |  | 
 |  |  |         if (result != null && result.IsSuccess) { | 
 |  |  |             Thread.sleep(200); | 
 |  |  |             this.readStatus(); | 
 |  |  | //            this.readStatus(); | 
 |  |  |             log.info("堆垛机命令下发[id:{}] >>>>> {}", slave.getId(), JSON.toJSON(command)); | 
 |  |  |             OutputQueue.CRN.offer(MessageFormat.format("【{0}】[id:{1}] >>>>> 命令下发: {2}", DateUtils.convert(new Date()), slave.getId(), JSON.toJSON(command))); | 
 |  |  |             return true; |