-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
CircuitPython throws a syntax error on line 428 of rf24.py #40
Comments
Using a + instead of a comma may be preferred -- the comma adds a space between the strings, the + concatenates. |
A |
Looks like I already reverted back to using CircuitPython_nRF24L01/circuitpython_nrf24l01/rf24.py Lines 443 to 446 in 43e9ae0
on my bleeding edge branch. |
Thanks for the quick response. |
Your feedback is always welcome. I'm just slow to release (for HW testing reasons). |
FYI -- I updated to the new release and ran the simple_ test between a Pi (3B+) and a Feather M4 Express running CP 8.0 alpha.1 -- worked fine! Thanks |
I just finished testing all the examples on my Feather RP2040 (w/ CirPy v7.3.0) and my RPi4. Thus, the release. |
I tried executing the nrf24l01_simple_test.py on a feather m4 express running both CircuitpYhton 7.3.0 and 8.0 alpha.1
and I get a syntax error on line 428 of rf24.py
https://github.com/nRF24/CircuitPython_nRF24L01/blob/master/circuitpython_nrf24l01/rf24.py#L428
simply adding a comma to line 427 fixes the problem
changing
to
resolves the issue on the feather m4 express.
The library runs OK as is on a Raspberry Pi.
The text was updated successfully, but these errors were encountered: