Name | Author | Sensor Type | Construction | Controller Type | # of Controllers | # of Segments | LED Controller Type | # of LEDs/Pixels | Protocol | Open-source? |
---|---|---|---|---|---|---|---|---|---|---|
837-15275 | SEGA | Capacitive | FR4 PCB | CY8C22345-24SXI | 2 | 32 | THL3504 | 64/32 | sega-slider/UART/RS232 | No |
(No name) | benjilei | Capacitive | Pad hack (aggregated DS4 touchpad) | MXT series or TrueTouch series (DS4 Touchpad)+? | 4? | 80? (virtual) | None | 0 | maxTouch (or TrueTouch)/I2C | No (aggregation method unknown) |
[(No name)][fa40] | fa40 | Capacitive | Pad hack (copper foil on wood substrate) | ZET6223 (Brook Touchpad) | 1 | 17 | None | 0 | ZET6223/I2C | N/A |
(No name) | Mo10 | Capacitive | FR4 PCB | CY8C4104LQI-422 | 4 | 32 | WS2812 | 32 | Proprietary/I2C | No |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
import yaml | |
import struct | |
import os | |
SUFFIX = ( | |
'.m4a', | |
'_e.sht', | |
'_n.sht', | |
'_h.sht', |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import hid | |
import os | |
import contextlib | |
import time | |
if __name__ == '__main__': | |
with contextlib.closing(hid.device()) as dev: | |
dev.open(0x054c, 0x0ce6) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- | |
DualSense (DS5) USB HID Report Descriptor | |
Documentation WIP | |
TODO: Extract info from hid-playstation and cross-verify with us. | |
--> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/kpartx/Makefile b/kpartx/Makefile | |
index 2906a984..0404f029 100644 | |
--- a/kpartx/Makefile | |
+++ b/kpartx/Makefile | |
@@ -13,7 +13,7 @@ ifneq ($(call check_func,dm_task_set_cookie,/usr/include/libdevmapper.h),0) | |
endif | |
OBJS = bsd.o dos.o kpartx.o solaris.o unixware.o dasd.o sun.o \ | |
- gpt.o mac.o ps3.o crc32.o lopart.o xstrncpy.o devmapper.o | |
+ gpt.o mac.o ps3.o psvita.o crc32.o lopart.o xstrncpy.o devmapper.o |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<inkscape-extension xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"> | |
<_name>PTouch Tape</_name> | |
<id>org.inkscape.render.ptouch_tape2</id> | |
<dependency type="executable" location="extensions">ptouch_tape2.py</dependency> | |
<dependency type="executable" location="extensions">inkex.py</dependency> | |
<!-- TODO Not sure about the valid printing region (conflicts with what | |
datasheet says). More tests needed. --> | |
<!-- Format: width,valid_width,offset --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# WillPlus Image Pack (WIP) reader | |
# The format is used by older (200x era) WillPlus VN engine. | |
# Special thanks to: asmodean's exbelarc (http://asmodean.reverse.net/pages/exbelarc.html). | |
# Although the source release is incomplete and didn't compile, it provides all the information necessary for me to write my own (and improved) parser. | |
import argparse | |
import ctypes | |
import fnmatch |