Selected Courses on Digital Art-UOWM

23 Ιουνίου 2020

coding-

Filed under: NOTES ON CODE — Ετικέτες: — admin @ 16:58

 

 
 
 
 
 
 
 
 

List of programming languages

From Wikipedia, the free encyclopedia
 
 
The aim of this list of programming languages is to include all notable programming languages in existence, both those in current use and historical ones, in alphabetical order, except for dialects of BASIC and esoteric programming languages.
Note: Dialects of BASIC have been moved to the separate List of BASIC dialects.
Note: This page does not list esoteric programming languages.

[edit]A

[edit]B

[edit]C

[edit]D

  • D
  • DASL (Datapoint’s Advanced Systems Language)
  • DASL (Distributed Application Specification Language)
  • Dart
  • DataFlex

[edit]E

[edit]F

[edit]G

[edit]H

[edit]I

[edit]J

[edit]K

[edit]L

[edit]M

[edit]N

[edit]O

[edit]P

[edit]Q

[edit]R

[edit]S

[edit]T

[edit]U

[edit]V

 

[edit]W

[edit]X

[edit]Y

 

[edit]Z

 

 
 
 
 
 
 
 
Computer programmers are those who write computer software. Their jobs usually involve:

[edit]

17 Νοεμβρίου 2014

arduino14

Filed under: ARDUINO,NOTES ON INTERACTIVE ART — Ετικέτες: — admin @ 15:25
void setup() {
  Serial.begin(9600);
}

void loop() {
  Serial.write(analogRead(A0)/4);

  delay(1);
}

import processing.serial.*;
Serial myPort;

PImage logo;

int bgcolor = 0;

void setup() {
  colorMode(HSB, 255);

  logo = loadImage(“http://arduino.cc/logo.png”);
  size(logo.width, logo.height);

  println(“Available serial ports:”);
  println(Serial.list());

  myPort = new Serial(this, Serial.list()[5], 9600);
}

void draw() {
  if(myPort.available() > 0) {
    bgcolor = myPort.read();
    println(bgcolor);
  }
  background(bgcolor, 255, 255);
  image(logo, 0, 0);
}

Powered by WordPress

error: Content is protected !!