Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 79af32d

Browse files
committed
ok
1 parent 6568017 commit 79af32d

File tree

28 files changed

+1673
-0
lines changed

28 files changed

+1673
-0
lines changed

Breath_LED/Breath_LED.ino

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// demo of Grove - Starter V2.0
2+
// Loovee 2013-3-10
3+
// as the topic, we will use Grove - Led to make a breath light
4+
// Grove - LED connect to D5
5+
// the following pin which support PWM can be used:
6+
// 3, 5, 6, 9, 10, 11
7+
8+
const int pinLed = 5; // pin of led define here
9+
10+
void setup()
11+
{
12+
pinMode(pinLed, OUTPUT); // set led OUTPUT
13+
}
14+
15+
void loop()
16+
{
17+
18+
for(int i=0; i<256; i++)
19+
{
20+
analogWrite(pinLed, i);
21+
delay(5); // change delay time can breath faster or slower
22+
}
23+
delay(100);
24+
25+
for(int i=254; i>=0; i--)
26+
{
27+
analogWrite(pinLed, i);
28+
delay(5); // change delay time can breath faster or slower
29+
}
30+
delay(500);
31+
}

Flower/Flower.ino

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
void setup()
2+
{
3+
pinMode(2, OUTPUT);
4+
pinMode(4, OUTPUT);
5+
pinMode(6, OUTPUT);
6+
pinMode(7, OUTPUT);
7+
pinMode(11, OUTPUT);
8+
pinMode(13, OUTPUT);
9+
pinMode(9, INPUT); //pin of touch sensor
10+
}
11+
12+
void loop()
13+
{
14+
int switchState = digitalRead(9);
15+
if(switchState == HIGH)
16+
{
17+
digitalWrite(2, HIGH);
18+
digitalWrite(4, HIGH);
19+
digitalWrite(6, HIGH);
20+
digitalWrite(7, HIGH);
21+
digitalWrite(11, HIGH);
22+
digitalWrite(13, HIGH);
23+
}
24+
else
25+
{
26+
digitalWrite(2, LOW);
27+
digitalWrite(4, LOW);
28+
digitalWrite(6, LOW);
29+
digitalWrite(7, LOW);
30+
digitalWrite(11, LOW);
31+
digitalWrite(13, LOW);
32+
}
33+
delay(100);
34+
}

Grove_Button/Grove_Button.ino

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// demo of Grove - Starter V2.0
2+
// Loovee 2013-3-10
3+
// this demo will show you how to use Grove - Button to control a LED
4+
// when the button was pressed, the led will on
5+
// otherwise led off
6+
// Grove - Button connect to D3
7+
// Grove - LED connect to D7
8+
9+
const int pinButton = 3; // pin of button define here
10+
const int pinLed = 7; // pin of led define here
11+
12+
void setup()
13+
{
14+
pinMode(pinButton, INPUT); // set button INPUT
15+
pinMode(pinLed, OUTPUT); // set led OUTPUT
16+
}
17+
18+
void loop()
19+
{
20+
if(digitalRead(pinLed)) // when button is pressed
21+
{
22+
digitalWrite(pinLed, HIGH); // led on
23+
}
24+
else
25+
{
26+
digitalWrite(pinLed, LOW);
27+
}
28+
29+
delay(10);
30+
}

Grove_Buzzer/Grove_Buzzer.ino

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
/* Melody
2+
* (cleft) 2005 D. Cuartielles for K3
3+
*
4+
* This example uses a piezo speaker to play melodies. It sends
5+
* a square wave of the appropriate frequency to the piezo, generating
6+
* the corresponding tone.
7+
*
8+
* The calculation of the tones is made following the mathematical
9+
* operation:
10+
*
11+
* timeHigh = period / 2 = 1 / (2 * toneFrequency)
12+
*
13+
* where the different tones are described as in the table:
14+
*
15+
* note frequency period timeHigh
16+
* c 261 Hz 3830 1915
17+
* d 294 Hz 3400 1700
18+
* e 329 Hz 3038 1519
19+
* f 349 Hz 2864 1432
20+
* g 392 Hz 2550 1275
21+
* a 440 Hz 2272 1136
22+
* b 493 Hz 2028 1014
23+
* C 523 Hz 1912 956
24+
*
25+
* http://www.arduino.cc/en/Tutorial/Melody
26+
*/
27+
28+
int speakerPin = 9;
29+
30+
int length = 15; // the number of notes
31+
char notes[] = "ccggaagffeeddc "; // a space represents a rest
32+
int beats[] = { 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 4 };
33+
int tempo = 300;
34+
35+
void playTone(int tone, int duration) {
36+
for (long i = 0; i < duration * 1000L; i += tone * 2) {
37+
digitalWrite(speakerPin, HIGH);
38+
delayMicroseconds(tone);
39+
digitalWrite(speakerPin, LOW);
40+
delayMicroseconds(tone);
41+
}
42+
}
43+
44+
void playNote(char note, int duration) {
45+
char names[] = { 'c', 'd', 'e', 'f', 'g', 'a', 'b', 'C' };
46+
int tones[] = { 1915, 1700, 1519, 1432, 1275, 1136, 1014, 956 };
47+
48+
// play the tone corresponding to the note name
49+
for (int i = 0; i < 8; i++) {
50+
if (names[i] == note) {
51+
playTone(tones[i], duration);
52+
}
53+
}
54+
}
55+
56+
void setup()
57+
{
58+
pinMode(speakerPin, OUTPUT);
59+
}
60+
61+
void loop()
62+
{
63+
for (int i = 0; i < length; i++)
64+
{
65+
if (notes[i] == ' ')
66+
{
67+
delay(beats[i] * tempo); // rest
68+
}
69+
else
70+
{
71+
playNote(notes[i], beats[i] * tempo);
72+
}
73+
74+
// pause between notes
75+
delay(tempo / 2);
76+
}
77+
}
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
int ledPin=12; //attach a LED to Digital 12
2+
int thresholdvalue=400; //the threshold to turn on or off the LED
3+
4+
void setup()
5+
{
6+
pinMode(ledPin,OUTPUT); //set the LED on Digital 12 as an OUTPUT
7+
}
8+
9+
void loop()
10+
{
11+
int sensorValue = analogRead(0); //the light sensor is attached to analog 0
12+
if(sensorValue<thresholdvalue)
13+
{
14+
digitalWrite(ledPin,HIGH);
15+
}
16+
else
17+
{
18+
digitalWrite(ledPin,LOW);
19+
}
20+
}

