Skip to content

Commit 7a3ed23

Browse files
committed
Removed extraneous pyb.I2C imports
1 parent 0650799 commit 7a3ed23

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

lcd/pyb_i2c_adafruit_lcd.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
This was tested with: https://www.adafruit.com/product/292"""
33

44
from lcd_api import LcdApi
5-
from pyb import I2C
65
from pyb import delay
76

87
# The MCP23008 has a jumper selectable address: 0x20 - 0x27

lcd/pyb_i2c_grove_rgb_lcd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Implements a SeeedStudio Grove RGB LCD JHD1313M1 HD44780 compatible character LCD connected on I2C."""
22

33
from lcd_api import LcdApi
4-
from pyb import I2C, delay
4+
from pyb import delay
55

66
# No jumper selectable address
77
DEFAULT_LCD_I2C_ADDR = 0x3e

lcd/pyb_i2c_lcd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Implements a HD44780 character LCD connected via PCF8574 on I2C."""
22

33
from lcd_api import LcdApi
4-
from pyb import I2C, delay
4+
from pyb import delay
55

66
# The PCF8574 has a jumper selectable address: 0x20 - 0x27
77
DEFAULT_I2C_ADDR = 0x27

0 commit comments

Comments
 (0)