Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions src/components/profile/section.html
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ <h2>{{getSectionTitle()}}</h2>
(ngModelChange)='save()'
>
<option [value]='getPins().NONE'>None</option>
<option [value]='getPins().TOUCH_IN_RC' *ngIf='gyro.engage===getPins().TOUCH_IN_RC'>Hexagon surface (rc)</option>
<option [value]='getPins().TOUCH_IN'>Hexagon surface</option>
<option [value]='getPins().A'>A</option>
<option [value]='getPins().B'>B</option>
Expand Down
2 changes: 2 additions & 0 deletions src/lib/pin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export enum PinV0 {
NONE = 0,
HOME = 20,
TOUCH_IN = 7,
TOUCH_IN_RC = -1, // For type consistency (there is no v0 rc).
SELECT_1 = 114,
SELECT_2 = 113,
DPAD_LEFT = 104,
Expand Down Expand Up @@ -46,6 +47,7 @@ export enum PinV1 {
NONE = 0,
HOME = 24,
TOUCH_IN = 12,
TOUCH_IN_RC = 13,
SELECT_1 = 114,
SELECT_2 = 110,
DPAD_LEFT = 104,
Expand Down