This file contains 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
For some reason you need to add a leading 0 to the pattern | |
$ flirc_util sendir --pattern=0,8950,4400,550,550,600,500,600,1650,550,550,600,500,600,550,600,500,600,550,550,1650,600,1600,600,550,550,1650,600,1600,600,1600,600,1650,600,1600,600,500,600,550,600,500,600,1600,600,550,600,500,600,550,600,500,600,1600,600,1650,600,1600,600,500,600,1650,550,1650,600,1600,600,1600,600 | |
Tested on latest firmware at the time. Range is terrible as advertised, but it does work. | |
$ flirc_util version | |
3.25.3 | |
FW Version: v4.9.3 | |
SKU: Flirc 2.0 [dori] | |
Branch: master |
This file contains 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
## configuration.yaml | |
automation: !include automation.yaml | |
switch: !include switches.yaml | |
binary_sensor: !include binary_sensors.yaml | |
sensor: !include sensors.yaml | |
## automation.yaml | |
- id: shellies_get_status | |
alias: Shellies Get Status | |
description: '' |
This file contains 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
# Gen1 FireTV | |
Bugs: | |
BUG_1 - Location failed to grab | |
BUG_2 - WPS not working (or maybe my router) | |
BUG_3 - Can't switch to metric units | |
BUG_4 - switching to UK lang keeps frontpage in german until a reboot | |
BUG_5 - it's hilariously slow to boot | |
ADB activation: |
This file contains 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
#!/usr/bin/env python | |
""" | |
Author: Kyle Manna <[email protected]> | |
Blog: https://blog.kylemanna.com | |
cat /d/mmc0/mmc0:0001/ext_csd | |
0000000000000001030100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000087a0000000000000000061502030700100608010101080800100000728000000808080808080000000000010200070002000500000000000001000200000000000000000000000000000100050000000000030001ca00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 |
This file contains 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
#!/usr/bin/env bash | |
# Author: Stefan Andritoiu <[email protected]> | |
# Copyright (c) 2016 Intel Corporation. | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the | |
# "Software"), to deal in the Software without restriction, including | |
# without limitation the rights to use, copy, modify, merge, publish, | |
# distribute, sublicense, and/or sell copies of the Software, and to |
This file contains 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
/etc/imraa.conf | |
Defines how pins will be used: | |
{ | |
"lockfile-location": "xxx", | |
"Platform" :[ | |
{"id":"512", "type":"GENERIC_FIRMATA", "flash":"/var/cache/101/firmata.img", "usbserial": "auto"} | |
], | |
"IO" :[ |
This file has been truncated, but you can view the full file.
This file contains 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
INFO - libmraa Version v0.6.1-8-g2c74ba7 | |
INFO - Target arch is x86_64 | |
INFO - Adding x86 platforms | |
-- Configuring done | |
-- Generating done | |
-- Build files have been written to: /home/brendan/git/mraa/build | |
[ 6%] Swig source | |
Scanning dependencies of target mraajs | |
[ 12%] Building CXX object src/javascript/CMakeFiles/mraajs.dir/mraajsJAVASCRIPT_wrap.cxx.o | |
/home/brendan/git/mraa/build/src/javascript/mraajsJAVASCRIPT_wrap.cxx:772:13: error: ‘Arguments’ in namespace ‘v8’ does not name a type |
This file contains 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
diff --git a/src/intel_edison_fab_c.c b/src/intel_edison_fab_c.c | |
index 9a3a1db..4ac0009 100644 | |
--- a/src/intel_edison_fab_c.c | |
+++ b/src/intel_edison_fab_c.c | |
@@ -101,13 +101,21 @@ mraa_intel_edison_gpio_dir_pre(mraa_gpio_context dev, gpio_dir_t dir) | |
mraa_gpio_context output_e; | |
output_e = mraa_gpio_init_raw(outputen[pin]); | |
- if (mraa_gpio_dir(output_e, MRAA_GPIO_OUT) != MRAA_SUCCESS) | |
+ if (output_e == NULL) { |
This file contains 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
{ | |
'targets': [ | |
{ | |
'target_name': 'mraa', | |
'sources': [ '../src/mraa.c', | |
'../src/gpio/gpio.c', | |
'../src/aio/aio.c', | |
'../src/i2c/i2c.c', | |
'../src/pwm/pwm.c', | |
'../src/spi/spi.c', |
This file contains 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
/* | |
* Author: Brendan Le Foll <[email protected]> | |
* Author: Thomas Ingleby <[email protected]> | |
* Copyright (c) 2014 Intel Corporation. | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining | |
* a copy of this software and associated documentation files (the | |
* "Software"), to deal in the Software without restriction, including | |
* without limitation the rights to use, copy, modify, merge, publish, | |
* distribute, sublicense, and/or sell copies of the Software, and to |
NewerOlder