Commit graph

14 commits

Author SHA1 Message Date
Melissa LeBlanc-Williams
bd29fedd1d Add missing boards up to CP 9.2.5 2025-03-20 16:01:48 -07:00
foamyguy
c2346ce01c split raspberrypi family to rp2040 and rp2350 2024-12-04 10:53:16 -06:00
foamyguy
260e6e1e3a adding more howto install links 2024-11-12 11:12:10 -06:00
foamyguy
847d803c23 adding Castellated Pads feature 2024-10-25 12:20:20 -05:00
4715875cc4 Fix board dates to always be of the form YYYY-MM-DD
.. leading zeros are required for `frontmatter` to treat them as dates
rather than strings, apparently per the YAML specification.

This was done by script:
```py
import re
import datetime
import pathlib
import sys

import frontmatter

rx = re.compile(r'^(\s*)date_added:.*$', re.M)

for path_str in sys.argv[1:]:
    print(path_str)
    path = pathlib.Path(path_str)

    post = frontmatter.load(path)
    date_added = post.get("date_added", "")

    if isinstance(date_added, datetime.date):
        continue

    if isinstance(date_added, str):
        try:
            date_added = datetime.datetime.strptime(date_added, "%Y-%m-%d")
        except ValueError as exc:
            print(f"Failed to parse date {date_added} in {path_str}: {exc}")
            continue

    date_added = date_added.date()
    content = path.read_text("utf-8")
    new_content = rx.sub(lambda m: f"{m.group(1)}date_added: {date_added}", content)
    assert content != new_content

    path.write_text(new_content, "utf-8")
```
2024-03-22 11:31:45 -05:00
Melissa LeBlanc-Williams
f4099d033a Refactor board_url to be a list and add many missing product links 2023-12-08 11:02:28 -08:00
DeadSix27
80e9fc9b3f
pico_w: update the documentation link
The old one is gone so we link to the overall pico(w) documentation page
2023-12-01 14:52:14 +01:00
Dan Halbert
f5b742213b Don't promise BLE for Pico W
BLE support on Pico W is not currently actively being worked on. Remove "coming soon" language and remove BLE as a feature. See https://github.com/adafruit/circuitpython/issues/7693.
2023-09-21 10:52:10 -04:00
Melissa LeBlanc-Williams
a2496dd8d8
Merge pull request #1088 from makermelissa/keywords
Added tags and module search feature
2022-11-14 14:23:24 -08:00
Melissa LeBlanc-Williams
8eb2b42dd4 Remove duplicate paragraph 2022-11-07 08:14:00 -08:00
Melissa LeBlanc-Williams
4f13029745 revert section on wifi 2022-11-07 07:51:18 -08:00
Melissa LeBlanc-Williams
b1bf5c3be4 Added tags and module search feature 2022-11-02 11:58:13 -07:00
Melissa LeBlanc-Williams
65477b76eb Updated Pico W features and description 2022-11-02 10:23:59 -07:00
Bill Sideris
6b9f1e0316
add picow doc 2022-10-02 10:13:57 +03:00