From 708571834a7a0c92273e628c2854b4ebefad3f4f Mon Sep 17 00:00:00 2001 From: Glenn Ruben Bakke Date: Thu, 8 Jun 2017 23:36:26 +0200 Subject: [PATCH] nrf/examples: Update ssd1306 modification example to import correct class. --- nrf/examples/ssd1306_mod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nrf/examples/ssd1306_mod.py b/nrf/examples/ssd1306_mod.py index 5480c646c2..0cee2c2a67 100644 --- a/nrf/examples/ssd1306_mod.py +++ b/nrf/examples/ssd1306_mod.py @@ -14,7 +14,7 @@ # Example usage of SSD1306_I2C on pca10040 # # from machine import Pin, I2C -# from ssd1306 import SSD1306_I2C +# from ssd1306_mod import SSD1306_I2C_Mod # i2c = I2C(0, Pin.board.PA3, Pin.board.PA4) # disp = SSD1306_I2C_Mod(128, 64, i2c)