Difference between revisions of "Processing"

From Mech
Jump to navigationJump to search
Line 1: Line 1:
== Processing ==
== Overview ==

Overview
Processing is an open source programming language and IDE based on Java. It is free, works on PC/Mac/Linux, and is easy to learn. Processing lets the programmer quickly make visual objects and interactive programs. It is also easy to communicate with a serial port, so programs can interact with microcontrollers. This wiki page will describe how to get Processing, create a simple program, open a serial port, and use an external library to create a GUI (graphical user interface).
Processing is an open source programming language and IDE based on Java. It is free, works on PC/Mac/Linux, and is easy to learn. Processing lets the programmer quickly make visual objects and interactive programs. It is also easy to communicate with a serial port, so programs can interact with microcontrollers. This wiki page will describe how to get Processing, create a simple program, open a serial port, and use an external library to create a GUI (graphical user interface).


Download
== Download ==
Processing can be found [http://processing.org/ here]. Download, unzip and install Processing. This will create two important folders. The first is the folder you have unzipped. It contains the actual Processing program. The second folder is Documents/Processing. This folder is where you store your projects.
Processing can be found [http://processing.org/ here]. Download, unzip and install Processing. This will create two important folders. The first is the folder you have unzipped. It contains the actual Processing program. The second folder is Documents/Processing. This folder is where you store your projects.


Resources
== Resources ==




A Simple Program
== A Simple Program ==
Open Processing. [[Image:processing_ide.jpg]]
Open Processing. [[Image:processing_ide.jpg]]



Revision as of 17:32, 22 February 2010

Overview

Processing is an open source programming language and IDE based on Java. It is free, works on PC/Mac/Linux, and is easy to learn. Processing lets the programmer quickly make visual objects and interactive programs. It is also easy to communicate with a serial port, so programs can interact with microcontrollers. This wiki page will describe how to get Processing, create a simple program, open a serial port, and use an external library to create a GUI (graphical user interface).

Download

Processing can be found here. Download, unzip and install Processing. This will create two important folders. The first is the folder you have unzipped. It contains the actual Processing program. The second folder is Documents/Processing. This folder is where you store your projects.

Resources

A Simple Program

Open Processing. Processing ide.jpg


A Processing file is called a sketch,