Jump to content

Search the Community

Showing results for tags 'javascript'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Forum Introduction & Feedback
    • Site Announcements, Rules & New Member Intros
    • TechInferno Forum Feedback
  • Tech News & Reviews
    • News & Reviews
  • Notebook Discussion
    • General Notebook Discussions
    • Notebook OEM Subforums
    • What Notebook Best Fits My Needs?
    • Legacy Articles
  • Desktop & General Hardware
    • General Desktops Discussion
    • Desktop Hardware
    • Overclocking, Cooling & Build Logs
  • Software, Networking & Gaming
    • PC & Console Gaming
    • Video Driver Releases & Discussion
    • Networking
    • General Software Discussion
  • Everything Else
    • Off Topic
  • Legacy Section (Not Actively Supported)
    • DIY e-GPU Projects

Categories

  • SVL7 & Klem VBIOS Mods
    • AMD
    • Alienware M11x R3
    • Alienware M14x R2
    • Alienware M17x R4
    • Alienware M18x R1
    • Alienware M18x R2
    • Kepler VBIOS
    • Lenovo Y400-Y500
    • Lenovo Y410p-Y510p
    • Lenovo Y580-Y480
    • Legacy BIOS/VBIOS
    • Maxwell VBIOS
    • Sony Vaio SVS13 / SVS15 series
  • BAKED BIOS Mods
    • Clevo
  • Utilities

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Steam


AIM


MSN


Website URL


Yahoo


Jabber


Skype


Location


Interests


Occupation

Found 1 result

  1. Hello all, A developer recently created a node.js project to control the MSI Steelseries Keyboards with javascript. Since it uses node.js it should be cross OS (windows, mac, linux). The github repo is here: https://github.com/wearefractal/msi-keyboard I installed and am successfully controlling my keyboard in Linux Mint 15 64bit Requirements: Node.js npm Here are the instructions: (Linux or mac, windows is similar) Make a folder called msi-klm (or similar) now use a text editor to create two files inside the folder. package.json and server.js in package.json put this minimal code: { "name": "led-manager", "dependencies": { "msi-keyboard":"*" } } Save the file. Open the folder in a terminal and run this command: npm install That will install the needed module. Edit server.js Put this (minimal) code: var keyboard = require('msi-keyboard'); keyboard.color('left',{color: 'red', intensity: 'med'}); keyboard.color('middle',{color: 'blue', intensity: 'med'}); keyboard.color('right',{color: 'green', intensity: 'med'}); Save the file. Refer to https://github.com/wearefractal/msi-keyboard for the many other options. Use the same terminal to run: sudo node server.js (on linux or *nix. Open the terminal as Admin in windows) Your keyboard should be now lit up! Cheers
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.