Skip to content

Commit 29c6bb4

Browse files
committed
Fix flake8 errors
1 parent b956550 commit 29c6bb4

File tree

7 files changed

+202
-151
lines changed

7 files changed

+202
-151
lines changed

.github/workflows/workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
- name: Lint with flake8
2121
run: |
2222
pip install flake8
23-
flake8 . --extend-ignore=E501 --show-source --statistics
23+
flake8 . --extend-ignore=E122,E201,E221,E203,E501 --show-source --statistics

pyjoycon/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .joycon import JoyCon
2-
from .wrappers import PythonicJoyCon # as JoyCon
2+
from .wrappers import PythonicJoyCon # as JoyCon
33
from .gyro import GyroTrackingJoyCon
44
from .event import ButtonEventJoyCon
55
from .device import get_device_ids, get_ids_of_type

pyjoycon/device.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def get_device_ids(debug=False):
1313
for device in devices:
1414
vendor_id = device["vendor_id"]
1515
product_id = device["product_id"]
16-
product_string = device['product_string']
16+
product_string = device["product_string"]
1717
serial = device.get('serial') or device.get("serial_number")
1818

1919
if vendor_id != JOYCON_VENDOR_ID:
@@ -35,34 +35,45 @@ def get_device_ids(debug=False):
3535

3636
return out
3737

38+
3839
def is_id_L(id):
3940
return id[1] == JOYCON_L_PRODUCT_ID
4041

42+
4143
def get_ids_of_type(lr, **kw):
4244
"""
4345
returns a list of tuples like `(vendor_id, product_id, serial_number)`
4446
4547
arg: lr : str : put `R` or `L`
4648
"""
47-
product_id = JOYCON_L_PRODUCT_ID if lr.lower() == "l" else JOYCON_R_PRODUCT_ID
49+
if lr.lower() == "l":
50+
product_id = JOYCON_L_PRODUCT_ID
51+
else:
52+
product_id = JOYCON_R_PRODUCT_ID
4853
return [i for i in get_device_ids(**kw) if i[1] == product_id]
4954

55+
5056
def get_R_ids(**kw):
5157
"""returns a list of tuple like `(vendor_id, product_id, serial_number)`"""
5258
return get_ids_of_type("R", **kw)
5359

60+
5461
def get_L_ids(**kw):
5562
"""returns a list of tuple like `(vendor_id, product_id, serial_number)`"""
5663
return get_ids_of_type("L", **kw)
5764

65+
5866
def get_R_id(**kw):
5967
"""returns a tuple like `(vendor_id, product_id, serial_number)`"""
6068
ids = get_R_ids(**kw)
61-
if not ids: return (None, None, None)
69+
if not ids:
70+
return (None, None, None)
6271
return ids[0]
6372

73+
6474
def get_L_id(**kw):
6575
"""returns a tuple like `(vendor_id, product_id, serial_number)`"""
6676
ids = get_L_ids(**kw)
67-
if not ids: return (None, None, None)
77+
if not ids:
78+
return (None, None, None)
6879
return ids[0]

pyjoycon/event.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from .wrappers import PythonicJoyCon
22

3+
34
class ButtonEventJoyCon(PythonicJoyCon):
45
def __init__(self, *args, track_sticks=False, **kwargs):
56
super().__init__(*args, **kwargs)
@@ -28,7 +29,7 @@ def __init__(self, *args, track_sticks=False, **kwargs):
2829
else:
2930
self.register_update_hook(self._event_tracking_update_hook_right)
3031

31-
def joycon_button_event(self, button, state): # overridable
32+
def joycon_button_event(self, button, state): # overridable
3233
self._events_buffer.append((button, state))
3334

3435
def events(self):

pyjoycon/gyro.py

+13-9
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
from typing import Optional
44
import time
55

