forked from bsaxen/simuino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helloWorld_MEGA.c
176 lines (158 loc) · 4.37 KB
/
helloWorld_MEGA.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
//================================================
// Example HelloWorld
//================================================
// SKETCH_NAME: HelloWorld_MEGA
// BOARD_TYPE MEGA
// SCENSIMLEN 600
//================================================
// Scenario
//================================================
//
// SCENDIGPIN 10 1 0
// SCENDIGPIN 10 50 1
// SCENDIGPIN 10 100 0
// SCENDIGPIN 10 200 1
// SCENDIGPIN 9 1 0
// SCENDIGPIN 9 40 1
// SCENDIGPIN 9 130 0
//
// SCENANAPIN 4 1 5
// SCENANAPIN 5 1 8
// SCENANAPIN 4 80 12
// SCENANAPIN 5 120 18
//
//================================================
// Simuino log text customization
//================================================
// PINMODE_OUT: 11 "PIN: Led Urgent"
// PINMODE_OUT: 12 "PIN: Led Blink"
// DIGITALWRITE_LOW: 11 "Waiting"
// DIGITALWRITE_HIGH: 11 "Urgent"
// DIGITALWRITE_LOW: 12 "Led is off"
// DIGITALWRITE_HIGH: 12 "Led is on"
// DIGITALREAD: 9 "Read from nine"
// DIGITALREAD: 10 "Read from ten"
// ANALOGREAD: 4 "read analog four"
// ANALOGREAD: 5 "read analog five"
//-------- DIGITAL PIN settings ------------------
// Leds
int URGENTLED = 31;
int BLINKLED = 32;
int IN_PIN = 52;
int CONTROL = 53;
//-------- ANALOGUE PIN settings
int SENSOR1 = 4;
int SENSOR2 = 5;
//================================================
// Function Declarations
//================================================
void blinkLed(int n);
//================================================
void urgent0()
//================================================
{
digitalWrite(URGENTLED, HIGH);
delay(400);
digitalWrite(URGENTLED, LOW);
}
//================================================
void urgent1()
//================================================
{
digitalWrite(URGENTLED, HIGH);
delay(401);
digitalWrite(URGENTLED, LOW);
}
//================================================
void urgent2()
//================================================
{
digitalWrite(URGENTLED, HIGH);
delay(402);
digitalWrite(URGENTLED, LOW);
}
//================================================
void urgent3()
//================================================
{
digitalWrite(URGENTLED, HIGH);
delay(403);
digitalWrite(URGENTLED, LOW);
}
//================================================
void urgent4()
//================================================
{
digitalWrite(URGENTLED, HIGH);
delay(404);
digitalWrite(URGENTLED, LOW);
}
//================================================
void urgent5()
//================================================
{
digitalWrite(URGENTLED, HIGH);
delay(405);
digitalWrite(URGENTLED, LOW);
}
//================================================
void setup()
//================================================
{
Serial.begin(9600);
attachInterrupt(0,urgent0, CHANGE);
attachInterrupt(1,urgent1, RISING);
attachInterrupt(2,urgent2, FALLING);
attachInterrupt(3,urgent3, LOW);
attachInterrupt(4,urgent4, CHANGE);
attachInterrupt(5,urgent5, RISING);
pinMode(BLINKLED,OUTPUT);
pinMode(URGENTLED,OUTPUT);
pinMode(IN_PIN,INPUT);
pinMode(CONTROL,INPUT);
pinMode(15,OUTPUT);
pinMode(44,INPUT);
pinMode(45,OUTPUT);
pinMode(46,OUTPUT);
pinMode(47,INPUT);
}
//================================================
void loop()
//================================================
{
int value1,value2,i;
Serial.println("Hello Simuino!");
value1 = analogRead(SENSOR1);
value2 = analogRead(SENSOR2);
Serial.print("Analog 1 value read: ");
Serial.println(value1);
Serial.print("Analog 2 value read: ");
Serial.println(value2);
blinkLed(value1);
value1 = digitalRead(IN_PIN);
value2 = digitalRead(CONTROL);
Serial.print("Digital IN_PIN read: ");
Serial.println(value1);
Serial.print("Digital CONTROL read: ");
Serial.println(value2);
analogWrite(10,123);
analogWrite(11,167);
analogWrite(3,127);
analogWrite(4,147);
delay(1000);
}
//================================================
void blinkLed(int n)
//================================================
{
int i;
for(i=1;i<=2;i++)
{
digitalWrite(BLINKLED, HIGH);
delay(500);
digitalWrite(BLINKLED, LOW);
}
}
//================================================
// End of Sketch
//================================================