| Key Combo | Function |
|---|---|
| fn + 1/2/3 | change bluetooth channel |
| fn + Light | light on/off |
| fn + left/right arrow | change light color |
| fn + L + Light | (un)lock current light effect |
| fn + B | battery indicator |
| green: >70% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| table { | |
| counter-reset: rowNumber; | |
| } | |
| table tr td:first-child { | |
| counter-increment: rowNumber; | |
| } | |
| table tr td:first-child::before { | |
| content: counter(rowNumber); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const foo = () => { | |
| console.log('Chuck says hello.') | |
| } | |
| const sinon = require('sinon') | |
| const consoleLogStub = sinon.stub(console, 'log') | |
| describe('foo', () => { | |
| it('should log a message that ends with " says hello!"', () => { |