zephyr/samples/sensor/max17262/app.overlay
Kumar Gala 88021ecd47 samples: sensors: Remove label property from devicetree overlays
Label properties are not required

Signed-off-by: Kumar Gala <galak@kernel.org>
2022-07-19 08:23:35 -05:00

23 lines
407 B
Plaintext

/*
* Copyright (c) 2021 Matija Tudan
*
* SPDX-License-Identifier: Apache-2.0
*/
&arduino_i2c {
status = "okay";
max17262@36 {
compatible = "maxim,max17262";
reg = <0x36>;
design-voltage = <3600>;
desired-voltage = <3600>;
desired-charging-current = <2000>;
design-cap = <17000>;
empty-voltage = <3300>;
recovery-voltage = <3880>;
charge-voltage = <3600>;
status = "okay";
};
};