logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

theme_djinn_default.h (439B)


  1. // Copyright 2018-2022 Nick Brassel (@tzarc)
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. //----------------------------------------------------------
  5. // Sync
  6. #pragma pack(push)
  7. #pragma pack(1)
  8. typedef struct theme_runtime_config {
  9. uint32_t scan_rate;
  10. } theme_runtime_config;
  11. #pragma pack(pop)
  12. extern theme_runtime_config theme_state;
  13. void theme_init(void);
  14. void theme_state_update(void);
  15. void theme_state_sync(void);