// To get started, press Ctrl+Space to bring up the completion menu and view the available nodes. // You can also use the buttons in the sidebar to perform actions on nodes. // Actions currently available include: // * Enabling / disabling the node // * Adding the bus to a bus // * Removing the node // * Connecting ADC channels // For more help, browse the DeviceTree documentation at https://docs.zephyrproject.org/latest/guides/dts/index.html // You can also visit the nRF DeviceTree extension documentation at https://docs.nordicsemi.com/bundle/nrf-connect-vscode/page/guides/ncs_configure_app.html#devicetree-support-in-the-extension &i2c2 { status = "okay"; pinctrl-0 = <&i2c2_default>; pinctrl-1 = <&i2c2_sleep>; pinctrl-names = "default", "sleep"; /*mysensor: mysensor@77{ compatible = "i2c-device"; status = "okay"; reg = < 0x77 >; }; */ bme688@77 { compatible = "bosch,bme680"; reg = <0x77>; status = "okay"; }; }; &pinctrl { /omit-if-no-ref/ i2c2_default: i2c2_default { group1 { psels = , ; }; }; /omit-if-no-ref/ i2c2_sleep: i2c2_sleep { group1 { psels = , ; low-power-enable; }; }; };