| Home | Introduction | Buy Arduino / Modules |

Tilt Sensor භාවිතා කරමු


මේකෙන් පුලුවන් Android Phone වල Auto Rotate වෙන Screen එකේ Sensor එකෙන් කරන වැඩේ Arduino එකත් එක්ක කරන්න.මුලින්ම Tilt Sensor එකක් අරගෙන ඒක Arduino එකට අමුනගන්න පහත ආකාරයට.
 
මේකටත් තියෙන්නෙ Switch එකේ Code එකමයි.

const int buttonPin = 2; // the number of the pushbutton pin
const int ledPin = 13; // the number of the LED pin
// variables will change:

int buttonState = 0; // variable for reading the pushbutton status

void setup() {

// initialize the LED pin as an output:

pinMode(ledPin, OUTPUT);

// initialize the pushbutton pin as an input:

pinMode(buttonPin, INPUT);

}

void loop(){

// read the state of the pushbutton value:

buttonState = digitalRead(buttonPin);

// check if the pushbutton is pressed.

// if it is, the buttonState is HIGH:

if (buttonState == HIGH) {

// turn LED on:

digitalWrite(ledPin, HIGH);

}

else {

// turn LED off:

digitalWrite(ledPin, LOW);

}

}

No comments:

Post a Comment