Skip to content

Add support for the Particle Ethernet FeatherWing #2555

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

Merged
merged 1 commit into from
Jan 28, 2020

Conversation

suda
Copy link

@suda suda commented Jan 28, 2020

This PR adds support for Particle Ethernet FeatherWing based on WIZnet W5500 chip for Particle Argon/Boron/Xenon.

Usage:

import board
import busio
import wiznet

spi = busio.SPI(clock=board.SCK, MOSI=board.MOSI, MISO=board.MISO)
eth = wiznet.WIZNET5K(spi, board.D5, board.D3)
# For some reason DHCP doesn't seem to work in my case
eth.ifconfig(('192.168.1.2', '255.255.255.0', '192.168.1.1', '1.1.1.1'))

@suda suda requested a review from tannewt January 28, 2020 10:51
Copy link
Member

@tannewt tannewt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! This looks great. Note that we will likely move the Wiznet support out of the core and into a Python library with CircuitPython 6. That will make it easier to maintain and improve.

@tannewt tannewt merged commit 84b0553 into adafruit:master Jan 28, 2020
@suda suda deleted the feature/particle-wiznet5k branch January 29, 2020 16:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants