portaudio
ソースのダウンロード
Visual Studio 2013用ビルド設定 (ASIO SDKを使用する場合)
// | |
// test_dragg_op.pde | |
// | |
import java.util.*; | |
class Node { | |
float x, y, w, h; | |
color fill_color; | |
String label; | |
boolean selected = false; |
#!/usr/bin/ruby | |
require 'mathn' | |
$host = 'mqtt.example.com' | |
$port = 1883 | |
$user = 'username' | |
$pass = 'password' | |
def usage |
portaudio
ソースのダウンロード
Visual Studio 2013用ビルド設定 (ASIO SDKを使用する場合)
// | |
// pseudo_metaball_in_motion.pde - drawing test of pseudo metaball in motion | |
// | |
void setup() { | |
size(512, 512); | |
background(0); | |
} | |
void draw_pseudo_metaball(float x, float y, float r) { |
// | |
// ascii table for 7segduino | |
// | |
// github: | |
// https://gist.github.com/yoggy/0365b24d193f9999c83e | |
// | |
// license: | |
// Copyright (c) 2015 yoggy <[email protected]> | |
// Released under the MIT license | |
// http://opensource.org/licenses/mit-license.php |
$ touch hoge | |
$ ls -al hoge | |
-rw-rw-r-- 1 yoggy yoggy 0 Apr 23 21:27 hoge | |
$ lsattr hoge | |
-------------e-- hoge | |
$ sudo chattr +i hoge |
#define V_ON 40 | |
#define V_OFF 300 | |
#define V_INTERVAL 1500 | |
#define V_COUNT 7 | |
#define V_SLEEP 180 | |
void setup( ) { | |
pinMode(3, OUTPUT); | |
pinMode(4, OUTPUT); | |
} |
REGEDIT4 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] | |
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,1d,00,3a,00,00,00,00,00 |
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\i8042prt\Parameters] | |
"LayerDriver JPN"="kbd106.dll" | |
"OverrideKeyboardType"=dword:00000007 | |
"OverrideKeyboardIdentifier"="PCAT_106KEY" | |
"OverrideKeyboardSubtype"=dword:00000002 |
// | |
// serial_sseg.ino - serial display control sketch for 7segduino | |
// | |
// github: | |
// https://gist.github.com/yoggy/80e47ff0932f3900c77f | |
// | |
// license: | |
// Copyright (c) 2015 yoggy <[email protected]> | |
// Released under the MIT license | |
// http://opensource.org/licenses/mit-license.php |