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
<!-- Joystick Name: OUYA Game Controller --> | |
<!-- Button Mappings in Windows: --> | |
<!-- --> | |
<!-- ID Button --> | |
<!-- --> | |
<!-- 1 O --> | |
<!-- 2 U --> | |
<!-- 3 Y --> | |
<!-- 4 A --> |
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
@app.route('/xhr/library_remove/<media>/<int:id>') | |
@requires_auth | |
def xhr_clear_playlist(media, id): | |
logger.log('CONTROLS :: Removing %s from XBMC library' % media, 'INFO') | |
xbmc = jsonrpclib.Server(server_api_address()) | |
try: | |
if media == 'movie': | |
xbmc.VideoLibrary.RemoveMovie(movieid=id) | |
elif media == 'tvshow': |
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
padding = 0.3; | |
module bearing() { | |
cylinder(r=8+padding, h=12, center=true); | |
translate([0, 0, 6.5]) cylinder(r1=8+padding, r2=6, h=1, center=true); | |
} | |
module main() { | |
difference() { | |
union() { |
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
$fn=120; | |
spindle = 53; | |
vacuum = 37.2; | |
//%color("orange") rotate([0, 0, 90]) import("adapter_1_v1_0.stl"); | |
translate([0, 0, 10]) color("red") { | |
%cylinder(r=spindle/2, h=90); | |
%translate([0, 0, -spindle]) cylinder(r=19/2, h=52); |
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
module 30fan() { | |
difference() | |
{ | |
linear_extrude(height=11, center = true, convexity = 4, twist = 0) | |
difference() | |
{ | |
square([30,30],center=true); | |
difference() | |
{ | |
circle(r=28.5/2,center=true); |
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
// ESP32 Tilt Repeater | |
// By David Gray | |
#include "BLEDevice.h" | |
#include "BLEBeacon.h" | |
#include "esp_deep_sleep.h" | |
// User Settings | |
int SCAN_TIME = 5; // Duration to scan for bluetooth devices (in seconds). | |
int TIME_TO_SLEEP = 60; // Duration ESP32 will go to sleep between scans (in seconds). |
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
import struct | |
import ubluetooth as bt | |
from micropython import const | |
MANUFACTURER_ID = const(0x004C) | |
DEVICE_TYPE = const(0x02) | |
DATA_LENGTH = const(0x15) | |
BR_EDR_NOT_SUPPORTED = const(0x04) | |
FLAG_BROADCAST = const(0x01) | |
MANUFACTURER_DATA = const(0xFF) |
OlderNewer