PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
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.

setxy.h 348B

il y a 4 ans
123456789101112131415
  1. case SSD1963_800:
  2. swap(word, x1, y1);
  3. swap(word, x2, y2);
  4. LCD_Write_COM(0x2a);
  5. LCD_Write_DATA(x1>>8);
  6. LCD_Write_DATA(x1);
  7. LCD_Write_DATA(x2>>8);
  8. LCD_Write_DATA(x2);
  9. LCD_Write_COM(0x2b);
  10. LCD_Write_DATA(y1>>8);
  11. LCD_Write_DATA(y1);
  12. LCD_Write_DATA(y2>>8);
  13. LCD_Write_DATA(y2);
  14. LCD_Write_COM(0x2c);
  15. break;