From 35cc1c868eafcc0391717a3568247053da599a38 Mon Sep 17 00:00:00 2001 From: craigmw Date: Wed, 23 Mar 2016 22:21:43 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d3e826..6819628 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Here, we see two devices, 0x27 (our LCD display) and 0x68 (a realtime clock boar To use lcdi2c, add the following code to your node.js application to set up the lcd object: ```bash -var LCD = require('./lcdi2c.js'); +var LCD = require('lcdi2c'); var lcd = new LCD( 1, 0x27, 20, 4 ); ```