6+
67
class GyroTrackingJoyCon(PythonicJoyCon):
78
"""
89
A specialized class based on PythonicJoyCon which tracks the gyroscope data
9-
and deduces the current rotation of the JoyCon. Can be used to create a pointer
10-
rotate an object or pointin a direction. Comes with the need to be calibrated.
10+
and deduces the current rotation of the JoyCon. Can be used to create a
11+
pointer rotate an object or pointin a direction. Comes with the need to be
12+
calibrated.
1113
"""
1214
def __init__(self, *args, **kwargs):
1315
super().__init__(*args, simple_mode=False, **kwargs)
@@ -34,21 +36,24 @@ def rotation(self) -> vec3:
3436
return -eulerAngles(self.direction_Q)
3537

3638
is_calibrating = False
37-
def callibrate(self, seconds=2):
39+
40+
def calibrate(self, seconds=2):
3841
self.calibration_acumulator = vec3(0)
3942
self.calibration_acumulations = 0
4043
self.is_calibrating = time.time() + seconds
4144

42-
def _set_callibration(self, gyro_offset=None):
45+
def _set_calibration(self, gyro_offset=None):
4346
if not gyro_offset:
4447
c = vec3(1, self._ime_yz_coeff, self._ime_yz_coeff)
45-
gyro_offset = vec3(
48+
gyro_offset = self.calibration_acumulator * c
49+
gyro_offset /= self.calibration_acumulations
50+
gyro_offset += vec3(
4651
self._GYRO_OFFSET_X,
4752
self._GYRO_OFFSET_Y,
4853
self._GYRO_OFFSET_Z,
49-
) + self.calibration_acumulator * c / self.calibration_acumulations
54+
)
5055
self.is_calibrating = False
51-
self.set_gyro_callibration(gyro_offset)
56+
self.set_gyro_calibration(gyro_offset)
5257

5358
def reset_orientation(self):
5459
self.direction_X = vec3(1, 0, 0)
@@ -60,13 +65,12 @@ def reset_orientation(self):
6065
def _gyro_update_hook(self):
6166
if self.is_calibrating:
6267
if self.is_calibrating < time.time():
63-
self._set_callibration()
68+
self._set_calibration()
6469
else:
6570
for xyz in self.gyro:
6671
self.calibration_acumulator += xyz
6772
self.calibration_acumulations += 3
6873

69-
7074
for gx, gy, gz in self.gyro_in_rad:
7175
# TODO: find out why 1/86 works, and not 1/60 or 1/(60*30)
7276
rotation \

pyjoycon/joycon.py

+47-31
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
from .constants import JOYCON_VENDOR_ID, JOYCON_PRODUCT_IDS, JOYCON_L_PRODUCT_ID
1+
from .constants import JOYCON_VENDOR_ID, JOYCON_PRODUCT_IDS
2+
from .constants import JOYCON_L_PRODUCT_ID, JOYCON_R_PRODUCT_ID
23
import hid
34
import time
45
import threading
56
from typing import Optional
67

78
# TODO: disconnect, power off sequence
89

10+
911
class JoyCon:
1012
_INPUT_REPORT_SIZE = 49
1113
_INPUT_REPORT_PERIOD = 0.015
@@ -18,16 +20,17 @@ class JoyCon:
1820
color_body : (int, int, int)
1921
color_btn : (int, int, int)
2022

21-
def __init__(self, vendor_id: int, product_id: int, serial: str = None):
23+
def __init__(self, vendor_id: int, product_id: int, serial: str = None, simple_mode=False):
2224
if vendor_id != JOYCON_VENDOR_ID:
2325
raise ValueError(f'vendor_id is invalid: {vendor_id!r}')
2426

2527
if product_id not in JOYCON_PRODUCT_IDS:
2628
raise ValueError(f'product_id is invalid: {product_id!r}')
2729

28-
self.vendor_id = vendor_id
29-
self.product_id = product_id
30-
self.serial = serial
30+
self.vendor_id = vendor_id
31+
self.product_id = product_id
32+
self.serial = serial
33+
self.simple_mode = simple_mode # TODO: It's for reporting mode 0x3f
3134

