Philip Howard
7776536d83
Merge pull request #126 from pimoroni/pico-wireless
...
C++/MicroPython Support & Examples for Pico Wireless
2021-04-22 13:40:59 +01:00
ZodiusInfuser
a406bb5e11
Added final missing functions from wifi api
2021-04-20 12:05:29 +01:00
ZodiusInfuser
c1d9af3628
Removed old esp32spi MP code
2021-04-19 17:19:20 +01:00
ZodiusInfuser
15ccd8f001
Added digital_read and analog_read functions
2021-04-19 16:44:11 +01:00
Philip Howard
eee38968a5
Merge pull request #123 from helgibbons/main
...
Add Pico Lipo SHIM example
2021-04-16 15:54:26 +01:00
helgibbons
f7977dc17c
Linting battery.py
2021-04-16 10:09:40 +01:00
Phil Howard
6167589812
Add Pico Wireless Python examples
2021-04-15 12:02:18 +01:00
Phil Howard
c748437d60
Make set_dns more idiomatic of Python
...
Now accepts either one or two DNS servers and uses n_args to figure out how many you supplied and pass it on.
2021-04-15 10:11:16 +01:00
Phil Howard
d3829e73a8
Use tuples for IP address
...
Passing interchangably as int/bytes was weird, and due to Python's signedness on int resulted in a heck of a bug-hunt.
I've switched IP address to converting from/to a tuple internally, so Python code doesn't have to be weird.
2021-04-15 10:11:16 +01:00
Phil Howard
9e2f0ebf09
Fix get_data_buf to request *some* data
...
Uses an arbitrarily sized, dynamically alloc'd buffer. This should *probably* do the legwork to get the whole buffer and give it to Python without needing multiple calls.
2021-04-15 10:11:16 +01:00
ZodiusInfuser
6ac8ea1db0
Added set_led and is_pressed functions to PicoWireless MP
2021-04-15 10:11:16 +01:00
ZodiusInfuser
72aee2d202
Fix for string object not being identified correctly
2021-04-15 10:11:16 +01:00
ZodiusInfuser
47bfada0d9
Fixes for picowireless not showing in Micropython
2021-04-15 10:11:16 +01:00
ZodiusInfuser
971ac565dd
Finished micropython bindings for current C++ class implementation
2021-04-15 10:11:16 +01:00
ZodiusInfuser
d1b3e4d768
Added partial micropython bindings for C++ class implementation
2021-04-15 10:11:16 +01:00
ZodiusInfuser
e5545c1c02
Added latest local code for wireless pack
2021-04-15 10:11:16 +01:00
Phil Howard
47be7e5f31
Add Python linting
2021-04-15 09:36:38 +01:00
helgibbons
7245d3c47e
Add Pico Lipo SHIM example
2021-04-12 17:22:42 +01:00
DiddyWolf
d7955e9653
Fix picokeypad.clear()
...
Using release 0.1.1 of pimoroni-pico-micropython, the picokeypad.clear() function does not seem to work. Looking through the code, it appears that clear is actually calling init instead.
2021-04-04 10:44:24 -05:00
ZodiusInfuser
787ba585b2
Fix for MicroPython hard lock when passing in non-string object to text function
2021-03-30 18:07:43 +01:00
Phil Howard
b2006878d3
Fix include paths in MicroPython modules
...
The ../../../pimoroni-pico path was selecting the "pimoroni-pico" directory adjacent my "micropython" directory
However I was attempting to build against one in a different parent directory.
This resulted in the MicroPython modules including the wrong (old) header and exploding.
2021-03-30 15:50:18 +01:00
ZodiusInfuser
848aa19c2c
Added micropython support and example for roundlcd breakout
2021-03-30 15:15:13 +01:00
Phil Howard
051013a1b3
Improved thermometer demo colour range
...
* Display temp as 00.00 with floating point component
* Use the temp value to blend from a list of display colours
* Fixed slowdown bug when screen begins to scroll
2021-03-29 16:57:58 +01:00
Philip Howard
69c7183c47
Merge pull request #87 from slabua/main
...
Display thermo example Keep last 48 temperatures
2021-03-29 16:26:05 +01:00
Phil Howard
e2cc795e66
Bump ULAB to version with micropython.mk
2021-03-29 13:51:11 +01:00
Philip Howard
d88f659b29
Merge pull request #91 from helgibbons/main
...
Add MicroPython function reference for Pico Explorer
2021-03-29 13:47:00 +01:00
Phil Howard
4e8b2f6d1f
Drop defunct font_data.cpp from usermods
2021-03-29 13:33:48 +01:00
Philip Howard
1fb7dcd358
Merge pull request #103 from pimoroni/Pinkyatacme-disp_enhance
...
ST7789 refactor + round LCD support
2021-03-29 13:26:53 +01:00
dsssssssss9
5a7d053c62
Create balls_demo.py example ( #98 )
...
This is adapted from the demo.py in the examples/pico_display directory.
It now displays full screen on a Pico Explorer
2021-03-29 13:24:50 +01:00
David Tillotson
43d7e65ee0
Added display.flip to the Micropython code.
2021-03-29 13:18:31 +01:00
Phil Howard
2ebad4e735
Drop redundant -D
2021-03-23 13:00:01 +00:00
Phil Howard
a1125d6e2f
Rename usermod.cmake files to micropython.cmake
2021-03-23 12:43:40 +00:00
Philip Howard
9eab4c3934
Merge pull request #100 from pimoroni/patch-ulab-use-upstream
...
Switch to upstream ulab
2021-03-22 20:48:53 +00:00
Phil Howard
675106ece4
Patch or suppress warnings
...
The upstream MicroPython rp2 port has re-enabled -Werror so we need to either fix warnings or,
in the case of those generated by C++/C MicroPython binding weirdness, suppress them.
2021-03-22 20:43:23 +00:00
Phil Howard
2d4354a898
Switch to upstream ulab
2021-03-22 16:51:29 +00:00
helgibbons
c61937adba
Add MicroPython function reference for Pico Explorer
2021-03-12 11:03:16 +00:00
Phil Howard
d9a12f8509
Add ulab to included modules
...
This change submodules in our fork of ulab with an added usermod.cmake and adds it to the top-level usermod.cmake for our shipped modules.
It should - in theory - result in ulab being included in release builds.
2021-03-08 21:23:19 +00:00
Salvatore La Bua
13b94c59c4
Display thermo example Keep last 48 temperatures
2021-03-09 02:16:10 +09:00
Philip Howard
62b869474d
Merge pull request #69 from pimoroni/patch-bouncing-balls
...
Improved bouncing balls demo
2021-02-23 15:05:30 +00:00
Phil Howard
e17aa01f5d
Improved bouncing balls demo
...
Keep the bouncing balls in the court and gives balls a speed in proportion to their size. Created from code in #63
Co-authored-by: Mark Emery <mark@markemerylimited.co.uk>
2021-02-23 12:46:50 +00:00
helgibbons
5f1bc6b641
Tweaks to examples
2021-02-16 16:52:48 +00:00
helgibbons
5a6a5b42c1
Update buttons.py
2021-02-16 14:50:11 +00:00
helgibbons
5118339781
Add simple button example for Display and Explorer
2021-02-16 14:43:57 +00:00
helgibbons
8b96198604
add PWM audio example
2021-02-16 12:54:23 +00:00
helgibbons
29dd151923
add links to Display readme
2021-02-16 12:47:19 +00:00
helgibbons
fcfd679e56
fix error in Display readme
2021-02-15 09:24:08 +00:00
helgibbons
15569842e8
add Explorer examples
2021-02-14 18:24:01 +00:00
helgibbons
2f69d22c99
add some more examples
2021-02-14 14:42:51 +00:00
helgibbons
8ac176fe57
fix the example, minor edits
2021-02-14 14:15:51 +00:00
Philip Howard
7c87e0c65a
Merge pull request #47 from UnfinishedStuff/main
...
Added Pico Scroll documentation
2021-02-12 12:46:47 +00:00