Search found 3 matches

by ayke
Thu Aug 02, 2018 2:11 am
Forum: Other Boards
Topic: [wt51822_s4at] getting started
Replies: 3
Views: 3125

Re: [wt51822_s4at] getting started

The ST-Link V2 clone can do it, I've used it often. You need to connect 3.3V, GND, SWDIO, and SWCLK to the correct pins. Then you can flash using OpenOCD. After that, connect a UART to the serial pins (check the datasheet) to enter the REPL. Note: using *make flash" or "make SD" won't work with Open...
by ayke
Tue Jun 12, 2018 8:13 pm
Forum: Programs, Libraries and Tools
Topic: FastLED for MicroPython
Replies: 4
Views: 12359

Re: FastLED for MicroPython

I haven't originally written them myself (only converted them), but I've put them online here:
https://gist.github.com/aykevl/0b4031c9 ... 6e4b0f3b64
by ayke
Mon Sep 04, 2017 9:12 pm
Forum: Programs, Libraries and Tools
Topic: FastLED for MicroPython
Replies: 4
Views: 12359

FastLED for MicroPython

I've ported over some animations from FastLED to MicroPython, to make animations actually *fast*. The default LED implementation was way too slow for me. I took inspiration from how NumPy accelerates calculations by doing them on a whole array at once. Example (BBCode doesn't seem to work, sorry abo...