From:
- http://www.hifi-remote.com/forums/viewtopic.php?t=14120
- http://www.remotecentral.com/cgi-bin/mboard/rc-discrete/thread.cgi?7852
Code:
Protocol: NEC1
Device: 2
SubDevice: 160
Func. OBC HEX EFC
From:
Code:
Protocol: NEC1
Device: 2
SubDevice: 160
Func. OBC HEX EFC
$ uname -r
Some notes to adjust the MX4000 parameters for retro gaming. These notes apply to my model (SW 2.0)
sudo apt-get remove exfat-fuse exfat-utils
const tesseractTsvToJson = (tsvFilename, jsonFilename) => { | |
console.log(`> tsvToJson ${tsvFilename} => ${jsonFilename}`); | |
const tsvLines = fs.readFileSync(tsvFilename, 'utf-8').trim().split('\n').reverse(); | |
/** @type {any} */ | |
const json = {pages: []}; | |
// discard header | |
tsvLines.pop(); |
const useIsVirtualKeyboardVisible = () => { | |
const [isVirtualKeyboardVisible, setIsVirtualKeyboardVisible] = React.useState(false); | |
React.useEffect(() => { | |
// probably incomplete, good enough for me | |
const inputTypesThatOpenTheVirtualKeyboard = ['text', 'email', 'password', 'number', 'search']; | |
const handleFocus = (event: Event) => { | |
if ( | |
event.target instanceof HTMLTextAreaElement || |