RedHandlerSoarDAM0404.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.gzlh.device.infrared.handler.impl;
  2. import cn.hutool.core.util.StrUtil;
  3. import cn.hutool.extra.spring.SpringUtil;
  4. import com.gzlh.config.ModuleEnum;
  5. import com.gzlh.bus.EventBus;
  6. import com.gzlh.device.infrared.action.InfraredAction;
  7. import com.gzlh.device.infrared.brand.RedBrandType;
  8. import com.gzlh.device.infrared.handler.IRedHandler;
  9. import lombok.extern.slf4j.Slf4j;
  10. import org.springframework.stereotype.Service;
  11. /**
  12. * 聚英翱翔电子 01082899821 聚英翱翔电子,按0,转技术电话
  13. * dam0404d 品牌
  14. */
  15. @Service
  16. @Slf4j
  17. public class RedHandlerSoarDAM0404 implements IRedHandler {
  18. /**
  19. * 断开的信号
  20. */
  21. private final static String FIRST_BREAK_SIGNAL = "01 02 01 02 20 49";
  22. /**
  23. * 从断开到闭合
  24. */
  25. private final static String FIRST_LINK_SIGNAL = "01 02 01 03 E1 89";
  26. @Override
  27. public RedBrandType brandType() {
  28. return RedBrandType.SHANGHAI_YANGBAND_BX;
  29. }
  30. @Override
  31. public void handlerMsg(String content) {
  32. log.info(RedBrandType.SHANGHAI_YANGBAND_BX.getBrand() + "对红外处理消息:{}", content);
  33. content = StrUtil.replace(content, " ", "").toUpperCase();
  34. //进 被遮挡
  35. if (StrUtil.equals(StrUtil.replace(FIRST_BREAK_SIGNAL, " ", ""), content)) {
  36. //todo test msg
  37. }else if (StrUtil.equals(StrUtil.replace(FIRST_LINK_SIGNAL, " ", ""), content)){
  38. EventBus eventBus= SpringUtil.getBean(EventBus.class);
  39. // //入红外被挡住
  40. eventBus.startEvent(ModuleEnum.INFRARED_MODULE.getModuleEn()+"."+ InfraredAction.IN_BREAK);
  41. }
  42. }
  43. @Override
  44. public void handlerAction(String action) {
  45. }
  46. }