From 4c16e2c8713ab371f381a1c48cd86d2e40520fa2 Mon Sep 17 00:00:00 2001 From: Sebastien Date: Wed, 12 Feb 2020 21:26:11 -0500 Subject: [PATCH] Fix Typo in i2c command to set display --- components/cmd_i2c/cmd_i2ctools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cmd_i2c/cmd_i2ctools.c b/components/cmd_i2c/cmd_i2ctools.c index f03f253e..5ec0a53d 100644 --- a/components/cmd_i2c/cmd_i2ctools.c +++ b/components/cmd_i2c/cmd_i2ctools.c @@ -419,7 +419,7 @@ static int do_i2c_set_display(int argc, char **argv) } if(!name) name = strdup("I2C"); - if(!driver) driver = strdup("SSD136"); + if(!driver) driver = strdup("SSD1306"); bool rotate = i2cdisp_args.rotate->count>0;