Skip to content

Commit

Permalink
Bump version, fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
KuabeM committed Sep 9, 2024
1 parent f8fec13 commit a4ac617
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lcd-lcm1602-i2c"
version = "0.2.0"
version = "0.3.0"
authors = ["Korbinian Maier <[email protected]>"]
edition = "2018"
description = "I2C driver for LM1602 LCD displays."
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ pub enum Font {

#[repr(u8)]
#[derive(Copy, Clone)]
enum CursorMoveDir {
pub enum CursorMoveDir {
Right = 0x00,
Left = 0x02,
}

#[repr(u8)]
#[derive(Copy, Clone)]
enum DisplayShift {
pub enum DisplayShift {
Decrement = 0x00,
Increment = 0x01,
}

0 comments on commit a4ac617

Please sign in to comment.