File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change
1
+ void decToBinary(int n)
2
+ {
3
+ int binaryNum[32];
4
+ int i = 0;
5
+ while (n > 0) {
6
+ binaryNum[i] = n % 2;
7
+ n = n / 2;
8
+ i++;
9
+ }
10
+ }
Original file line number Diff line number Diff line change 1
1
<!DOCTYPE html>
2
2
< html >
3
- < iframe width ="450 " height ="260 " style ="border: 1px solid #cccccc; " src ="https://thingspeak.com/channels/907271/charts/1?bgcolor=%23ffffff&color=%23d62020&dynamic=true&results=60&type=line&update=15 "> </ iframe >
3
+
4
+ < iframe width ="450 " height ="260 " style ="border: 1px solid #cccccc; " src ="https://thingspeak.com/channels/907271/charts/2?bgcolor=%23ffffff&color=%23d62020&dynamic=true&results=60&type=line&update=15 "> </ iframe >
5
+ < iframe width ="450 " height ="260 " style ="border: 1px solid #cccccc; " src ="https://thingspeak.com/channels/907271/charts/3?bgcolor=%23ffffff&color=%23d62020&dynamic=true&results=60&type=line&update=15 "> </ iframe >
6
+
4
7
< body >
5
-
8
+ < iframe width =" 450 " height =" 260 " style =" border: 1px solid #cccccc; " src =" https://thingspeak.com/channels/907271/charts/1?bgcolor=%23ffffff&color=%23d62020&dynamic=true&results=60&type=line&update=15 " > </ iframe >
6
9
< p > Enter the value of volatge, then click "Submit" to submit the value:</ p >
7
10
8
11
< form id ="frm1 ">
You can’t perform that action at this time.
0 commit comments