1/*
2 * Copyright 2023 Google LLC
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&gpio0 {
8	ngpios = <2>;
9};
10
11/ {
12	buttons: gpio-keys0 {
13		compatible = "gpio-keys";
14		debounce-interval-ms = <30>;
15
16		voldown_button: button_0 {
17			gpios = <&gpio0 0 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
18			zephyr,code = <10>;
19		};
20		volup_button: button_1 {
21			gpios = <&gpio0 1 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
22			zephyr,code = <11>;
23		};
24	};
25};
26