
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
i2c LCD module using PCF8574P for raspberry pi
npm instal i2c-lcd
Testd with:
LCD = require("./lcd")
lcd = new LCD("/dev/i2c-1", 0x27)
lcd.init()
.then( ->
return lcd.createChar(0, [
0x1b, 0x15, 0x0e, 0x1b,
0x15, 0x1b, 0x15, 0x0e
])
).then( ->
return lcd.createChar(1, [
0x0c, 0x12, 0x12, 0x0c
0x00, 0x00, 0x00, 0x00
])
)
.then( -> lcd.home() )
.then( -> lcd.print("Raspberry Pi #{String.fromCharCode(0)}") )
.then( -> lcd.setCursor(0, 1) )
.then( -> lcd.cursorUnder() )
.delay(4000)
.then( ->
d = new Date()
s = d.toString()
return lcd.setCursor(0, 0)
.then( -> lcd.print(s) )
.then( -> lcd.setCursor(0, 1) )
.then( -> lcd.print(s.substring(16)) )
)
.delay(4000)
.then( -> lcd.off() )
.done()
This allows you to drive a 1602 LCD module using only 4 pins on the raspberry pi
FAQs
i2c LCD module
We found that i2c-lcd demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.