15个版本
0.5.0 | 2023年8月30日 |
---|---|
0.4.0 | 2021年7月11日 |
0.3.4 | 2020年12月28日 |
0.3.3 | 2020年6月9日 |
0.1.1 | 2019年3月2日 |
#1979 在 嵌入式开发
每月40次下载
用于 klaptik
4MB
779 行
SH1106驱动程序
用100% Rust编写的SH1106 OLED显示器的I2C驱动程序
文档
[示例]
此crate使用probe-run
来运行示例。一旦设置完毕,应该像这样简单:cargo run --example <example name> --release
。某些示例需要--release
才能减少FLASH使用。
#![no_std]
#![no_main]
use cortex_m_rt::{entry, exception, ExceptionFrame};
use embedded_graphics::{
fonts::{Font6x8, Text},
pixelcolor::BinaryColor,
prelude::*,
style::TextStyle,
};
use panic_semihosting as _;
use sh1106::{prelude::*, Builder};
use stm32f1xx_hal::{
i2c::{BlockingI2c, DutyCycle, Mode},
prelude::*,
stm32,
};
#[entry]
fn main() -> ! {
let dp = stm32::Peripherals::take().unwrap();
let mut flash = dp.FLASH.constrain();
let mut rcc = dp.RCC.constrain();
let clocks = rcc.cfgr.freeze(&mut flash.acr);
let mut afio = dp.AFIO.constrain(&mut rcc.apb2);
let mut gpiob = dp.GPIOB.split(&mut rcc.apb2);
let scl = gpiob.pb8.into_alternate_open_drain(&mut gpiob.crh);
let sda = gpiob.pb9.into_alternate_open_drain(&mut gpiob.crh);
let i2c = BlockingI2c::i2c1(
dp.I2C1,
(scl, sda),
&mut afio.mapr,
Mode::Fast {
frequency: 100.khz().into(),
duty_cycle: DutyCycle::Ratio2to1,
},
clocks,
&mut rcc.apb1,
1000,
10,
1000,
1000,
);
let mut disp: GraphicsMode<_> = Builder::new().connect_i2c(i2c).into();
disp.init().unwrap();
disp.flush().unwrap();
Text::new("Hello world!", Point::zero())
.into_styled(TextStyle::new(Font6x8, BinaryColor::On))
.draw(&mut display)
.unwrap();
Text::new("Hello Rust!", Point::new(0, 16))
.into_styled(TextStyle::new(Font6x8, BinaryColor::On))
.draw(&mut display)
.unwrap();
disp.flush().unwrap();
loop {}
}
#[exception]
fn HardFault(ef: &ExceptionFrame) -> ! {
panic!("{:#?}", ef);
}
许可证
许可方式任选其一
- Apache License,版本2.0 (LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
由你选择。
贡献
除非你明确表示,否则根据Apache-2.0许可证定义,你有意提交给作品包括在内的任何贡献,应按上述方式双重许可,没有附加条款或条件。