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
const AG_GRID_LOCALE_TR = { | |
// Set Filter | |
"selectAll": "(Tümünü Seç)", | |
"selectAllSearchResults": "(Tüm Arama Sonuçlarını Seç)", | |
"addCurrentSelectionToFilter": "Mevcut seçimi filtreye ekle", | |
"searchOoo": "Arama...", | |
"blanks": "(Boşlar)", | |
"noMatches": "Eşleşme yok", | |
// Number Filter & Text Filter |
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
import processing.pdf.*; | |
JSONObject json; | |
PImage img; | |
JSONArray j; | |
PFont font; | |
int yatay=0; | |
int dikey=0; | |
String access_token="fb access_token buraya"; |
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
import processing.video.*; | |
Capture video; | |
int fWidth=640; | |
int fHeight=360; | |
boolean[][] prevFrame = new boolean[fWidth][fHeight]; | |
void setup() |
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
import processing.video.*; | |
import processing.serial.*; | |
Serial myPort; | |
Capture video; | |
boolean[][] laserArray = new boolean[640][360]; | |
void setup() { | |
colorMode(HSB); | |
frameRate(30); |
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
/* | |
Button | |
Turns on and off a light emitting diode(LED) connected to digital | |
pin 13, when pressing a pushbutton attached to pin 2. | |
The circuit: | |
* LED attached from pin 13 to ground | |
* pushbutton attached to pin 2 from +5V |
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
/* | |
Memsic2125 | |
Read the Memsic 2125 two-axis accelerometer. Converts the | |
pulses output by the 2125 into milli-g's (1/1000 of earth's | |
gravity) and prints them over the serial connection to the | |
computer. | |
The circuit: | |
* X output of accelerometer to digital pin 2 |
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
import processing.serial.*; | |
import cc.arduino.*; | |
// arduino tanımlama [2] yerine çalıştırılacak olan COM un indexi | |
Arduino a = new Arduino(this, Arduino.list()[2], 57600); | |
color c; | |
void setup() | |
{ |
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
/** | |
* This sketch demonstrates how to use an FFT to analyze | |
* the audio being generated by an AudioPlayer. | |
* <p> | |
* FFT stands for Fast Fourier Transform, which is a | |
* method of analyzing audio that allows you to visualize | |
* the frequency content of a signal. You've seen | |
* visualizations like this before in music players | |
* and car stereos. | |
*/ |
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
PFont p; | |
void setup() | |
{ | |
size(800, 600); | |
p = loadFont("Dialog.plain-48.vlw"); | |
} | |
void draw() | |
{ |
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
class ciz | |
{ | |
void Ciz(int a) | |
{ | |
switch (a) | |
{ | |
case 0: | |
//line örnek | |
smooth(); | |
stroke(color(255, 210, 0)); |
NewerOlder