element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Blog WizFi360-EVB-Pico
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
GPIO Pinout
Raspberry Pi Wishlist
Comparison Chart
Quiz
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: ralphjy
  • Date Created: 9 Aug 2022 11:42 PM Date Created
  • Views 2964 views
  • Likes 8 likes
  • Comments 17 comments
Related
Recommended
  • WizFi360
  • WizFi360-EVB-Pico
  • rp2040

WizFi360-EVB-Pico

ralphjy
ralphjy
9 Aug 2022

When the RPi Pico W was announced in June I was very happy as I've wanted to get an inexpensive WiFi version of the RP2040.  Unfortunately, to date, I haven't been able to get one. 

fmilburn mentioned in a Comment on New Pico W that "Wiznet has RP2040 boards for both ethernet and WiFi."

I noticed that the WizFi360 EVB Pico is available in distribution (Digikey less than $7).

image

And more recently I noticed on Hackster that Wiznet was having a design contest and giving away free samples for projects (3 different modules including the one with the Pico).

I applied and received a free sample.  It arrived this weekend, slightly worse for shipping - the exterior box was crushed (I plumped it up a bit), but luckily the board was not (love those padded envelopes).

image

The WizFi board has a couple of shortcomings relative to the Pico W.  It retains the Pico footprint/pinout, but is longer because the WiFi module is just tacked on the end.  And it only does WiFi, while the Pico W uses an Infineon CYW43439 chipset capable of WiFi/BLE (although to be fair - BLE has not been implemented in the firmware yet).

I have a number of sensors that I use WiFi only, so I'll probably make good use of the WiZFi board and best of all it's available...

  • Sign in to reply

Top Comments

  • ralphjy
    ralphjy over 3 years ago in reply to ntewinkel +1
    Hi Nico , The person that created the WizFi360_arduino_library had posted a project on Hackster using the wizfi360-evb-pico-in-arduino . I noticed that they had used version 2.2.2 of the RP2040 board…
  • ralphjy
    ralphjy over 3 years ago in reply to ntewinkel

    Good grief!  Good luck. Hope you get everything working before I get started Grinning.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • ntewinkel
    ntewinkel over 3 years ago in reply to ntewinkel

    So many hurdles, LOL...

    In case you run into this - the next problem was that it doesn't interpret .local names, so I had to use the IP address. That got me connected, and it's sending data that's being received by NodeRed, finally!!

    But then it runs out of sockets Laughing

    This all works 100% on the ESP-based boards, btw. I'm finding the WizFi library has a lot of other little quirks too, like the way the SSID and password are defined are not the same as the standard WiFi libraries (the proper libraries just use string constants).
    So I stand by my earlier outburst of this board not being polished enough for general use!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • ntewinkel
    ntewinkel over 3 years ago in reply to ralphjy

    ah ok. so you might need to remove that line from the samples too... in case it comes up.
    This is the line that caused the problems for me, in the samples:
    >  IPAddress ip = WiFi.localIP();

    And... where is that "facepalm" icon... I was connecting the WizFi board to my GUEST network, which is purposely isolated from seeing the rest of my network. sigh. So hopefully that will solve the last hurdles! Face palm

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • ralphjy
    ralphjy over 3 years ago in reply to ntewinkel

    Sorry, mislead you a bit.  I was able to connect and observe (on the router) that I had obtained an IP address.  I was not able to use the WiFi.localIP function - that hung as you experienced.  That is one of the things I wanted to look at.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • ntewinkel
    ntewinkel over 3 years ago in reply to ralphjy

    ps, good that you were able to connect and print out your IP address and have things working... I don't know why that doesn't work for me Confused

    It's possible they've broken that in the last week or so... I updated everything yesterday.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
<>
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube