circuitpython-org/_board/hardkernel_odroid_go.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

1.8 KiB
Raw Blame History

layout board_id title name manufacturer board_url board_image date_added family downloads_display features
download hardkernel_odroid_go ODROID Go Download ODROID Go HardKernel
https://www.hardkernel.com/shop/odroid-go/
hardkernel_odroid_go.jpg 2022-08-22 esp32 true
Battery Charging
Bluetooth/BTLE
Wi-Fi
Display

The original ODROID Go has been discontinued

To celebrate ODROIDs 10th anniversary, we present the ODROID-GO Game Kit! It includes a special anniversary board with all the parts to put together your own game kit and see the workings behind such a device. It is not only a fun assembly project but also an educational tool to learn about all the hardware and software that goes into building such a device.

Assembly and learning WHY Have fun building your own handheld game kit while learning about the internal functions of each part and its purpose. Learn how each button is attached to a PCB switch pad, what materials are used, and how to put it all together to create a button control pad to play games! Learn how to connect power, speakers and how to download and install an OS. Learn why certain pieces are made of particular materials and why you need certain connectors. Since the device is clear, all the internal components and all the lights are visible.

PLAY GAMES Once you have assembled the ODROID-GO, you can download and install games. Enjoy your gaming device (that you built)!

CODING CAMP Install Arduino and learn some basic coding. We will provide online guides to code some simple, yet cool, tasks. Then, add a weather station*, learn how to check the battery life, test the speaker, add an ultrasonic distance meter* and more. * Parts sold separately.

Learn More