DIP_switch.c 317 B

1234567891011
  1. /**
  2. * @Author: 李建
  3. * @Date: 2024/8/13 11:20
  4. * Description: 拨码开关
  5. * Copyright: Copyright (©) 2024 永续绿建. All rights reserved.
  6. */
  7. #include "DIP_switch.h"
  8. uint8_t read_dip_4_number(void) {
  9. return ~((DIP_4_1_State << 3) | (DIP_4_2_State << 2) | (DIP_4_3_State << 1) | DIP_4_4_State) & 0x0F;
  10. }