circuitpython-org/_board/bpi_bit_s2.md
Jeff Epler 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

2.3 KiB

layout board_id title name manufacturer board_url board_image date_added family bootloader_id features
download bpi_bit_s2 BPI-Bit-S2 Download BPI-Bit-S2 Banana Pi
https://wiki.banana-pi.org/BPI-Bit-S2
bpi_bit_s2.jpg 2022-09-14 esp32s2 bpi_bit_s2
USB-C
Wi-Fi
Solder-Free Alligator Clip
Speaker

The BPI-Bit-S2 is a development board equipped ESP32-S2 chip, with 5x5 RGB LED matrix, 1 buzzer, 2 photosensitive sensors, 1 thermosensitive sensor, provides Wi-Fi functions via PCB antenna.

And, the board uses the same edge connector as the micro:bit or micro:bit v2, which makes it possible to connect the alligator clip, or the breakout boards in most micro:bit kits.

Features:

  • ESP32-S2N4R2: Xtensa® single-core 32-bit LX7 microprocessor, up to 240 MHz; 2.4G Wi-Fi; RISC-V Ultra Low Power Co-processor; 2 MB PSRAM and 4MB FLASH are integrated in the package, so don't worry too much about using massive buffers, it's basically sufficient.
  • Native USB Port: ESP32-S2 full-speed USB OTG interface, using Type-C USB Connector with back-feed protection. The interface is used for power supply to the board, download firmware or programs to the chip.
  • 5x5 RGB LED matrix: 25 WS2812 Lamp beads, addressable, driven by GPIO18.
  • GPIO0 LED: It lights up by default and acts as a power indicator, controlled by GPIO0.
  • Buzzer: 8.5mm buzzer, controlled by GPIO17.
  • Photosensitive Sensors: On the upper front of the board, there is one on each side, read their analog values through GPIO12 and GPIO13.
  • Thermosensitive Sensor: Directly above pin 2, read its analog values through GPIO14.
  • A/B Button: A controlled by GPIO38, B controlled by GPIO33.
  • Reset Button
  • Boot Button: It is a button that controls boot mode only at startup, and can be used as a normal button at other times. Holding down Boot and then pressing Reset initiates Firmware Download mode for downloading firmware through the USB port;If UF2 Bootloader already exists, press Reset once and press Boot once within a second to enter the bootloader.
  • 5V to 3.3V DC/DC: Maximum theoretical output 2A 3.3V.
  • Edge Connector: Same as the micro:bit, support for alligator clips or the breakout boards in most most micro:bit kits.