12 lines
363 B
C
12 lines
363 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 "shared-module/_bleio/Attribute.h"
|
|
#include "shared-bindings/_bleio/UUID.h"
|
|
|
|
bleio_uuid_obj_t *bleio_attribute_get_uuid(mp_obj_t *attribute);
|