Add descriptions to all RP2040 examples. Some need hardware that was not specified.

This commit is contained in:
Henrik Berg
2023-07-13 11:16:11 +02:00
parent d979841f17
commit 588c0479f5
33 changed files with 122 additions and 5 deletions

View File

@ -1,3 +1,8 @@
//! This example shows how to communicate asynchronous using i2c with external chips.
//!
//! Example written for the [`MCP23017 16-Bit I2C I/O Expander with Serial Interface`] chip.
//! (https://www.microchip.com/en-us/product/mcp23017)
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]