S&B Volcano vaporizer remote control with Pi Pico W
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * lipo.h
  3. *
  4. * Copyright (c) 2023 Thomas Buck (thomas@xythobuz.de)
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * See <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __LCD_H__
  19. #define __LCD_H__
  20. #include <stdint.h>
  21. #define LCD_WIDTH 240
  22. #define LCD_HEIGHT 240
  23. #define RGB_565(r, g, b) ( \
  24. (((r) >> 3) << 11) \
  25. | (((g) >> 2) << 5) \
  26. | ((b) >> 3) \
  27. )
  28. #define RGB_565_REV(c) \
  29. ((c & 0xF800) >> 8) / 255.0f, \
  30. ((c & 0x07E0) >> 3) / 255.0f, \
  31. ((c & 0x001F) << 3) / 255.0f
  32. #define LCD_BLACK RGB_565(0x00, 0x00, 0x00)
  33. #define LCD_WHITE RGB_565(0xFF, 0xFF, 0xFF)
  34. uint32_t from_hsv(float h, float s, float v);
  35. void lcd_init(void);
  36. uint16_t lcd_get_backlight(void);
  37. void lcd_set_backlight(uint16_t value);
  38. void lcd_clear(void);
  39. void lcd_write_point(uint16_t x, uint16_t y, uint32_t color);
  40. void lcd_write_rect(uint16_t left, uint16_t top, uint16_t right, uint16_t bottom, uint32_t color);
  41. #endif // __LCD_H__