Search found 12 matches

by patrickw
Wed May 27, 2020 2:35 am
Forum: General Discussion and Questions
Topic: New to micro controllers and MicroPython
Replies: 13
Views: 7399

Re: New to micro controllers and MicroPython

Search that Awesome Micropython list for h-bridge. You should one library ready to going.
https://github.com/GuyCarver/MicroPytho ... b/L298N.py

If that's not your h-bridge of choice you may be able to adapt the code.

Cheers,
-p
by patrickw
Tue May 26, 2020 3:38 pm
Forum: General Discussion and Questions
Topic: New to micro controllers and MicroPython
Replies: 13
Views: 7399

Re: New to micro controllers and MicroPython

Welcome to MicroPython!

There's a good list of books at Awesome-Micropython https://awesome-micropython.com/#books
by patrickw
Fri May 22, 2020 10:28 pm
Forum: General Discussion and Questions
Topic: Maximal decimal number ?
Replies: 3
Views: 2129

Re: Maximal decimal number ?

This Issue has the info on the Float Precision compiler flag
https://github.com/micropython/micropython/issues/4380
by patrickw
Sun May 17, 2020 5:58 am
Forum: ESP32 boards
Topic: ESP32 Virtual Timers??
Replies: 7
Views: 4806

Re: ESP32 Virtual Timers??

What board and firmware are you running? This is my setup IDF4 nightly build: >>> import os >>> os.uname() (sysname='esp32', nodename='esp32', release='1.12.0', version='v1.12-452-g801f7dca7 on 2020-05-14', machine='TinyPICO with ESP32-PICO-D4') This ran fine on my board. from machine import Timer t...
by patrickw
Fri May 15, 2020 10:00 pm
Forum: General Discussion and Questions
Topic: Unix (or MacOS or Windows) Port Installation
Replies: 6
Views: 3590

Re: Unix (or MacOS or Windows) Port Installation

Since I'm going document this, if anyone has Windows instructions post those as well.

Cheers!
-p
by patrickw
Fri May 15, 2020 9:51 pm
Forum: General Discussion and Questions
Topic: Unix (or MacOS or Windows) Port Installation
Replies: 6
Views: 3590

Re: Unix (or MacOS or Windows) Port Installation

Thanks Dave,

I didn't think to check brew. /*facepalm*/

I'll find a place to add this information to the docs.
If you have a preference for where feel free to tell me though.

Thanks again!
by patrickw
Fri May 15, 2020 8:47 pm
Forum: Programs, Libraries and Tools
Topic: PyPi and upip
Replies: 5
Views: 3089

Re: PyPi and upip

Specifically this would be for any packages which match the filter : Programming Language :: Python :: Implementation :: MicroPython

https://pypi.org/search/?c=Programming+ ... &q=&page=2
by patrickw
Fri May 15, 2020 8:24 pm
Forum: Programs, Libraries and Tools
Topic: PyPi and upip
Replies: 5
Views: 3089

PyPi and upip

As a n00b but a decently technical n00b, I really got caught up with pip and upip. I think one of the main issues is that when you look on PyPi for packages, the site says you can `pip install` the package, which I now know is not true. ;-) Has anyone discussed with PyPi about allowing for the how t...
by patrickw
Fri May 15, 2020 7:51 pm
Forum: General Discussion and Questions
Topic: Unix (or MacOS or Windows) Port Installation
Replies: 6
Views: 3590

Unix (or MacOS or Windows) Port Installation

I searched the docs and this forum and didn't find an answer. Is doing a build the only way to install the Unix (or MacOS or Windows) Ports? I can download a firmware for my TinyPico, but don't see that for the other non-hardware ports. I'm primarily interested in MacOS, but thought I'd ask the ques...
by patrickw
Thu May 14, 2020 7:35 pm
Forum: Programs, Libraries and Tools
Topic: Bluetooth library for B_L475E_IOT01A1
Replies: 3
Views: 2262

Re: Bluetooth library for B_L475E_IOT01A1

Hi Walecka, I'll take a swing and let others correct me. I think you're struggling with some of the same base concepts I did when I got into MP a few months ago, so I'll be a little long-winded in the hopes it helps more than a yes\no. Does Bluetooth work on your board? If you type help("modules") i...