Skip to content

Commit

Permalink
Lint configurations and TABLETS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
InfinityGhost committed May 17, 2024
1 parent 3ec77d0 commit bda659c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"FeatureInitReport": null,
"OutputInitReport": null,
"DeviceStrings": {
"201": "HUION_(T212|T229)_\\d{6}$"
"201": "HUION_T(212|229)_\\d{6}$"
},
"InitializationStrings": [
200
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"Specifications": {
"Digitizer": {
"Width": 177.8,
"Height": 114.0,
"MaxX": 28799.0,
"MaxY": 16199.0
"Height": 114,
"MaxX": 28799,
"MaxY": 16199
},
"Pen": {
"MaxPressure": 8191,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Name": "UC-Logic TWMNA62",
"Specifications": {
"Digitizer": {
"Width": 254.0,
"Width": 254,
"Height": 152.4,
"MaxX": 40000,
"MaxY": 25000
Expand Down Expand Up @@ -31,7 +31,7 @@
"3": "F600_A62_140327"
},
"InitializationStrings": [
"100"
100
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
"DeviceStrings": {},
"InitializationStrings": []
}

],
"AuxiliaryDeviceIdentifiers": [],
"Attributes": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ public IDeviceReport Parse(byte[] data)
return new OutOfRangeReport(data);
};

if (data[1].IsBitSet(7)) {
if (data[1].IsBitSet(7))
{
return new TiltTabletReport(data);
}

Expand Down
1 change: 1 addition & 0 deletions TABLETS.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
| RobotPen T9A | Supported |
| UC-Logic 1060N | Supported |
| UC-Logic PF1209 | Supported |
| UC-Logic TWMNA62 | Supported |
| UGEE M708 V2 | Supported |
| UGEE M808 | Supported |
| UGEE S640 | Supported |
Expand Down

0 comments on commit bda659c

Please sign in to comment.