3235
# setup internal state
3336
self._input_hooks = []
@@ -69,25 +72,29 @@ def _read_input_report(self) -> bytes:
6972

7073
def _write_output_report(self, command, subcommand, argument):
7174
# TODO: add documentation
72-
self._joycon_device.write(command
73-
+ self._packet_number.to_bytes(1, byteorder='little')
74-
+ self._RUMBLE_DATA
75-
+ subcommand
76-
+ argument)
75+
self._joycon_device.write(b''.join([
76+
command,
77+
self._packet_number.to_bytes(1, byteorder='little'),
78+
self._RUMBLE_DATA,
79+
subcommand,
80+
argument,
81+
]))
7782
self._packet_number = (self._packet_number + 1) & 0xF
7883

7984
def _send_subcmd_get_response(self, subcommand, argument) -> (bool, bytes):
8085
# TODO: handle subcmd when daemon is running
8186
self._write_output_report(b'\x01', subcommand, argument)
8287

8388
report = self._read_input_report()
84-
while report[0] != 0x21: # TODO, avoid this, await daemon instead
89+
while report[0] != 0x21: # TODO, avoid this, await daemon instead
8590
report = self._read_input_report()
86-
assert report[1:2] != subcommand, "THREAD carefully" # TODO, remove, see the todo above
91+
92+
# TODO, remove, see the todo above
93+
assert report[1:2] != subcommand, "THREAD carefully"
8794

8895
# TODO: determine if the cut bytes are worth anything
8996

90-
return report[13] & 0x80, report[13:] # (ack, data)
97+
return report[13] & 0x80, report[13:] # (ack, data)
9198

9299
def _spi_flash_read(self, address, size) -> bytes:
93100
assert size <= 0x1d
@@ -105,25 +112,30 @@ def _spi_flash_read(self, address, size) -> bytes:
105112
def _update_input_report(self): # daemon thread
106113
while True:
107114
report = self._read_input_report()
108-
while report[0] != 0x30: # TODO, handle input reports of type 0x21 and 0x3f
115+
# TODO, handle input reports of type 0x21 and 0x3f
116+
while report[0] != 0x30:
109117
report = self._read_input_report()
118+
110119
self._input_report = report
111120

112121
for callback in self._input_hooks:
113122
callback(self)
114123

115124
def _read_joycon_data(self):
116125
color_data = self._spi_flash_read(0x6050, 6)
117-
#stick_cal = self._spi_flash_read(0x8012 if self.is_left else 0x801D, 8) # TODO, this
126+
127+
# TODO: use this
128+
# stick_cal_addr = 0x8012 if self.is_left else 0x801D
129+
# stick_cal = self._spi_flash_read(stick_cal_addr, 8)
118130

119131
# user IME data
120132
if self._spi_flash_read(0x8026, 2) == b"\xB2\xA1":
121-
print(f"Calibrate {self.serial} IME with user data")
133+
# print(f"Calibrate {self.serial} IME with user data")
122134
imu_cal = self._spi_flash_read(0x8028, 24)
123135

124136
# factory IME data
125137
else:
126-
print(f"Calibrate {self.serial} IME with factory data")
138+
# print(f"Calibrate {self.serial} IME with factory data")
127139
imu_cal = self._spi_flash_read(0x6020, 24)
128140

129141
self.color_body = tuple(color_data[:3])
@@ -165,32 +177,33 @@ def _to_int16le_from_2bytes(hbytebe, lbytebe):
165177
return int16le
166178

167179
def _get_nbit_from_input_report(self, offset_byte, offset_bit, nbit):
168-
return (self._input_report[offset_byte] >> offset_bit) & ((1 << nbit) - 1)
180+
byte = self._input_report[offset_byte]
181+
return (byte >> offset_bit) & ((1 << nbit) - 1)
169182

