Phil Howard
0148e5f5e7
MicroPython: Move boot.py to modules_py.cmake.
...
The cppmem module *must* be switched into MicroPython heap mode or C++ code will inevitably run out of RAM.
Thus boot.py needs to be included in every build.
2023-03-27 10:41:16 +01:00
Phil Howard
f5859ad371
Badger: Drop deprecated cmake files.
2023-03-27 10:31:12 +01:00
Phil Howard
393879581a
Badger 2040: Add deprecation warnings and firmware links.
2023-03-27 10:30:19 +01:00
Philip Howard
c6b4a30c09
Merge pull request #725 from pimoroni/patch-frame-convert-heap
...
MicroPython: Magic C++ Memory Management.
2023-03-27 10:28:16 +01:00
Janos P Toth
be1b827cfc
Update README.md
2023-03-25 10:14:58 -07:00
Phil Howard
2c0310ca9a
MicroPython: Switch C++ allocation mode in boot.py.
2023-03-24 20:37:26 +00:00
Phil Howard
667faf70d1
MicroPython: Magic C++ allocator module.
...
This module redirects all pre-init object memory allocations into a static, fixed-sized, linear, non-freeing memory pool.
It then auto-switches into "MICROPYTHON" mode, whereupon all C++ `new` and `delete` calls are remapped to `m_malloc` and `m_free` respectively.
2023-03-24 15:11:07 +00:00
Hel Gibbons
0666dc885a
Scroll Pack: Fix demo.py
2023-03-21 14:24:03 +00:00
Hel Gibbons
5392c5aa03
Merge pull request #713 from pimoroni/examples/inky_frame
...
Inky Frame: add new examples and update sample images
2023-03-20 14:18:43 +00:00
Phil Howard
f9b46ba3a7
Pico Scroll: PicoGraphics scrolling text example.
2023-03-16 17:34:52 +00:00
helgibbons
ec4c6c83f4
Inky Frame: correct typo
2023-03-16 17:13:23 +00:00
helgibbons
6f06ab246c
Inky Frame: update image_gallery.py
2023-03-16 17:10:16 +00:00
Phil Howard
1b0b783a2f
Pico Scroll: Add support for PicoGraphics.
2023-03-16 16:59:31 +00:00
helgibbons
9aa0465d8b
hub75: function correction
2023-03-16 16:52:17 +00:00
Phil Howard
b83bdbf198
MicroPython: Pico W parity with Pico build.
2023-03-16 15:02:32 +00:00
Phil Howard
f2751ba6e9
Pico Unicorn: Add support for PicoGraphics.
2023-03-16 15:02:28 +00:00
Phil Howard
3eb42336e6
Pico Unicorn: Refactor into class.
...
Borrow heavily from Galactic/Cosmic Unicorn for the PIO/chained-DMA setup.
2023-03-16 13:25:19 +00:00
Phil Howard
044313551b
Pico Scroll: Refactor to class.
2023-03-16 13:25:19 +00:00
Phil Howard
bd3651d97d
Pico RGB Keypad: Refactor to class.
...
Because `mp_tracked_calloc` does not survive a soft reset but the memory region will, resulting in half-initialised frankenclasses that behave unpredictably.
Using the class pattern fixes this since it's always guaranteed to be initialised when a user instantiates it, and __del__ can handle cleanup.
2023-03-16 13:25:19 +00:00
Phil Howard
9964ed716b
Servo/Motor: Use m_new instead of new.
2023-03-16 13:25:19 +00:00
Phil Howard
a45eeb1623
Pico Wireless: Use tracked alloc.
2023-03-16 13:25:19 +00:00
Phil Howard
aa91450f59
Pico Unicorn: Use tracked alloc.
2023-03-16 13:25:19 +00:00
Phil Howard
dd7ea6fdc3
Pico Scroll: Use tracked alloc.
2023-03-16 13:25:19 +00:00
Phil Howard
e4cb7ce95f
Pico RGB Keypad: Use tracked alloc.
2023-03-16 13:25:19 +00:00
Phil Howard
157841f9db
MicroPython: Add tracked alloc/free class helpers.
2023-03-16 13:25:19 +00:00
Phil Howard
1f0302bd66
BME280: Check read status and throw error on fail.
2023-03-16 13:25:19 +00:00
Phil Howard
375df60ff3
PicoGraphics: Switch to string_view.
...
MicroPython's GET_STR_DATA_LEN macro returns a const byte array and len, which std::string would copy into heap.
Using string_view lets us wrap the existing const values.
2023-03-16 13:25:19 +00:00
Phil Howard
b74b371d2b
JPEGDEC: Don't pass filename through std::string.
...
The result of GET_STR_DATA_LEN should be null terminated, so converting to a std::string and then using .c_str() is both redundant and need
s heap.
2023-03-16 13:25:19 +00:00
Hel Gibbons
d0e2425e07
Merge pull request #655 from pimoroni/patch/i75-userbutton
...
i75/i75w: Auto-detect board and set up user button.
2023-03-16 11:58:59 +00:00
Hel Gibbons
60fe949fc5
fix link
2023-03-15 16:57:15 +00:00
Hel Gibbons
0e6dbc1a6c
add link
2023-03-15 11:22:23 +00:00
Hel Gibbons
9bee6d7431
tweak carbon intensity example
2023-03-15 10:39:54 +00:00
Michael Mogenson
2f26c172ed
clock.py: constrain hour to 0 to 24
...
Use a modulo to constrain the displayed hour to 0 - 24 after applying
the UTC offset.
2023-03-14 21:22:59 -04:00
Hel Gibbons
2db116ccec
update readme
2023-03-14 14:29:20 +00:00
Hel Gibbons
9ed2c40808
add carbon intensity example
2023-03-14 14:22:28 +00:00
Hel Gibbons
9730fee753
update readmes
2023-03-13 17:12:29 +00:00
Hel Gibbons
0138980849
update images, add new random image example
2023-03-13 16:56:28 +00:00
helgibbons
6f73f8fc83
Inky Frame: add more space images
2023-03-09 23:56:28 +00:00
Phil Howard
13599b55a1
MicroPython: Tidy up CMake files for our boards.
...
* Feature parity between Badger 2040 and Tufty 2040.
* Add ulab to Tufty 2040.
* Don't include modules_py modules for boards that don't use/need them.
* Tweak modules_py.cmake so modules can be copied by parent CMake files.
* Simplify copy_module function to avoid repetition.
2023-03-09 11:36:55 +00:00
Philip Howard
faf4efac34
Merge pull request #702 from pimoroni/docs/inky73
...
Inky 7.3 tweaks & docs
2023-03-08 21:02:06 +00:00
Phil Howard
a448043870
Inky Frame: Document buttons & LEDs.
...
Expand upon memoryview caveat with Inky 7.3.
2023-03-08 20:48:58 +00:00
Phil Howard
75d56d04ad
Inky Frame: Use PWMLED for button LEDs.
2023-03-08 20:31:30 +00:00
Phil Howard
f255f419a1
Inky Frame: Use new PWMLED for led_busy and led_wifi.
2023-03-08 20:15:38 +00:00
Phil Howard
3f92caee22
Inky Frame: Better document colour constants.
2023-03-08 16:57:33 +00:00
Hel Gibbons
3d597e7d03
Inky Frame: make image_gallery work with all sizes
2023-03-08 16:54:36 +00:00
Phil Howard
83f88c034d
PicoGraphics: Enable thickness for all pens. Document.
2023-03-08 14:34:28 +00:00
Phil Howard
aed14aca22
PicoGraphics: Expose line thickness support.
2023-03-08 12:08:47 +00:00
Phil Howard
cacb5749ae
Inky Frame: Add thickness support for Hershey text.
2023-03-08 11:35:07 +00:00
Anton Mosich
aee0a2879b
Fix small typo in README
2023-03-06 23:28:47 +01:00
Phil Howard
63d4c23cd5
Inky Frame: Basic RTC demo.
2023-03-06 10:51:21 +00:00
Phil Howard
a6e35e207d
Inky Frame: Check current button state in woken_by_button.
...
Makes it easier to test wakeup logic in Thonny by holding a button when hitting "Run."
2023-03-06 10:51:21 +00:00
Phil Howard
07a5aac48f
Inky Frame: Python Documentation.
2023-03-06 10:51:16 +00:00
Hel Gibbons
f194715108
Merge pull request #701 from LionsPhil/autobrightstandalone
...
Contribute an automatic display brightness example
2023-03-03 11:34:16 +00:00
Phil Howard
56e5878b62
Inky Frame: Fix button masks, fakesleep on USB.
2023-03-03 10:56:50 +00:00
Phil Howard
b6d0e54803
Inky Frame: Add RTC helper functions to Python module.
2023-03-02 17:33:30 +00:00
Phil Howard
9e120995b2
Inky Frame: Add colour constants to Python module.
2023-03-02 13:09:55 +00:00
Phil Howard
f4f5c6319a
Inky Frame: Add dithering example.
2023-03-02 13:09:14 +00:00
Phil Howard
64632559f9
Inky 7.3: Raise error on PicoGraphics buffer operations.
2023-03-02 13:08:44 +00:00
Philip Howard
6be46dd429
Merge pull request #700 from pimoroni/examples/galactic-co2
...
Galactic: add CO2 breakout example
2023-03-02 11:44:04 +00:00
LionsPhil
0a6d6b91b3
Contribute an automatic display brightness example
...
Standalone smoothed display auto-brightness, reactive to the on-board
LUX and battery ADC sensors, with debugging keys so it's easier to test
(and play with).
Closes pull requests #628 and #629 , which did this to the retro_badge
example, but made it too complicated.
2023-03-02 00:29:23 +00:00
Hel Gibbons
3d96ff9d92
Galactic: update examples readme
2023-03-01 14:16:12 +00:00
Hel Gibbons
421e715f06
Galactic: lint CO2 example
2023-03-01 13:55:40 +00:00
Hel Gibbons
8e91108ce5
Merge pull request #695 from pimoroni/inkyframe7-launch
...
Launcher for Inky Frame 7.3"
2023-03-01 12:32:38 +00:00
thirdr
b66fc524ae
adjustment to joke delivery position
2023-03-01 12:11:18 +00:00
thirdr
0cec01cf37
Switching from using JPEG to JSON files
2023-03-01 11:08:49 +00:00
Hel Gibbons
1dbd3ea312
Merge pull request #546 from Corteil/Galactic-Unicorn-CheerLights
...
CheerLights example for the Galactic Unicorn
2023-03-01 09:52:12 +00:00
Brian Corteil
f882efc901
Update cheerlights.py
...
removed white space from line 20 in cheerlights
2023-02-28 23:39:35 +00:00
Hel Gibbons
bc49a69416
Galactic: add co2 example
2023-02-28 17:51:08 +00:00
Philip Howard
5abbf9b5c8
Merge pull request #699 from pimoroni/docs/picographics_create_pen_hsv
...
PicoGraphics: correct hsv pen reference
2023-02-28 16:57:28 +00:00
Hel Gibbons
5ca10794a8
PicoGraphics: clarify hsv units
2023-02-28 15:43:19 +00:00
Hel Gibbons
1cb170664e
PicoGraphics: correct hsv pen reference
2023-02-28 15:16:08 +00:00
Phil Howard
07a1bf645a
Cosmic Unicorn: RGB channels example in ulab/numpy.
2023-02-28 14:46:41 +00:00
thirdr
45a12892b8
adding blank secrets.py
2023-02-28 13:36:25 +00:00
Hel Gibbons
de6b7e2828
Inky Frame: fix more typo
2023-02-28 13:10:44 +00:00
Hel Gibbons
579b8daa4e
fix typo
2023-02-28 12:54:28 +00:00
Phil Howard
0fda232dcb
Cosmic Unicorn: Melody Maker.
2023-02-28 10:10:57 +00:00
Phil Howard
cbc21e52be
Galactic/Cosmic Unicorn: Add sound to 80s computer.
2023-02-28 08:48:15 +00:00
Phil Howard
b4d72d250d
Galactic/Cosmic Unicorn: Remove loop from life.
...
More numpy magic to remove the Python loop and drastically increase life generation performance.
2023-02-27 23:13:44 +00:00
Phil Howard
10ea8757ea
Galactic/Cosmic Unicorn: Life.
2023-02-27 22:31:52 +00:00
Phil Howard
c836f9f8fe
Galactic Unicorn: Backport Cosmic ulab/numpy examples.
2023-02-27 20:47:39 +00:00
Phil Howard
d750532180
Cosmic Unicorn: Fix typo in lava_lamp.
...
Found while backporting to Galactic.
2023-02-27 20:34:03 +00:00
Phil Howard
ad5e4cc10e
Cosmic Unicorn: Eighties super computer in numpy/ulab.
2023-02-27 19:52:56 +00:00
Hel Gibbons
ec601de9a4
Cosmic: Update examples readme
2023-02-27 16:47:08 +00:00
Hel Gibbons
6aa5aaf50c
Cosmic: update examples readme
2023-02-27 16:01:37 +00:00
Hel Gibbons
8069ae0e8f
Cosmic: make examples consistent
2023-02-27 15:43:38 +00:00
Hel Gibbons
3459cc5f62
Cosmic: update clock example
2023-02-27 15:09:58 +00:00
Hel Gibbons
931b3b26b2
PicoGraphics: add note about HSV pen
2023-02-27 15:09:58 +00:00
Hel Gibbons
b6042e78c1
Cosmic: update function reference
2023-02-27 15:09:58 +00:00
Hel Gibbons
c194fc7a2b
Cosmic: add examples readme
2023-02-27 15:09:58 +00:00
Hel Gibbons
3e44edf66a
Galactic/Cosmic: fix #556
2023-02-27 15:09:58 +00:00
Hel Gibbons
c2b1eb47e5
Galactic - fix #661
2023-02-27 15:09:58 +00:00
Hel Gibbons
86c304d192
Cosmic - update remaining examples
2023-02-27 15:09:58 +00:00
thirdr
b762ee8861
more colour and layout adjustments
2023-02-27 14:54:27 +00:00
thirdr
36458436bc
oops, linting fix
2023-02-27 14:54:27 +00:00
thirdr
d29666b87a
colour adjustments
2023-02-27 14:54:27 +00:00
thirdr
797c0bbfd4
added exception handling
2023-02-27 14:54:27 +00:00
thirdr
9f8596c031
Switched from Taupe to Orange background text
2023-02-27 14:54:27 +00:00
thirdr
2357e8225b
removed taupe colour from launcher
2023-02-27 14:54:27 +00:00
thirdr
bc89afb58c
Updated layout for Inky Frame 7 & 4
2023-02-27 14:54:27 +00:00
thirdr
e8ff06dac8
Updated standalone examples for Inky Frame 7
2023-02-27 14:54:27 +00:00
thirdr
1fe071b713
support for inky 7
2023-02-27 14:54:27 +00:00
thirdr
44cc9d6e5e
comment change
2023-02-27 14:54:27 +00:00
thirdr
66fbdde5e1
7.3 Frame support for Nasa APOD
2023-02-27 14:54:27 +00:00
thirdr
93dff218dc
updated main launcher for 7
2023-02-27 14:54:27 +00:00
Philip Howard
9c1c9e6b8d
Merge pull request #694 from pimoroni/patch-cosmic-paint
...
Cosmic Unicorn: Port paint example.
2023-02-27 14:30:02 +00:00
thirdr
d25b04c93f
standalone today example
2023-02-27 13:44:30 +00:00
Phil Howard
c9d39d813c
Cosmic Unicorn: Port paint example.
2023-02-27 12:28:25 +00:00
Gee Bartlett
ca9b9d6b6a
checked and updated nostalga prompt example
2023-02-27 12:22:19 +00:00
Hel Gibbons
35cc345eb4
Hooray, linting!
2023-02-27 11:53:20 +00:00
Hel Gibbons
69ee5cff3a
remove out of date upip install code
2023-02-27 11:53:20 +00:00
Hel Gibbons
9a613975d7
delete empty file
2023-02-27 11:53:20 +00:00
Gee Bartlett
4bc002091e
added in the wifi examples from another branch
2023-02-27 11:53:20 +00:00
Brian Corteil
37ff6b8b37
Update cheerlights.py
...
updated with @Gadgetoid suggestion.
2023-02-23 21:35:29 +00:00
Philip Howard
aab8f0be35
Merge pull request #225 from pimoroni/driver/mlx90640
...
Driver for the mlx90640 thermal camera
2023-02-23 17:18:46 +00:00
Phil Howard
8ff40fae6e
MLX90640: MicroPython module.
2023-02-23 16:52:59 +00:00
ZodiusInfuser
446d7189c6
Automation 2040W Mini: Add dedicated HTML page.
2023-02-23 16:02:36 +00:00
Gee Bartlett
0616a0694e
Automation2040W Mini: Fixed example.
2023-02-23 16:02:29 +00:00
Phil Howard
bea90dfd60
JPEGDEC: Experimental 3bit/4bit palette no-dither.
2023-02-22 15:40:22 +00:00
Phil Howard
5f9d4e33b3
Interstate 75: Auto-detect board version.
2023-02-22 11:47:23 +00:00
Gee Bartlett
552339a49e
Update interstate75.md
2023-02-22 11:41:07 +00:00
Gee Bartlett
8637967605
Made edits from review
2023-02-22 11:41:05 +00:00
Gee Bartlett
93a18a874a
updated examples
2023-02-22 11:39:32 +00:00
Gee Bartlett
979cc38b2a
updated button defs
2023-02-22 11:39:30 +00:00
Gee Bartlett
96c83f8ae4
Update interstate75.md
2023-02-22 11:35:33 +00:00
Gee Bartlett
2a1c1e464f
moved text size and placement
2023-02-22 11:35:33 +00:00
Gee Bartlett
58ee3b1e97
added boot button to module
2023-02-22 11:35:33 +00:00
Philip Howard
f17c04b7ff
Merge pull request #658 from SimonShirley/main
...
List index out of range fix, remove default QR message if text files are available and file housekeeping
2023-02-22 11:11:59 +00:00
Philip Howard
b08cf1fba0
Merge pull request #678 from pimoroni/patch-cosmic-example
...
Patch: fixed error caused by missing secrets.py
2023-02-22 11:04:01 +00:00
Brian Corteil
a5538da8e6
Update cheerlights.py
...
added newline to last line
2023-02-22 02:05:20 +00:00
Brian Corteil
ba7a17ff43
removed white space on lines 26 and 27
2023-02-22 01:57:33 +00:00
Zoobdude
3797d4b76e
Update README.md
2023-02-21 21:48:44 +00:00
thirdr
e3dc655a34
fixed error caused by missing secrets.py
2023-02-21 16:34:47 +00:00
Phil Howard
81884448ab
Cosmic Unicorn: Launch Examples.
...
Co-authored-by: thirdr <ryan@pimoroni.com>
2023-02-21 13:25:39 +00:00
Phil Howard
2176e0feb1
MicroPython: Avoid some duplication in CMake files.
2023-02-21 12:52:47 +00:00
Phil Howard
fc37ef100d
Cosmic Unicorn: Tidy up audio feature test a little.
2023-02-21 12:52:47 +00:00
Phil Howard
a09fde770f
Cosmic Unicorn: Fix feature test for #661 .
2023-02-21 12:52:47 +00:00
Phil Howard
6c0c45d6c8
Cosmic Unicorn: Fast, numpy effect examples.
2023-02-21 12:52:46 +00:00
Phil Howard
ff3efc0d28
Cosmic Unicorn: Include ulab.
2023-02-21 12:52:46 +00:00
Phil Howard
1b2dae45d3
Cosmic Unicorn: Add config and workflow for .uf2.
2023-02-21 12:52:46 +00:00
Gee Bartlett
53162737a1
Cosmic Unicorn: MicroPython Examples.
...
updating demos
other demos
Update rainbow.py
linting fixes
Faster flames
2023-02-21 12:52:46 +00:00
Gee Bartlett
9bc616690e
Cosmic Unicorn: MicroPython bindings.
...
started on MP driver
removed duplacte audio_i2s.pio
disabled GU lib options
bug fixes
bringing Picographics into line
Update picographics.cpp
fixing naming Cosmic to cosmic fixed H and W
2023-02-21 12:52:44 +00:00
Philip Howard
93ac854672
Merge pull request #663 from pimoroni/feature/inky73
...
Support for Inky Frame 7.3" (using direct pen into PSRAM framebuffer)
2023-02-21 12:48:56 +00:00
Zoobdude
ae908c6075
Update README.md
2023-02-20 19:50:01 +00:00
Philip Howard
1b87ec8bd8
Merge pull request #648 from pimoroni/patch/interstate-examples
...
Few more Interstate examples
2023-02-20 12:39:07 +00:00
Phil Howard
ab488a4452
Fixup: Add pins.csv files to W builds.
2023-02-20 12:29:59 +00:00
Phil Howard
00988c6207
Inky: Add urllib.urequest to manifest.py.
2023-02-20 12:29:59 +00:00
Phil Howard
b0c25a57a2
Inky 7.3: Add LEDs to Python module.
2023-02-20 12:29:59 +00:00
Phil Howard
88e50891d1
Inky 7.3: Add to PicoGraphics.
2023-02-20 12:29:59 +00:00
Phil Howard
4928ceff8d
Inky 7.3: Add pen type to JPEGDEC.
2023-02-20 12:29:59 +00:00
Philip Howard
b810ffdfdb
Merge pull request #672 from pimoroni/patch-bump-micropython-pico-sdk-1.5.0
...
CI: Bump MicroPython to latest commit post Pico SDK 1.5.0 bump.
2023-02-20 12:14:34 +00:00
Phil Howard
d34171381c
MicroPython: Update fixups for v1.5.0.
2023-02-20 12:00:23 +00:00
Hel Gibbons
de48394764
port GFX pack examples
2023-02-20 11:01:34 +00:00
Hel Gibbons
259bad7ce8
Update placekitten.py
2023-02-20 11:01:34 +00:00
Hel Gibbons
740aa14cac
Add I75 placekitten example
2023-02-20 11:01:34 +00:00
Hel Gibbons
fa275e6919
update examples readme
2023-02-17 16:47:08 +00:00
Hel Gibbons
dc121aa4f1
add badger w examples readme
2023-02-17 16:43:27 +00:00
ZodiusInfuser
943ea1390a
Merge pull request #633 from pimoroni/feature/badger2040w
...
Badger2040w support
2023-02-16 10:43:25 +00:00
helgibbons
2bdb05ce68
fix a couple of typos
2023-02-15 11:18:45 +00:00
Brian Corteil
47a8373bbb
Create cheerlights.py
...
Updated to use the Pimoroni standard Wi-Fi method to be inline with other examples and rename filed to cheerlights.py so can be import from REPL
2023-02-14 23:07:35 +00:00
Hel Gibbons
8a420ca0e4
update qrcode.py with badger w details
2023-02-14 15:21:46 +00:00
Hel Gibbons
9bba17cc47
add missing .py
2023-02-13 17:39:13 +00:00
Phil Howard
cb82878cd2
Badger2040W: Add README.md for MicroPython.
2023-02-13 13:41:56 +00:00
LionsPhil
033157503b
Rewrite the Tufty2040 main menu somewhat
...
Primarily motivated to get almost everything out of globals and fix
issue #631 . This is a stripped-down version of the gist there without
the memory debugging and reboot-into-direct-boot mode.
Mostly move things to functions. Clean up some dead code and comments.
I think the biggest win is not actually the PicoGraphics framebuffer,
which is well-behaved, but random temporary floats that were leaking
previously.
Also type-annotated and lints clean.
Fixes #631 . (As much as I think is possible.)
2023-02-12 12:33:28 +00:00
Phil Howard
2952fd760e
Badger2040W: Fix news text wrapping and URLs.
2023-02-10 22:15:09 +00:00
Phil Howard
0410b7c775
Badger2040W: Add thickness back. Better error backdrop.
2023-02-10 22:15:09 +00:00
Phil Howard
d7b9881c0f
Badger2040W: Add pins.csv to board fixup.
2023-02-10 22:15:09 +00:00
Phil Howard
a275f31c7a
Badger2040W: (Try to) fix abrupt poweroff screen corruption.
2023-02-10 22:15:09 +00:00
Phil Howard
3a2a43f4b3
Badger2040W: Correct wakeup LED.
2023-02-10 22:15:09 +00:00
Phil Howard
cbcd9edd9a
Badger2040W: Fix wakeup and quit to launcher button handling.
2023-02-10 22:15:09 +00:00
Mike Bell
26eeb2b042
Badger2040W: Use partial update for seconds on clock
2023-02-10 22:15:09 +00:00
Phil Howard
2109d7fb37
Badger2040W: Move weather icons from examples dir to icons/.
2023-02-10 22:15:09 +00:00
Phil Howard
9ea196adb1
Badger2040W: Tidyup icons, crop to 52x52.
2023-02-10 22:15:09 +00:00
Phil Howard
a70ce8a4a6
Badger2040W: Call wrapped-update in lib.
2023-02-10 22:15:09 +00:00
Hel Gibbons
d4273ebbcb
Badger2040W: Add weather example and icons.
2023-02-10 22:15:09 +00:00
Phil Howard
7a2ffccf16
Badger2040W: Simplify clock, time is set via NTP.
2023-02-10 22:15:09 +00:00
Phil Howard
548e1fdbdb
Badger2040: Add image path to badge.txt.
2023-02-10 22:15:09 +00:00
Phil Howard
b5fb62c8f6
Badger2040W: Fix noise in icon files.
2023-02-10 22:15:09 +00:00
Phil Howard
c56844ae69
Badger2040W: Fix clock network check.
2023-02-10 22:15:09 +00:00
Phil Howard
c3ad87765d
PicoGraphics: Extremely cursed thickness support for 1bit pens.
...
Experimental. There must be less cursed way to do this.
2023-02-10 22:15:07 +00:00
thirdr
6e44434e7d
fixed quit to launcher
2023-02-10 22:12:02 +00:00
Phil Howard
de8ed26460
Badger2040W: Force wait for screen refresh finish.
2023-02-10 22:12:02 +00:00
Phil Howard
6349d45768
Badger2040W: Remove BUTTON_USER since it doesn't exist.
2023-02-10 22:12:02 +00:00
Phil Howard
d8f9b81eca
Badger2040W: Port ebook example.
2023-02-10 22:12:02 +00:00
Phil Howard
23f792caa9
Badger2040W: Finish core libs, add Badge.
2023-02-10 22:12:02 +00:00
thirdr
379a1cb3ef
Badger2040W: New examples.
2023-02-10 22:12:02 +00:00
Phil Howard
6526787772
Badger2040W: Drop turbo clock from launcher.
2023-02-10 22:12:02 +00:00
Phil Howard
15dabdba1f
Badger2040W: Fix very slow and very wrong __getattr__.
2023-02-10 22:12:02 +00:00
Phil Howard
a02834be9e
Badger2040: Port more examples.
2023-02-10 22:12:02 +00:00
Phil Howard
f82e21018f
Badger2040W: Remove font sizes from launcher.py.
2023-02-10 22:12:02 +00:00
Phil Howard
1dbc992180
Badger2040W: Fixes to launcher and badger libs.
2023-02-10 22:12:02 +00:00
Phil Howard
03d5224e3e
Badger2040W: Use correct MicroPython manifest.py.
2023-02-10 22:12:02 +00:00
Phil Howard
e859b39e11
Badger2040W: Fix linting, use micropython-lib urllib.
2023-02-10 22:12:02 +00:00
Phil Howard
2b3b1e4676
Badger2040W: Fix (blank line in) .uf2 manifest.
2023-02-10 22:12:02 +00:00
Phil Howard
984dbd5185
Badger2040W: Switch launcher to jpegdec, reorganise files.
2023-02-10 22:12:02 +00:00
Phil Howard
9bd29e0ef2
JPEGDEC: Fix iWidthUsed skip not advancing pixel pointer.
2023-02-10 22:12:02 +00:00
Phil Howard
81d9b2ab81
Badger2040W: Add examples and libs.
2023-02-10 22:12:02 +00:00
Phil Howard
ac2da23c96
Badger2040W: Append filesystem.
2023-02-10 22:12:02 +00:00
Phil Howard
c70043922a
Badger2040W: Switch to PicoGraphics.
2023-02-10 22:12:02 +00:00
Phil Howard
6ea105bb03
MicroPython: Switch Badger2040 to m_new_class.
2023-02-10 22:12:02 +00:00
Phil Howard
d25324d6c7
MicroPython: Add Badger2040W firmware build.
2023-02-10 22:12:02 +00:00
Philip Howard
de8cb95ab4
Merge pull request #660 from pimoroni/patch/hub75_color_order
...
Add support to Interstate / HUB 75 for panels with different color orders
2023-02-10 21:43:28 +00:00
Phil Howard
1fc00ac5af
CI: Generate version.py for #664 .
2023-02-10 21:12:56 +00:00
Philip Howard
c4decc5003
PicoGraphics: HSV Pen ( #665 )
...
Co-authored-by: Gee Bartlett <122281230+ageeandakeyboard@users.noreply.github.com>
2023-02-09 16:13:37 +00:00
Simon Shirley
cd95edc707
Refactor: Attempt to fix Python linting
2023-01-31 19:49:51 +00:00
ZodiusInfuser
cacfbd174b
Previous idea did not work, so now checking color order for every pixel set
2023-01-31 14:07:14 +00:00
ZodiusInfuser
eda6e996ce
Updated interstate module
2023-01-31 13:11:50 +00:00
ZodiusInfuser
1343f23316
Attempt at adding color order support to Hub75
2023-01-31 13:00:22 +00:00
Simon Shirley
9aedf16bb5
Free up file resources once text has been read
2023-01-30 17:36:08 +00:00
Simon Shirley
77ee234caa
Only create and show demo QR code if no other QR codes are available
2023-01-30 17:35:49 +00:00
Simon Shirley
eb7eaae885
Fixes 'list index out of range' if current_qr state is outside CODES range
2023-01-30 17:35:20 +00:00
Philip Howard
397ef786a9
Merge pull request #640 from pimoroni/patch-plasma-make-new
...
Plasma: Swap make_new/print functions for WS2812 module.
2023-01-19 15:46:35 +00:00
Hel Gibbons
db5004d51c
Merge pull request #639 from pimoroni/docs/add-links
...
Update docs and add links
2023-01-19 14:45:59 +00:00
Phil Howard
6bf5c7f7b5
Plasma: Swap make_new/print functions for WS2812 module.
...
Fixes #637
2023-01-19 10:29:30 +00:00
Hel Gibbons
1ece897490
add link
2023-01-18 17:11:06 +00:00
Hel Gibbons
9aa2e33d46
PicoGraphics documentation tweaks
2023-01-18 16:59:05 +00:00
Hel Gibbons
92d58a17c0
Picographics documentation tweaks
2023-01-18 16:56:08 +00:00
Hel Gibbons
d2da1c6213
add link
2023-01-18 16:32:08 +00:00
Hel Gibbons
914a4b345c
Correct RAM units
2023-01-18 15:41:33 +00:00
Philip Howard
63fc338ca6
Merge pull request #625 from pimoroni/patch/bme68x-configure-fix
...
Fix BME68x configure function
2023-01-16 15:01:11 +00:00
Philip Howard
c98d0daaf4
Merge pull request #626 from pimoroni/patch/inky-launcher-57-update
...
Patch/inky launcher 57 update
2023-01-16 14:16:14 +00:00
thirdr
50b456d42f
Switched to built in module for ntp
2023-01-11 14:13:01 +00:00
Phil Howard
0709878cec
MicroPython: Bump ulab.
...
Bump up to the tip of master for the latest fixes.
Need to switch this to targeting a release when one's available with the mp_obj_type_t fix.
2023-01-11 12:25:28 +00:00
thirdr
e0d578bd07
Adjusted error message layout and wording
2023-01-11 09:49:31 +00:00
Phil Howard
828ff8453d
Inky: Switch to mip, add nptime.
2023-01-11 09:46:45 +00:00
Phil Howard
fb6fdcc115
MicroPython: Update GU to MP_DEFINE_CONST_OBJ_TYPE.
2023-01-11 09:46:45 +00:00
Phil Howard
9bf1583787
MicroPython: Change machine_hw_i2c_type to machine_i2c_type.
2023-01-11 09:46:45 +00:00
Phil Howard
ff5dc0078f
Enviro: Switch upip to mip, add ntptime.
2023-01-11 09:46:45 +00:00
Phil Howard
8b1bd814e5
MicroPython: Switch QRCode back to feature/micropython with fix.
2023-01-11 09:46:45 +00:00
Phil Howard
5f94ee7acc
CI: Bump ulab to latest commit.
2023-01-11 09:46:45 +00:00
Phil Howard
5b3f84ebf0
MicroPython: TEST: Switch QRCode to fixed branch.
2023-01-11 09:46:45 +00:00
Phil Howard
77a5edc83f
MicroPython: Update to support new slots mp_obj_type_t.
...
Follows the lead from: 662b9761b3
Update to support MP_DEFINE_CONST_OBJ_TYPE with backwards compatibility.
2023-01-11 09:46:45 +00:00
Phil Howard
a29ce1e180
MicroPython: Rewrite Enviro manifest.py to new style.
2023-01-11 09:46:45 +00:00
Phil Howard
a612e66779
MicroPython: Use MPY_LIB_DIR unconditionally.
...
We can always rely on the micropython-lib dir (now a submodule) being present.
See: da7f2537a1
2023-01-11 09:46:45 +00:00
Hel Gibbons
80c93e7067
add link
2023-01-10 16:19:55 +00:00
Hel Gibbons
45014853e6
update example to match docs
2023-01-10 14:29:02 +00:00
Hel Gibbons
1e1d8bf4f5
Fix bme68x configure
2023-01-09 15:07:06 +00:00
thirdr
97f2232e07
changed title colours
2023-01-05 14:56:16 +00:00
thirdr
14af0fd646
changed default news feed
2023-01-05 14:51:39 +00:00
thirdr
3a2e212e36
Updated with Inky Frame 5.7 support
2023-01-05 13:27:47 +00:00
ZodiusInfuser
b4d1c42669
Fixed typo with inventor examples
2023-01-05 12:01:59 +00:00
thirdr
f4ab44489c
increased delay for USB init
2022-12-21 12:07:23 +00:00
thirdr
1c03a48e19
fixed incorrect capitalisation
2022-12-20 19:37:22 +00:00
ZodiusInfuser
4c0a34769d
Added LED for when app draws, and delay at start to fix USB issue
2022-12-20 19:37:22 +00:00
thirdr
417f5d9210
centred text
2022-12-20 19:37:22 +00:00
thirdr
192625956b
linting fix
2022-12-20 19:37:22 +00:00
thirdr
e2e4687f0c
added LED indicator for display refresh on launcher
2022-12-20 19:37:22 +00:00
thirdr
daf2770d28
updated button LEDs
2022-12-20 19:37:22 +00:00
thirdr
16e8e0bcd4
added instructions to launcher
2022-12-20 19:37:22 +00:00
thirdr
da52a1ab92
Changed button combo for esc to launcher
2022-12-20 19:37:22 +00:00
thirdr
a11d2b6fc0
added colour and layout changes to the launcher
2022-12-20 19:37:22 +00:00
thirdr
5a89f5be97
sensible update intervals
2022-12-20 19:37:22 +00:00
thirdr
3a3b82889d
udpated error msg
2022-12-20 19:37:22 +00:00
thirdr
be39aafd2d
fixed a typo
2022-12-20 19:37:22 +00:00
ZodiusInfuser
4273e9743e
Linting fix
2022-12-20 19:37:22 +00:00
thirdr
1c88dcca40
consistent error messages across apps
2022-12-20 19:37:22 +00:00
thirdr
3749f19756
changed esc to launcher key combo
2022-12-20 19:37:22 +00:00
thirdr
db4473ff5e
adjusted grid layout
2022-12-20 19:37:22 +00:00
thirdr
227317f4fb
added UPDATE_INTERVAL
2022-12-20 19:37:22 +00:00
ZodiusInfuser
3bf10632c2
Upload of inkylauncher example
2022-12-20 19:37:22 +00:00
ZodiusInfuser
944830f616
Inky Frame: Enable Wakeup RTC, don't meddle with SR config.
2022-12-20 13:54:14 +00:00
Phil Howard
940b31bab1
Inky Frame: Add LED on/off methods to SR button class.
2022-12-20 13:46:02 +00:00
Phil Howard
e5bfe76970
Inky Frame: Return latched SR state in read() regardless of debounce.
2022-12-20 13:46:02 +00:00
Phil Howard
2ea5de97df
Inky Frame: reset latched SR state after read.
2022-12-20 13:46:02 +00:00
Phil Howard
5251baf764
Wakeup: Add method to reset latched SR state.
2022-12-20 13:46:02 +00:00
Phil Howard
f1e9e00cd5
Inky Frame: Add wakeup SR to lib, fix wakeup bug.
2022-12-20 13:46:02 +00:00
Phil Howard
ba100ae069
Wakeup: Disable RTC & enable SR for Inky, always include shift function.
...
Due to quirks with how QSTRs are passed, conditionally including a function is difficult.
Instead, always include "get_shift_state" but throw a RuntimeError if its use is invalid (no shift register).
2022-12-20 13:46:02 +00:00
ZodiusInfuser
05d26aeecb
Wakeup: Add shift register support.
2022-12-20 13:46:02 +00:00
ZodiusInfuser
43ef76b945
CI: Add build for Inky Frame.
2022-12-20 13:46:02 +00:00
Philip Howard
fe55d9beef
Merge pull request #569 from pimoroni/patch-inky-frame-buttons
...
MicroPython: Create inky_frame module for buttons.
2022-12-16 22:05:20 +00:00
Philip Howard
5a2a62b471
Merge pull request #602 from housten/patch-1
...
Correct badge picture dimensions
2022-12-16 21:04:13 +00:00
Philip Howard
930784df08
Merge pull request #600 from pimoroni/patch-jpegdec-rgb888
...
JPEGDEC/PicoGraphics: Add support for RGB888 target.
2022-12-16 20:53:55 +00:00
Gee Bartlett
104c819412
Hub75: Update to use Picographics ( #601 )
...
* have a basic pg working needs optimizing
* working well ported some examples from GU
* started on micropython module
* Fixes to get new Hub75 compiling in MP
* stripped down for faster compilling
* Update hub75.cmake
* added hub75 to galatic and eviro as it is needed for picographics
* Update picographics.c
* added hu75 update
* added _ModPicoGraphics_obj_t
* Update hub75.cpp
* update bindings
* some examples needs linting
* added other panel sizes and linted
* Update picographics.cpp
* Update picographics.c
* fixing gc memory allocation
* Update hub75.cpp
* Update interstate75_balls_demo.cpp
* review
* broke
* working with built in panel defs
* still borked
* not much change needs review
* Update hub75.cpp
* reverted alot of things
* adding i75 lib
* lots of updates ready to test compile mp
* Update picographics.h
* little tweaks
* an inability to count fixed!
* fixed some readme's
* lots of tiding
* fixed linting and removed experimental code
* Minor formatting
* Minor formatting and cmake tidy
* Removed unneeded parts of examples
* Final tidy
* tidy examples and adding more
* updated to new library
* documentation tweaks
* fixed inclusion of interstate75 module
* syncing some stuff
* fixed linting
Co-authored-by: ZodiusInfuser <christopher.parrott2@gmail.com>
2022-12-16 20:53:16 +00:00
Phil Howard
13414b5037
JPEGDEC: Clip drawing to iWidthUsed.
...
Corrects clipping width using new iWidthUsed value, noticable particularly on smaller jpegs and those that aren't a multiple of the MCU sized.
Fixes #573
2022-12-14 18:42:03 +00:00
housten
28b53f174e
Correct badge picture dimensions
...
Using 108 resulted in a 'smeared' image because the image width is wrong for the result.
Check the [getting started guide](https://learn.pimoroni.com/article/getting-started-with-badger-2040 ) where it says 104x128 for badge picture
2022-12-14 17:35:15 +01:00
Phil Howard
241e725464
JPEGDEC: Sync with upstream.
...
Adds setUserPointer and pDraw->pUser which we now use to store a pointer to the PicoGraphics instance.
2022-12-13 14:21:57 +00:00
Phil Howard
e0a1627fba
JPEGDEC/PicoGraphics: Add support for RGB888 target.
...
Fixes https://github.com/pimoroni/pimoroni-pico/issues/573
2022-12-13 14:03:30 +00:00
Hel Gibbons
d5e1a2d8a0
make sure socket is closed
2022-12-13 13:52:51 +00:00
Hel Gibbons
50b8e2ef90
Use http instead of https to avoid memory errors
2022-12-13 12:50:13 +00:00
helgibbons
a62c3f0e20
update readme
2022-12-01 17:49:53 +00:00
helgibbons
95252f2de5
update readme
2022-12-01 17:46:48 +00:00
helgibbons
7ac2a285d8
fix typo
2022-12-01 17:11:44 +00:00
helgibbons
7555ac97fd
linting
2022-11-29 18:22:53 +00:00
helgibbons
3b0317b118
update readme
2022-11-29 18:18:33 +00:00
helgibbons
963702a6e5
add pulse example
2022-11-29 18:11:42 +00:00
helgibbons
d612f4b4dc
add festive examples
2022-11-29 18:08:15 +00:00
helgibbons
be76ec01af
add readme links
2022-11-23 16:20:58 +00:00
helgibbons
96aa82fcb1
improve maths
2022-11-22 11:54:39 +00:00
Gee Bartlett
7b127d5f19
Driver/st7567 ( #581 )
...
Add ST7567/Pico GFX examples
2022-11-18 14:30:22 +00:00
Hel Gibbons
62303b6912
Merge pull request #577 from ahpook/led-pulse
...
Badger2040: Make the LED example pulse instead of strobe
2022-11-18 09:23:13 +00:00
Eric Sorenson
2b7a77e110
Badger2040: Make the LED example pulse instead of strobe
...
This makes a slightly nicer example as the LED goes gently
from off to on and back down again instead of strobing.
2022-11-17 10:47:31 -08:00
Hel Gibbons
4b3d39bf44
Merge pull request #568 from pimoroni/hel-gfx-pack
...
GFX pack examples and docs tweaks
2022-11-16 16:13:15 +00:00
helgibbons
6eb62b1a67
fix I2C constants
2022-11-16 14:12:12 +00:00
helgibbons
660fcea744
add community links
2022-11-15 14:26:57 +00:00
Hel Gibbons
40945c4cee
correct i2c constants
2022-11-14 13:01:33 +00:00
Phil Howard
36401e174e
MicroPython: Create inky_frame module for buttons.
2022-11-09 13:34:30 +00:00
helgibbons
e3496efda0
a few doc fixes
2022-11-09 13:16:29 +00:00
helgibbons
59ed91c755
add GFX Pack examples readme
2022-11-09 13:02:28 +00:00
helgibbons
ff2bb4f026
fix typo in inventor example
2022-11-09 10:20:53 +00:00
helgibbons
4f8eb8fd20
linting co2 example
2022-11-09 09:37:21 +00:00
John McCabe
e2d330e9c9
Fix typo galactic_unicorn feature_test_with_audio.py
...
Fixes a minor typo, SWITCH_BRIGHTNESS_DOWN text should be Lower not Power.
2022-11-09 00:23:04 +00:00
helgibbons
22774b88c7
add co2 example
2022-11-08 19:38:03 +00:00
helgibbons
78baea7ef5
add button example
2022-11-08 14:20:32 +00:00
ZodiusInfuser
f1d9ec7c61
Merge branch 'main' into driver/st7567
2022-11-08 11:17:24 +00:00
ZodiusInfuser
23f56f05e4
Minor readme tweaks
2022-11-08 11:10:51 +00:00
ZodiusInfuser
91a2e7f5fb
Fixed typos
2022-11-07 16:11:05 +00:00
Hel Gibbons
31ecfef156
Merge branch 'driver/st7567' of https://github.com/pimoroni/pimoroni-pico into driver/st7567
2022-11-07 15:38:52 +00:00
Hel Gibbons
98e29e07fb
add dancing
2022-11-07 15:38:44 +00:00
Gee Bartlett
cf88add1ad
Merge branch 'driver/st7567' of https://github.com/pimoroni/pimoroni-pico into driver/st7567
2022-11-07 14:23:43 +00:00
Gee Bartlett
7a458f32e4
Update gfx_pack.md
2022-11-07 14:23:20 +00:00
Hel Gibbons
065b55b6af
add rainbow example
2022-11-07 14:20:12 +00:00
Gee Bartlett
b3893d0052
couple of minor fixes
2022-11-07 13:43:53 +00:00
ZodiusInfuser
678b8d7cf9
Review of GfxPack code
2022-11-07 12:50:50 +00:00
Gee Bartlett
f3f260e176
finish docs and cmake gfx module
2022-11-04 17:23:30 +00:00
ZodiusInfuser
64b1a8c2d5
Additions to PicoGraphics readme for GU
2022-11-04 11:27:56 +00:00
ZodiusInfuser
408d105e8b
Link fixes
2022-11-04 11:13:57 +00:00
ZodiusInfuser
3765d43ce0
Link fixes
2022-11-04 11:12:20 +00:00
ZodiusInfuser
c247770f48
Updated example descriptions
2022-11-04 10:57:53 +00:00
ZodiusInfuser
d11c73d45e
Updated GU readme
2022-11-04 10:57:37 +00:00
Gee Bartlett
61a80ce66e
fixed some linting errors
2022-11-04 10:28:26 +00:00
Gee Bartlett
eef9334805
gxf module and examples done
2022-11-04 10:21:27 +00:00
Gee Bartlett
78101c47b5
linting demo
2022-11-03 17:33:58 +00:00
Hel Gibbons
c2b695f7e9
remove unused variable
2022-11-03 16:44:36 +00:00
Hel Gibbons
4319570960
update function reference
2022-11-03 15:57:59 +00:00
Hel Gibbons
0e80e1d96a
update examples readme
2022-11-03 15:48:21 +00:00
Hel Gibbons
6d98cec7de
update examples readme
2022-11-03 15:44:43 +00:00
Hel Gibbons
080da22b5f
update readme
2022-11-03 15:42:45 +00:00
Hel Gibbons
91505c2976
update examples readme
2022-11-03 15:31:21 +00:00
Hel Gibbons
c599ae4941
update examples readme
2022-11-03 15:20:28 +00:00
Hel Gibbons
0f5e96495c
add cheerlights history example
2022-11-03 14:16:05 +00:00
Gee Bartlett
9085c48a62
mp working
2022-11-03 13:30:07 +00:00
helgibbons
347cd19ab9
update GU readmes
2022-11-02 16:58:18 +00:00
helgibbons
689326ac55
update function reference
2022-11-02 14:56:08 +00:00
helgibbons
cac74a94bb
update function reference
2022-11-02 13:47:41 +00:00
helgibbons
79a2349fac
update micropython function reference
2022-11-02 13:45:14 +00:00
helgibbons
738531ebcf
add micropython function reference
2022-11-02 12:51:45 +00:00
Brian Corteil
4082d99186
Update cheer-lights.py
...
corrected formatting,
2022-11-01 20:19:12 +00:00
Brian Corteil
263c61c21a
Update secrets.py
...
Add new line to line 2
2022-10-31 20:00:20 +00:00
Mike Bell
f76019f31c
Add time synchronization from NTP to GU clock example
2022-10-29 13:02:42 +01:00
ZodiusInfuser
f74261474e
Added scroll example and improved clock
2022-10-28 14:33:01 +01:00
ZodiusInfuser
7ee40260c9
Added a basic clock example that uses the Pico's RTC
2022-10-28 13:29:20 +01:00
ZodiusInfuser
5a7939e95d
Improvements to GU launcher
2022-10-27 13:18:51 +01:00
ZodiusInfuser
efba56b8b2
Linting fixes for Galactic
2022-10-27 13:16:39 +01:00
ZodiusInfuser
6e8f2d8a27
Linting fixes for Galactic
2022-10-27 13:11:36 +01:00
ZodiusInfuser
00d7b99589
Added launch software and tweaked other GU examples
2022-10-27 12:51:59 +01:00
Hel Gibbons
152af1f72f
Update README.md
2022-10-26 16:20:37 +01:00
Hel Gibbons
4e23ade374
Update README.md
2022-10-26 16:10:40 +01:00
Hel Gibbons
9bfa4b70b6
make function reference consistent
2022-10-26 15:53:50 +01:00
Brian Corteil
c41b2b2109
secrets.py file added
...
change name and password to match your network in secrets.py
2022-10-26 00:31:12 +01:00
Brian Corteil
b035a1f007
Create cheer-lights.py
...
CheerLights MicroPython client. You will need the secrets file with your network details, in the same folder as cheerlights.py to run on start rename cheerlights.py to main.py
2022-10-26 00:09:29 +01:00
Hel Gibbons
d9587f06fa
Update README.md
2022-10-25 14:25:55 +01:00
Hel Gibbons
f678687735
Update README.md
2022-10-25 14:23:35 +01:00
Hel Gibbons
bafceb110a
Update Pico Unicorn readme
2022-10-24 12:53:58 +01:00
Hel Gibbons
11a7be85a9
Merge pull request #538 from pimoroni/hel-plasma-rgb
...
change default colour order
2022-10-19 16:45:48 +01:00
Hel Gibbons
b1f6b00997
change default colour order
2022-10-19 16:31:36 +01:00
Philip Howard
e928129d59
Merge pull request #537 from pimoroni/feature/galactic_unicorn
...
Galactic Unicorn
2022-10-19 14:08:20 +01:00
Philip Howard
3405130820
Merge pull request #536 from pimoroni/hel-plasma
...
Plasma Stick examples
2022-10-19 10:51:27 +01:00
helgibbons
f43293adf4
linting
2022-10-18 15:53:20 +01:00
helgibbons
490d21f7e0
seems ok without gc.collect()
2022-10-18 15:49:59 +01:00
helgibbons
8f2837d930
add a bit of onboard led flashage
2022-10-18 15:17:10 +01:00
helgibbons
ce76ff5ea3
update docs
2022-10-18 14:25:02 +01:00
ZodiusInfuser
a7dd4b3baf
Updated MP examples with plasma_stick defs
2022-10-18 13:13:57 +01:00
Phil Howard
d736342578
Galactic Unicorn: Paint app.
2022-10-17 16:06:28 +01:00
helgibbons
5d45f9aa06
add error handling
2022-10-13 19:01:02 +01:00
helgibbons
e986832414
add spooky rainbows for @guru
2022-10-13 18:15:35 +01:00
Phil Howard
70b7d3065d
Galactic Unicorn: Add dedicated firmware build.
2022-10-13 14:53:22 +01:00
Phil Howard
a41715a377
PicoGraphics: Include RGB888 pen type for MicroPython.
2022-10-13 14:02:36 +01:00
Phil Howard
1357cb876d
Galactic Unicorn: Fix audio test linting.
2022-10-13 13:47:25 +01:00
ZodiusInfuser
df79caf34e
Exposed remaining AudioChannel parameters
2022-10-13 13:28:59 +01:00
ZodiusInfuser
8e8299a80b
Linting
2022-10-13 13:27:58 +01:00
ZodiusInfuser
53dfb9866d
Started splitting out synth into separate channel objects
2022-10-13 13:26:57 +01:00
ZodiusInfuser
882f76dcbc
More work on GU synth
2022-10-13 13:26:57 +01:00
ZodiusInfuser
deec835692
First addition of synth to GU
2022-10-13 13:26:57 +01:00
ZodiusInfuser
12ea527f44
Audio performance improvements and bugfixes
2022-10-13 13:26:57 +01:00
ZodiusInfuser
f809db6434
Added play_tone support to GU C++ and MP
2022-10-13 13:26:57 +01:00
ZodiusInfuser
e08ddd9837
Exposed audio to MP, and made it teardown cleanly
2022-10-13 13:26:57 +01:00
ZodiusInfuser
b2e4e16fab
Cleanup of GU and fix for flashes on MP soft reset
2022-10-13 13:26:57 +01:00
ZodiusInfuser
fbc6737f1e
Finished feature_test.py
2022-10-13 13:26:57 +01:00
ZodiusInfuser
b35ed5d5ba
Moved MP examples over to PicoGraphics
2022-10-13 13:26:57 +01:00
ZodiusInfuser
c8b5ffff8c
More MP examples for GU
2022-10-13 13:26:57 +01:00
ZodiusInfuser
2283e73368
Fix for native comments raising linting errors
2022-10-13 13:26:57 +01:00
ZodiusInfuser
34a1a54cd1
Added nostalgia prompt example, and fixed linting
2022-10-13 13:26:57 +01:00
ZodiusInfuser
82b5110691
Fixed colour order and added working MP examples
2022-10-13 13:26:57 +01:00
ZodiusInfuser
7fd175abc5
Galactic Unicorn: More MicroPython bringup.
2022-10-13 13:26:41 +01:00
ZodiusInfuser
a25699c73d
Initial setup og GU Micropython
2022-10-13 13:25:26 +01:00
helgibbons
d7f85c1160
tweak readme
2022-10-12 18:38:14 +01:00
helgibbons
8b19a9b314
linting
2022-10-12 18:32:45 +01:00
helgibbons
76c6e36e59
tweak readme
2022-10-12 18:32:00 +01:00
helgibbons
6e93e4d5bf
add readme
2022-10-12 18:23:24 +01:00
helgibbons
bdc22af6e5
add fire example
2022-10-12 18:20:32 +01:00
helgibbons
7014bcb749
add sensor examples
2022-10-12 16:54:48 +01:00
helgibbons
db170a7b76
linting
2022-10-12 12:25:38 +01:00
helgibbons
2c71351ef7
add RV3028 function example
2022-10-12 12:21:13 +01:00
helgibbons
97abbb7af8
add spoooky mooon example
2022-10-12 12:06:41 +01:00
Hel Gibbons
b22c536dcc
add PIR example
2022-10-10 17:17:03 +01:00
Hel Gibbons
f6cd2839cc
Update weather.py
2022-10-10 15:17:25 +01:00
helgibbons
86b1cd40dc
Update readmes
2022-10-06 15:54:50 +01:00
helgibbons
262bd673ed
Add Automation 2040 W Mini init to examples
2022-10-06 15:54:16 +01:00
helgibbons
3fa620db10
Fix error in automation.py
2022-10-06 15:52:48 +01:00
Gee Bartlett
28b6698430
Automation 2040w MicroPython PWM ( #489 )
...
Co-authored-by: ZodiusInfuser <christopher.parrott2@gmail.com>
2022-10-06 12:27:46 +01:00
Philip Howard
8280a6a720
Merge pull request #491 from adriangalilea/main
...
Add adjust_to_sea_pressure function
2022-10-06 12:13:24 +01:00