Grove_Relay/Grove_Relay.ino

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
const int buttonPin = 3; // the button is attached to digital pin 3
2+
const int relayPin = 9; // the relay is attached to digital pin 9
3+
int buttonState = 0;
4+
5+
void setup()
6+
{
7+
pinMode(relayPin, OUTPUT);
8+
pinMode(tiltPin, INPUT);
9+
}
10+
11+
void loop()
12+
{
13+
// read the state of the button:
14+
buttonState = digitalRead(buttonPin);
15+
if (buttonState == 1) digitalWrite(relayPin, HIGH);
16+
else digitalWrite(relayPin, LOW);
17+
delay(10);
18+
}
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
int ledPin = 9; //attach a LED to Digital 12
2+
int thresholdValue = 0; // the threshold to turn on or off the LED
3+
4+
void setup()
5+
{
6+
pinMode(ledPin, OUTPUT); //set the LED on Digital 12 as an OUTPUT
7+
}
8+
9+
void loop()
10+
{
11+
int sensorValue = analogRead(A0); //read the sensorValue on Analog 0
12+
if(sensorValue>thresholdValue)
13+
digitalWrite(ledPin,HIGH);
14+
delay(200);
15+
digitalWrite(ledPin,LOW);
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
int a;
2+
int del=1000; // duration between temperature readings
3+
float temperature;
4+
int B=3975; // B value of the thermistor
5+
float resistance;
6+
7+
void setup()
8+
{
9+
Serial.begin(9600);
10+
}
11+
12+
void loop()
13+
{
14+
a=analogRead(0);
15+
resistance=(float)(1023-a)*10000/a;
16+
temperature=1/(log(resistance/10000)/B+1/298.15)-273.15;
17+
delay(del);
18+
Serial.println(temperature);
19+
}

How_You_Doing/How_You_Doing.ino

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
void setup()
2+
{
3+
pinMode(11, INPUT);
4+
pinMode(9, OUTPUT);
5+
}
6+
7+
void loop()
8+
{
9+
int sensorState = digitalRead(11);
10+
if (sensorState == 1) digitalWrite(9, HIGH);
11+
else digitalWrite(9, LOW);
12+
delay(100);
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
int potentiometer = 0;
2+
3+
void setup()
4+
{
5+
Serial.begin(9600); // set the serial communication frequency at 9600 bits per sec
6+
pinMode(potentiometer, INPUT);
7+
}
8+
9+
void loop()
10+
{
11+
int value = analogRead(potentiometer);
12+
Serial.println(value); // pirnt the value on the serial monitor screen
13+
delay(1000); // wait 1000ms before printing next value
14+
}

Servo/Servo.ino

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#include <Servo.h>
2+
Servo groveServo; //create a object
3+
4+
int potentiometer = 0;
5+
int shaft;
6+
7+
void setup()
8+
{
9+
groveServo.attach(3); //the servo is attached to D3
10+
pinMode(potentiometer, INPUT);
11+
}
12+
13+
void loop()
14+
{
15+
shaft = analogRead(potentiometer);
16+
shaft = map(shaft, 0, 1023, 0, 179);
17+
//analog input data range from 1~1023, but servo
18+
groveServo.write(shaft); //only reflects to data ranging from 1~179.
19+
delay(15);
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013 Seeed Technology Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

0 commit comments

Comments
 (0)