Search found 230 matches

by cefn
Wed Jun 13, 2018 8:27 pm
Forum: ESP8266 boards
Topic: Repl not Responding
Replies: 6
Views: 6400

Re: Repl not Responding

There's a reasonable chance that if you download install vgkits-vanguard ( https://pypi.org/project/vgkits-vanguard/ ) that you can simply run... vanguard brainwash micropython vanguard shell ...and the first line will install 1.9.4 Micropython, and the second will launch a terminal. Let me know how...
by cefn
Wed Jun 13, 2018 8:18 pm
Forum: Programs, Libraries and Tools
Topic: Announcing mpy-miniterm, a serial terminal with integrated file synchronisation
Replies: 6
Views: 5912

Re: Announcing mpy-miniterm, a serial terminal with integrated file synchronisation

If you care about it running on Windows, you might want to track my https://github.com/vgkits/vgkits-vanguard/blob/master/vgkits/miniterm.py which has fixes for some major cross-platform issues in miniterm, ( https://github.com/pyserial/pyserial/pull/351 ). You can test it out as 'vanguard shell' vi...
by cefn
Wed Jun 13, 2018 8:06 pm
Forum: ESP32 boards
Topic: Putty is slow
Replies: 5
Views: 4353

Re: Putty is slow

Incidentally I am curious to know if I can get my 'vanguard shell' command to autodetect and connect for you, (which I have been engineering to try and get around the problems people face getting terminals installed and configured properly to connect to Micropython boards). You can investigate it at...
by cefn
Mon Jun 11, 2018 5:57 pm
Forum: Programs, Libraries and Tools
Topic: Miniterm fixed for Windows 10
Replies: 1
Views: 3845

Miniterm fixed for Windows 10

I put together a modified version of Miniterm which addresses several issues which combine to explain problems people have using Miniterm on Windows Python, like this https://github.com/pyserial/pyserial/issues/350#issuecomment-395713660 It is rollup of a fairly major fix for Windows terminal code-h...
by cefn
Mon Jun 11, 2018 5:12 pm
Forum: ESP8266 boards
Topic: Differences between CH340 & CP210X Boards
Replies: 9
Views: 19172

Re: Differences between CH340 & CP210X Boards

For reference, note this resource which has cross-platform, tested Miniterm invocations to connect to Micropython devices... https://vgkits.org/blog/connecting-with-miniterm / I have been investing a lot of time in Miniterm as it addresses the issue of being able to guide people through (more or les...
by cefn
Tue Jun 05, 2018 11:27 am
Forum: ESP8266 boards
Topic: vgkits-vanguard - Learner-oriented tools for ESP8266 micropython boards
Replies: 1
Views: 2232

vgkits-vanguard - Learner-oriented tools for ESP8266 micropython boards

As part of the development of VGkits' resources around the Vanguard board I've put together a new package distributed via PyPI. It's called vgkits-vanguard and it provides for incredibly simple cross-platform operations such as launching a shell, or reflashing an ESP8266 board. More operations can b...
by cefn
Mon Jun 04, 2018 6:46 pm
Forum: General Discussion and Questions
Topic: Solderless Breadboard Quality
Replies: 4
Views: 2830

Re: Solderless Breadboard Quality

If you ever need to buy in bulk, I have been buying boards for VGKits for >4 years DHL from N.B. Everest in China. I find them consistently reliable (I believe they manufacture themselves). When I have been forced occasionally buy from elsewhere (e.g. needing an urgent UK order to be fulfilled) to f...
by cefn
Thu May 10, 2018 10:58 pm
Forum: ESP8266 boards
Topic: Wemos D1 mini: no connection to WEBREPL
Replies: 1
Views: 2088

Re: Wemos D1 mini: no connection to WEBREPL

Are you using the default address when you click Connect ? As a temporary workaround, you could try deploying the image https://github.com/vgkits/vanguard/blob/master/utilities/flash/firmwares/vanguard-0.1.0.img which was created on a NodeMCU-M by running the deployall.py routine from https://github...
by cefn
Thu May 10, 2018 9:34 pm
Forum: ESP8266 boards
Topic: VGKits and Vanguard Board go live
Replies: 0
Views: 1601

VGKits and Vanguard Board go live

Just a note to say finally the website, social media resources and all-important launch video are up at https://vgkits.org Would be great to get everyones' feedback, although the resources are focused for high-school computer science teachers, so there's a deliberate lack of emphasis on technical/fl...
by cefn
Sun May 06, 2018 8:55 am
Forum: Programs, Libraries and Tools
Topic: TypeError: unsupported types for __lshift__: 'tuple', 'int'
Replies: 1
Views: 5495

Re: TypeError: unsupported types for __lshift__: 'tuple', 'int'

Hi @nikhiledutech It's not surprising your posting has taken more than a week for anyone to reply. Here is a code sample which recreates your issue... >>> calculated = (3,4,5) << 4 Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: unsupported types for __lshift__: 'tu...