170183
def __del__(self):
171184
self._close()
172185

173-
def set_gyro_calibration(self, offset_xyz, coeff_xyz):
174-
print("set_gyro_calibration:", offset_xyz, coeff_xyz) # TODO: remove this
186+
def set_gyro_calibration(self, offset_xyz=None, coeff_xyz=None):
175187
if offset_xyz:
176188
self._GYRO_OFFSET_X, \
177189
self._GYRO_OFFSET_Y, \
178190
self._GYRO_OFFSET_Z = offset_xyz
179191
if coeff_xyz:
180-
self._GYRO_COEFF_X = 0x343b / coeff_xyz[0] if coeff_xyz[0] != 0x343b else 1
181-
self._GYRO_COEFF_Y = 0x343b / coeff_xyz[1] if coeff_xyz[1] != 0x343b else 1
182-
self._GYRO_COEFF_Z = 0x343b / coeff_xyz[2] if coeff_xyz[2] != 0x343b else 1
192+
cx, cy, cz = coeff_xyz
193+
self._GYRO_COEFF_X = 0x343b / cx if cx != 0x343b else 1
194+
self._GYRO_COEFF_Y = 0x343b / cy if cy != 0x343b else 1
195+
self._GYRO_COEFF_Z = 0x343b / cz if cz != 0x343b else 1
183196

184-
def set_accel_calibration(self, offset_xyz, coeff_xyz):
185-
print("set_accel_calibration:", offset_xyz, coeff_xyz) # TODO: remove this
197+
def set_accel_calibration(self, offset_xyz=None, coeff_xyz=None):
186198
if offset_xyz:
187199
self._ACCEL_OFFSET_X, \
188200
self._ACCEL_OFFSET_Y, \
189201
self._ACCEL_OFFSET_Z = offset_xyz
190202
if coeff_xyz:
191-
self._ACCEL_COEFF_X = 0x4000 / coeff_xyz[0] if coeff_xyz[0] != 0x4000 else 1
192-
self._ACCEL_COEFF_Y = 0x4000 / coeff_xyz[1] if coeff_xyz[1] != 0x4000 else 1
193-
self._ACCEL_COEFF_Z = 0x4000 / coeff_xyz[2] if coeff_xyz[2] != 0x4000 else 1
203+
cx, cy, cz = coeff_xyz
204+
self._ACCEL_COEFF_X = 0x4000 / cx if cx != 0x4000 else 1
205+
self._ACCEL_COEFF_Y = 0x4000 / cy if cy != 0x4000 else 1
206+
self._ACCEL_COEFF_Z = 0x4000 / cz if cz != 0x4000 else 1
194207

195208
def register_update_hook(self, callback):
196209
self._input_hooks.append(callback)
@@ -402,15 +415,18 @@ def get_status(self) -> dict:
402415

403416
def set_player_lamp_on(self, on_pattern: int):
404417
self._write_output_report(
405-
b'\x01', b'\x30', (on_pattern & 0xF).to_bytes(1, byteorder='little'))
418+
b'\x01', b'\x30',
419+
(on_pattern & 0xF).to_bytes(1, byteorder='little'))
406420

407421
def set_player_lamp_flashing(self, flashing_pattern: int):
408422
self._write_output_report(
409-
b'\x01', b'\x30', ((flashing_pattern & 0xF) << 4).to_bytes(1, byteorder='little'))
423+
b'\x01', b'\x30',
424+
((flashing_pattern & 0xF) << 4).to_bytes(1, byteorder='little'))
410425

411426
def set_player_lamp(self, pattern: int):
412427
self._write_output_report(
413-
b'\x01', b'\x30', pattern.to_bytes(1, byteorder='little'))
428+
b'\x01', b'\x30',
429+
pattern.to_bytes(1, byteorder='little'))
414430

415431

416432
if __name__ == '__main__':

0 commit comments

Comments
 (0)