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
 
  13 Dx_INPUT_TOGGLE = pin.D7
 
  15 # Special digital pins for pixels
 
  21 Ax_INPUT_RAND_INT = pin.A0
 
  22 Ax_INPUT_FIXED_INT_PI = pin.A1
 
  23 Ax_INPUT_WAVE_SINE = pin.A2
 
  24 Ax_INPUT_WAVE_SAW = pin.A3
 
  39 spiPorts = ((0, SCK, MOSI, MISO),)