processingのリハビリにあっさり動画作成
The Stonewall Inn
Interview Vampire Daily
taylor price
Claire Keane

PR's Tumblrdome

Discoholic 🪩
Phantogram Three
todays bird
cherry valley forever
🪼

ellievsbear
Cosimo Galluzzi
Sade Olutola
sheepfilms

bliss lane
Lint Roller? I Barely Know Her
RMH
art blog(derogatory)
Cosmic Funnies
seen from Germany
seen from Italy
seen from Philippines

seen from Türkiye

seen from United States
seen from Indonesia
seen from United States

seen from United Kingdom
seen from Australia

seen from United States
seen from Ireland

seen from Malaysia

seen from Vietnam
seen from United States
seen from United States
seen from United States

seen from United States

seen from Canada

seen from Venezuela

seen from Syria
processingのリハビリにあっさり動画作成

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
おおひさしぶり
なんとか元気にやってます
卒業制作です。まだ作り足します
made with vvvv

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
old video effect made with vvvv 17/11/17
made with vvvv. ブラウン管もどきエフェクト 17/11/17
機械学習のデータ群
千葉県で開催されたライブペイントワークショップのお絵かき模様です
matt pearson氏のコードを用いて描画しました
made with processing

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
あしたからです
http://munimuniofficial.wixsite.com/2017
あけましておめでとうございます
今年の目下の目標は新しいPCを買うこととDUALSHOCK3を改造することです。 よろしくお願いします
with Arduino
進級制作の作品です。v.1.10

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
アートのレシピ
こんにちは。
この作品は「arduino」という装置で動いています。この道具を使えば誰にでも自動水やり機や面白い電飾、絶対に水平保つ台…などが作れる、いわばすごい電子おもちゃです。
さっきまで見ていた作品の中に入ってる装置を作ることもできます。
以下はその装置のレシピと簡易な解説です。Arduinoを使ったことがある人向け。もしも真似をするときは自己責任です。とくにショートと火事には注意して
材料
Arduino uno
ブレッドボード
ジャンパコード、単芯被膜コード
9V乾電池(アルカリ)
電池ボックス
抵抗
赤外線センサー(距離センサー)
電解コンデンサ
CdSセル(光センサー)
LED(いろんな色があるとたのしい)
はんだ
ユニバーサル基板(ピッチ2.54ミリ)
装置のつなぎ方
Arduino と各センサの間にあるブレッドボード(黄緑)はハブの役割を担っています。
電源に電池を使わないときはPCから給電したり、9V1AのACアダプタがつかえます。
各センサのつなぎ方
光センサ(CdSセル)
赤外線センサ
ここではシャープ製の安価なモジュール「GP2Y0A21YK」を使っています。正確な距離測定には向きませんが、簡単な電子工作なら十分なものです。あと画像は電解コンデンサの向きが逆になっています。すみません
LED
Arduinoに書き込むプログラム
const int outLED = 3; const int outLED2 = 6; const int outLED3 = 10; //赤外線1 int LEDl = 0; //赤外線2 int LEDl2 = 0; //光センサ int LEDl3 = 0; //それぞれ、赤外線1,2,光センサ int ans, ans2, lightsensor;
void setup() { pinMode(13, OUTPUT); //PCに繋がないときはシリアル通信の項目は外すこと //Serial.begin(9600); }
void loop() { ans = analogRead(0); ans2 = analogRead(1); lightsensor = analogRead(2);
LEDl = round(map(ans, 700, 70, 255, 0)); LEDl = constrain(LEDl, 0, 255); LEDl2 = round(map(ans2, 600, 40, 0, 255)); LEDl2 = constrain(LEDl2, 0, 255); LEDl3 = round(map(lightsensor,5,59,255,0)); LEDl3 = constrain(LEDl3, 0, 255); analogWrite(outLED, LEDl); analogWrite(5, LEDl); analogWrite(outLED2, LEDl2); analogWrite(9, LEDl); analogWrite(outLED3, LEDl3); analogWrite(11, LEDl3); delay(150);
// Serial.println(ans); // Serial.println(LEDl); //Serial.println(LEDl3);
}
シリアル通信の命令は、各センサがきちんと動作しているか、どの状態でどんな値を返すのかの確認に使用します。簡易デバッグ機能のようなものです。
round(map());の値を変えることで「センサーに物が近づいた時に光が強くなる/弱くなる」と言った調節ができます。
アーツ千代田3331で1/7〜15まで進級制作展があります。作品出します