https://github.com/hm0429/logitech-g923

G29 を Node.js から操作するライブラリをフォークして、G923 でも使うことができるものを作った
フォーク元: https://github.com/nightmode/logitech-g29
デフォルトでは G923 を使うように作った
G29 でも使うことができる。G29 を使う場合は、以下のように option を渡す
code:js
const g = require('logitech-g923')

const options = {
targetDevice: 'g29'
}

g.connect(options, function(err) {
// write your code
})