circuitpython-org/_blinka/beaglebone_green_wireless.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.1 KiB

layout board_id title name manufacturer board_url board_image downloads_display blinka date_added features
download beaglebone_green_wireless BeagleBone Green Wireless Download BeagleBone Green Wireless SeeedStudio
https://beagleboard.org/green-wireless
beaglebone_green_wireless.jpg true true 2019-12-03
Wi-Fi

SeeedStudio BeagleBone Green Wireless (BBGW) is a joint effort by BeagleBoard.org and Seeed Studio. It is based on the open-source hardware design of BeagleBone Black and developed into this differentiated version. SeeedStudio BeagleBone Green Wireless has included a high-performance flexible WiFi/Bluetooth interface and two Grove connectors, making it easier to connect to the large family of Grove sensors. The on-board HDMI and Ethernet are removed to make room for these wireless features and Grove connectors.

  • Processor: Sitara AM3358BZCZ100 1GHz, 2000 MIPS
  • Graphics Engine: SGX530 3D, 20M Polygons/S
  • SDRAM Memory: 512MB DDR3L 606MHZ
  • Onboard Flash: 4GB, 8bit Embedded MMC
  • PMIC: TPS65217C PMIC regulator and one additional LDO.
  • Debug Support: Optional Onboard 20-pin CTI JTAG, Serial Header
  • Power Source: miniUSB USB or DC Jack, 5VDC External Via Expansion Header
  • PCB: 86.44mm x 54.54mm / 3.4” x 2.15” 6 layers
  • 88.98mm x 54.54mm x 15.41mm / 3.5" x 2.15" x 0.6"
  • Indicators 1-Power, 2-Ethernet, 4-User Controllable LEDs
  • 4x USB2.0 host
  • Serial Port UART0 access via 6 pin 3.3V TTL Header. Header is populated
  • Wi-Fi 802.11b/g/n 2.4GHz and Bluetooth 4.1 LE
  • SD/MMC Connector microSD , 3.3V
  • User Input: Reset Button, Boot Button, Power Button
  • Video Out: 16b HDMI, 1280x1024 (MAX), 1024x768,1280x720,1440x900 w/EDID Support
  • Audio Via HDMI Interface, Stereo
  • Expansion Connectors:
  • Power 5V, 3.3V , VDD_ADC(1.8V)
  • 3.3V I/O on all signals
  • McASP0, SPI1, I2C, GPIO(65), LCD, GPMC, MMC1, MMC2, 7 AIN(1.8V MAX), 4 Timers, 3 Serial Ports, CAN0, EHRPWM(0,2),XDMA Interrupt, Power button, Expansion Board ID (Up to 4 can be stacked)
  • Weight 40.55g / 1.43oz

Purchase