
rabajaka
Robert
nerd
Get flash to fully experience Pearltrees
Lasca Tables by Marco Sousa Santos
Like a polished pebble from a riverbed Marco Sousa Santos' Lasca tables are softly rounded but unlike them, rich in texture thanks to its cork construction. (Click the images below for full sized images) Made of agglomerated cork with a lacquered MDF table top, Lasca comes in different shapes and sizes. Says Lasca producer Materia, "Lasca functions as a support or work surface. Steadier than a tray, more practical and unrestricting than a table, you can use it to rest a TV remote or glass, prop up a computer or set your notebook or reading material down."Structure of a program
Reference Language | Libraries | Comparison | Changes The setup() function is called when a sketch starts. Use it to initialize variables, pin modes, start using libraries, etc. The setup function will only run once, after each powerup or reset of the Arduino board. Example int buttonPin = 3; void setup() { Serial.begin(9600); pinMode(buttonPin, INPUT); } void loop() { // ... }

