iOS AILinkBleSDK - 蓝牙SDK
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ELRemoteControlBleHeader.h 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //
  2. // ELRemoteControlBleHeader.h
  3. // Elink
  4. //
  5. // Created by iot_user on 2019/8/22.
  6. // Copyright © 2019 iot_iMac. All rights reserved.
  7. //
  8. #ifndef ELRemoteControlBleHeader_h
  9. #define ELRemoteControlBleHeader_h
  10. /** 遥控器按钮类型 */
  11. typedef NS_ENUM(NSInteger ,RemoteControlType) {
  12. /** K */
  13. RemoteControlType_K_0_05 = 0 ,
  14. /** 字母0.1 到 1.2 */
  15. RemoteControlType_Letter_0_1 ,//1
  16. RemoteControlType_Letter_0_2 ,
  17. RemoteControlType_Letter_0_5 ,
  18. RemoteControlType_Letter_0_8 ,
  19. RemoteControlType_Letter_1_2 ,
  20. /** 时钟图形 */
  21. RemoteControlType_Clock ,
  22. /** 对称的方块 */
  23. RemoteControlType_SymmetryBox ,
  24. RemoteControlType_E_0_1 ,
  25. RemoteControlType_E_0_3 ,
  26. RemoteControlType_E_0_6 ,
  27. RemoteControlType_E_1_0 ,
  28. /** 数字0.1到1.0 */
  29. RemoteControlType_Number_0_1 ,
  30. RemoteControlType_Number_0_3 ,
  31. RemoteControlType_Number_0_6 ,
  32. RemoteControlType_Number_1_0 ,
  33. /** 动植物0.1到0.7 */
  34. RemoteControlType_Pattern_0_1 ,//16
  35. RemoteControlType_Pattern_0_2 ,
  36. RemoteControlType_Pattern_0_4 ,
  37. RemoteControlType_Pattern_0_7 ,
  38. /** 黑色的散点 */
  39. RemoteControlType_BlackDots ,
  40. /** 多个圆弧 */
  41. RemoteControlType_CircularArc ,
  42. /** 3956 */
  43. RemoteControlType_3956 ,
  44. /** 上下为空的方块 */
  45. RemoteControlType_UpDownEmpty ,
  46. /** 左右为空的方块 */
  47. RemoteControlType_LeftRightEmpty ,
  48. /** 黑色的点 */
  49. RemoteControlType_BlockDot ,
  50. /** 空心的准星 */
  51. RemoteControlType_HollowSightBead ,
  52. /** 准星 */
  53. RemoteControlType_SightBead ,
  54. RemoteControlType_UpProgram ,
  55. RemoteControlType_DownProgram ,
  56. RemoteControlType_8_3 ,//30
  57. RemoteControlType_8_4 ,
  58. /** 显示水平 */
  59. RemoteControlType_HorizontalLine ,
  60. /** 显示垂直 */
  61. RemoteControlType_VerticalLine ,
  62. /** 显示单个 */
  63. RemoteControlType_Point ,
  64. RemoteControlType_Reset ,
  65. RemoteControlType_Light ,
  66. RemoteControlType_Right ,
  67. RemoteControlType_Mute ,//38
  68. /** 上下左右 */
  69. RemoteControlType_TouchTop ,
  70. RemoteControlType_TouchLeft ,
  71. RemoteControlType_TouchRight ,
  72. RemoteControlType_TouchBottom ,
  73. };
  74. #endif /* ELRemoteControlBleHeader_h */