received my Wipy

Questions and discussion about The WiPy 1.0 board and CC3200 boards.
Target audience: Users with a WiPy 1.0 or CC3200 board.
Post Reply
phsdv
Posts: 12
Joined: Wed Apr 22, 2015 2:36 pm

received my Wipy

Post by phsdv » Tue Oct 06, 2015 2:33 pm

Yes, received my Wipy today! Thanks guys and girl. I will start playing / experimenting with them soon.

Question. besides GP28, which has something to do with safeboot, I can use any of the GP pins for IO, correct?

User avatar
danicampora
Posts: 342
Joined: Tue Sep 30, 2014 7:20 am
Contact:

Re: received my Wipy

Post by danicampora » Tue Oct 06, 2015 4:04 pm

Good to hear you've received it!

All other pins can be safely used.

phsdv
Posts: 12
Joined: Wed Apr 22, 2015 2:36 pm

Re: received my Wipy

Post by phsdv » Wed Oct 07, 2015 8:28 am

Hi Dani,

Both boards are working. I can connect with FTP in Chrome, however ftp.exe in win7 has some issues when using the DIR command.
Using telnet (from PuTTY r0.65) is working fine too. See below:

Code: Select all

Micro Python v1.4.6-21-gff736d6 on 2015-09-27; WiPy with CC3200
Login as: micro
Password:
Login succeeded!
Type "help()" for more information.

>>> help()
Welcome to Micro Python!
For online help please visit http://micropython.org/help/.
For further help on a specific object, type help(obj)
>>> import pyb
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: module not found
Seems that pyb is not in the board? The /flash/lib directory on both my boards are empty. Also /flash/sys does not contain any files. Did you forgot to add the modules? Can we add these file our selves? Where do we find these files?

thanks
Paul

User avatar
danicampora
Posts: 342
Joined: Tue Sep 30, 2014 7:20 am
Contact:

Re: received my Wipy

Post by danicampora » Wed Oct 07, 2015 8:47 am

Hi Paul,

Please use filezilla, works like a charm and it's multiplatform. Linux FTP also works great, make sure you set the mode to passive and that's it.

Regarding libs, yes, that needs to be filled by you, but all standard stuff is built-in. Lib folder is for things like smtplib, Blynk, etc.

I still need to finish the docs for the new API, a bit lagging behind, sorry about that. In the meantime, here's the new API:

https://github.com/micropython/micropyt ... rdware-API

pyb has been cleaned-up and renamed to "machine".

Blynk lib can be found here:
https://github.com/wipy/wipy/tree/master/lib/blynk

Blynk folks have tested it, works perfectly, and WiPy will be officially supported in the next app release, but meanwhile you can play using a "generic board" on your smartphone.

Glad to see that your boards are working :-) (We tested 'em all!)

Do you have expansion boards? Use this as boot.py to get the repl on the USB port as well:

from machine import UART
import os
uart = UART(0, baudrate=115200)
os.dupterm(uart)

Make sure all headers are in place...

Cheers,
Daniel

Post Reply