13 lines
356 B
C
13 lines
356 B
C
// This file is part of the CircuitPython project: https://circuitpython.org
|
|
//
|
|
// SPDX-FileCopyrightText: Copyright (c) 2020 Dan Halbert for Adafruit Industries
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "shared-bindings/microcontroller/Pin.h"
|
|
|
|
void board_reset_user_neopixels(const mcu_pin_obj_t *pin, size_t count);
|