printedpad.h 396 B

12345678910111213141516
  1. // Copyright 2023 Noah Beidelman (@noahbei)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include "quantum.h"
  5. //for oled key press
  6. extern bool key_pressed;
  7. // for changing oled display mode
  8. extern uint8_t current_display_mode;
  9. //for determining when the layer is changed and having a timer for how long we flash the layer
  10. extern uint32_t flash_timer;
  11. extern bool layer_changed;