circuitpython/shared-module/keypad/Event.h
2024-05-19 20:40:44 -04:00

16 lines
363 B
C

// This file is part of the CircuitPython project: https://circuitpython.org
//
// SPDX-FileCopyrightText: Copyright (c) 2021 Dan Halbert for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#pragma once
#include "py/obj.h"
typedef struct {
mp_obj_base_t base;
uint16_t key_number;
bool pressed;
mp_obj_t timestamp;
} keypad_event_obj_t;