View allAll Photos Tagged Compute
When RecruitersBook.com : Jobs.RecruitersBook.Co Online writes a resume they know they only have 15 seconds to catch the hiring manager’s attention. Let our expert resume writing professionals create a resume that will land you the job you want. RecruitersBook.com : Jobs.RecruitersBook.Co Online can make or break your chances to secure a new job. RecruitersBook.com : Jobs.RecruitersBook.Co Online writes a winning resume that results in more interviews and more opportunity. RecruitersBook.com : Jobs.RecruitersBook.Co Online will write you a great resume which is easily one of the best investments you can make for your career.
What's New in Mobile Computing
* The Best Super-SLim Laptops
* The Smallest Notebook Ever
* 19 New Devices Rated & Reviewed
Live TV...On Your Phone: The New Broadcast Network That Changes Everything
A Better Way to Install Vista
Repro Free Wednesday 30th May 2018. Final year Computing students showcase their work to 100 companies and academic peers at National College of Ireland. 2018 marks the 20th anniversary of NCI’s School of Computing. Picture Jason Clarke
No interactive thingymabobs here, but maybe that's ok since touchscreens weren't quite invented yet.
int yellowPin = 13;
int redPin = 12; // Red LED connected to digital pin 12
int greenPin = 11; // Green LED connected to digital pin 11
int inPin = 2; // choose the input pin (for a pushbutton)
int val = 0; // variable for reading the pin status
void setup() {
pinMode(redPin, OUTPUT); // sets the digital pin as output
pinMode(greenPin, OUTPUT); // sets the digital pin as output
pinMode(yellowPin, OUTPUT);
pinMode(inPin, INPUT); // declare pushbutton as input
Serial.begin(9600);
}
void loop(){
val = digitalRead(inPin); // read input value
if (val == HIGH) { // check if the input is HIGH (button released)
blink01();
// digitalWrite(ledPin, LOW); // turn LED OFF
Serial.println("blink!!");
}
else {
nothing01();
Serial.println("off");
}
}
void blink01() {
digitalWrite(redPin, HIGH); // sets the Red LED on
digitalWrite(greenPin, HIGH); // sets the Green LED on
digitalWrite(yellowPin, HIGH);
delay(500);
digitalWrite(redPin, LOW); // sets the LED off: 0 V
digitalWrite(greenPin, LOW); // sets the LED off: 0 V
digitalWrite(yellowPin, LOW); // sets the LED off: 0 V
delay(500);
}
void nothing01() {
digitalWrite(redPin, LOW); // sets the LED off: 0 V
digitalWrite(greenPin, LOW); // sets the LED off: 0 V
digitalWrite(yellowPin, LOW); // sets the LED off: 0 V
delay(500);
}
Hosted in collaboration with Google's CS4HS initiative, the MIT Creative Computing 2012 workshop was held at the MIT Media Lab, August 8-11, 2012.
University of Gloucestershire open day at Park Campus, Cheltenham.
Picture by Clint Randall www.pixelprphotography.co.uk