Nullbits Tidbit
Table of contents
Nullbits Tidbit
OLED display
References
Building Hex Files
To build a new hex file:
cd Documents/GitHub/qmk_firmware/
make nullbitsco/tidbit:leang
The new hex file will be located in Documents/GitHub/qmk_firmware/.
Updates
- Looks like
#include "bitc_led.h"is no longer required. It’s been added to the main files. - OLED lines have changed. Screen rotation is throwing an error. Solved by placing
oled_rotation_t oled_init_user(oled_rotation_t rotation) { return OLED_ROTATION_270; }within#ifdef OLED_rotationand addingOLED_ENABLE = yesandOLED_DRIVER = SSD1306to rules.mk. - Error compiling from
oled_task_user. Solved by changingvoid oled_task_user(void)tobool oled_task_user(void)and addingreturn true;. Looks like Caterina-type devices can’t enter DFU from keypress.AddingBOOTLOADER = caterinato rules.mk fixed it!