1 # SPDX-FileCopyrightText: 2024 Brent Rubell for Adafruit Industries
3 # SPDX-License-Identifier: MIT
4 """Pin definitions for a generic, os-agnostic, board."""
5 from adafruit_blinka.microcontroller.generic_agnostic_board import pin
9 Dx_INPUT_FALSE = pin.D1
10 Dx_INPUT_TRUE_PULL_UP = pin.D2
11 Dx_INPUT_TRUE_PULL_DOWN = pin.D3
12 Dx_OUTPUT_TRUE = pin.D4
13 Dx_OUTPUT_FALSE = pin.D5
14 Dx_INPUT_TOGGLE = pin.D7
15 # Special "digital" pins
20 Ax_INPUT_RAND_INT = pin.A0
21 Ax_INPUT_FIXED_INT_PI = pin.A1
22 Ax_OUTPUT_WAVE_SINE = pin.A2
23 Ax_OUTPUT_WAVE_SAWTOOTH = pin.A3