From ab65e88a879bf1f39be587187984825a0763499d Mon Sep 17 00:00:00 2001 From: Neradoc Date: Thu, 30 Sep 2021 19:18:11 +0200 Subject: [PATCH] add board_id to the board module documentation --- shared-bindings/board/__init__.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/shared-bindings/board/__init__.c b/shared-bindings/board/__init__.c index 3951639c04..128988775f 100644 --- a/shared-bindings/board/__init__.c +++ b/shared-bindings/board/__init__.c @@ -43,6 +43,12 @@ //| .. warning:: The board module varies by board. The APIs documented here may or may not be //| available on a specific board.""" +//| board_id: str +//| """Board ID string. The unique identifier for the board model in +//| circuitpython, as well as on circuitpython.org. +//| Example: "hallowing_m0_express".""" +//| + //| def I2C() -> busio.I2C: //| """Returns the `busio.I2C` object for the board designated SDA and SCL pins. It is a singleton.""" //| ...