Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Cassette42 #10562

Merged
merged 23 commits into from
Mar 14, 2021
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
66df3cb
Add Cassette42 MediaPad
monksoffunk Oct 5, 2020
a6ce92f
Change to turn OLED on at turning any encoder
monksoffunk Oct 5, 2020
0a22242
Code Clean-up
monksoffunk Oct 6, 2020
a5848ba
Add comment for keymap
monksoffunk Oct 6, 2020
8ed3e4a
Fix readme
monksoffunk Oct 6, 2020
463652f
Add info.json
monksoffunk Oct 6, 2020
5e6fd36
Remove labels of info.json
monksoffunk Oct 6, 2020
0e87e09
Remove unnecessary code based on PR checklist
monksoffunk Oct 15, 2020
bf58b51
Update keyboards/cassette42/config.h
monksoffunk Oct 18, 2020
571ea02
Update keyboards/cassette42/keymaps/default/keymap.c
monksoffunk Oct 18, 2020
3018e47
Update keyboards/cassette42/config.h
monksoffunk Oct 23, 2020
b590ef5
Update keyboards/cassette42/common/oled_helper.c
monksoffunk Oct 23, 2020
e17d5cb
Update keyboards/cassette42/common/oled_helper.c
monksoffunk Oct 23, 2020
239d4fc
Update keyboards/cassette42/readme.md
monksoffunk Oct 23, 2020
00c2b65
Update keyboards/cassette42/rules.mk
monksoffunk Oct 23, 2020
02553ea
Update keyboards/cassette42/common/glcdfont.c
monksoffunk Oct 23, 2020
115712d
Update keyboards/cassette42/common/glcdfont.c
monksoffunk Oct 23, 2020
bd429cf
Remove empty config file
monksoffunk Oct 23, 2020
53a4107
Remove unused codes
monksoffunk Oct 23, 2020
763d0fd
Update keyboards/cassette42/keymaps/default/keymap.c
monksoffunk Oct 24, 2020
d0ff3f1
Update keyboards/cassette42/keymaps/default/keymap.c
monksoffunk Oct 24, 2020
14de347
Use eeconfig_update_rgblight_current
monksoffunk Oct 24, 2020
6d486ed
Update keyboards/cassette42/rules.mk
monksoffunk Oct 25, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update keyboards/cassette42/common/oled_helper.c
Co-authored-by: Drashna Jaelre <drashna@live.com>
  • Loading branch information
monksoffunk and drashna committed Oct 23, 2020
commit b590ef5aa464f8ede266b48f842fdc52d913fa25
2 changes: 1 addition & 1 deletion keyboards/cassette42/common/oled_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

void render_logo(void) {
static char logo[] = {0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0};
monksoffunk marked this conversation as resolved.
Show resolved Hide resolved
oled_write(logo, false);
oled_write_P(logo, false);
}

static char keylog_buf[24] = "Key state ready.";
Expand Down