-
Notifications
You must be signed in to change notification settings - Fork 2
/
floss-arduino.aux
1692 lines (1692 loc) · 179 KB
/
floss-arduino.aux
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\relax
\providecommand\hyper@newdestlabel[2]{}
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
\global\let\oldcontentsline\contentsline
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
\global\let\oldnewlabel\newlabel
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
\AtEndDocument{\ifx\hyper@anchor\@undefined
\let\contentsline\oldcontentsline
\let\newlabel\oldnewlabel
\fi}
\fi}
\global\let\hyper@last\relax
\gdef\HyperFirstAtBeginDocument#1{#1}
\providecommand\HyField@AuxAddToFields[1]{}
\providecommand\HyField@AuxAddToCoFields[2]{}
\bibstyle{unsrt}
\@writefile{toc}{\contentsline {chapter}{\numberline {Preface}}{xi}{chapter*.2}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {List of Figures}}{xiii}{chapter*.3}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {List of Tables}}{xix}{chapter*.4}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {List of Arduino \ Code}}{xxi}{chapter*.5}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {List of Scilab Code}}{xxiii}{chapter*.6}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {List of Python \ Code}}{xxv}{chapter*.7}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {List of Julia\ Code}}{xxvii}{chapter*.8}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {List of OpenModelica\ Code}}{xxix}{chapter*.9}\protected@file@percent }
\@writefile{toc}{\thispagestyle {empty}}
\@writefile{toc}{\contentsline {chapter}{\numberline {List of Acronyms}}{xxxii}{chapter*.10}\protected@file@percent }
\citation{CNES-Scilab}
\@writefile{toc}{\contentsline {chapter}{\numberline {1}Introduction}{1}{chapter.1}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{sec:intro}{{1}{1}{Introduction}{chapter.1}{}}
\citation{scilab-arduino}
\newlabel{fn:file-loc}{{2}{3}{}{Hfootnote.2}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {2}Hardware Environment}{5}{chapter.2}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{sec:hw-env}{{2}{5}{Hardware Environment}{chapter.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.1}Microcontroller}{5}{section.2.1}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces Functional block diagram of a microcontroller\relax }}{6}{figure.caption.11}\protected@file@percent }
\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}}
\newlabel{micro-arch}{{2.1}{6}{Functional block diagram of a microcontroller\relax }{figure.caption.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1.1}Organization of a Microcontroller}{6}{subsection.2.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1.2}Microcontroller Peripherals}{7}{subsection.2.1.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {2.2}{\ignorespaces ADC resolution\relax }}{9}{figure.caption.12}\protected@file@percent }
\newlabel{resolution}{{2.2}{9}{ADC resolution\relax }{figure.caption.12}{}}
\citation{oshw-ref}
\citation{oshw-ref}
\citation{OSHW-logo-ref}
\@writefile{lof}{\contentsline {figure}{\numberline {2.3}{\ignorespaces The logo of Open Source Hardware\relax }}{10}{figure.caption.13}\protected@file@percent }
\newlabel{fig:OSHW-logo}{{2.3}{10}{The logo of Open Source Hardware\relax }{figure.caption.13}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.2}Open Source Hardware (OSHW)}{10}{section.2.2}\protected@file@percent }
\newlabel{sec:oshw}{{2.2}{10}{Open Source Hardware (OSHW)}{section.2.2}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.3}Arduino}{11}{section.2.3}\protected@file@percent }
\citation{uno-ref}
\citation{mega-ref}
\citation{lily-ref}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.1}Brief History}{12}{subsection.2.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.2}Arduino Uno Board}{12}{subsection.2.3.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {2.4}{\ignorespaces Arduino Uno Board\relax }}{13}{figure.caption.14}\protected@file@percent }
\newlabel{arduino}{{2.4}{13}{Arduino Uno Board\relax }{figure.caption.14}{}}
\@writefile{lot}{\contentsline {table}{\numberline {2.1}{\ignorespaces Arduino Uno hardware specifications\relax }}{13}{table.caption.15}\protected@file@percent }
\newlabel{micro-table}{{2.1}{13}{Arduino Uno hardware specifications\relax }{table.caption.15}{}}
\citation{phone-ref}
\@writefile{lof}{\contentsline {figure}{\numberline {2.5}{\ignorespaces Arduino Mega Board\relax }}{14}{figure.caption.16}\protected@file@percent }
\newlabel{mega}{{2.5}{14}{Arduino Mega Board\relax }{figure.caption.16}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.6}{\ignorespaces LilyPad Arduino Board\relax }}{14}{figure.caption.17}\protected@file@percent }
\newlabel{lily}{{2.6}{14}{LilyPad Arduino Board\relax }{figure.caption.17}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3.3}Popular Arduino Projects}{14}{subsection.2.3.3}\protected@file@percent }
\@writefile{toc}{\contentsline {paragraph}{Arduino phone:}{14}{section*.18}\protected@file@percent }
\citation{candy-ref}
\citation{3d-printer-ref}
\citation{shield-ref}
\@writefile{lof}{\contentsline {figure}{\numberline {2.7}{\ignorespaces Arduino Phone\relax }}{15}{figure.caption.19}\protected@file@percent }
\newlabel{arduino-phone}{{2.7}{15}{Arduino Phone\relax }{figure.caption.19}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.8}{\ignorespaces 3D printer\relax }}{15}{figure.caption.22}\protected@file@percent }
\newlabel{3dprinter}{{2.8}{15}{3D printer\relax }{figure.caption.22}{}}
\@writefile{toc}{\contentsline {paragraph}{Candy sorting machine:}{15}{section*.20}\protected@file@percent }
\@writefile{toc}{\contentsline {paragraph}{3D printers:}{15}{section*.21}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {2.4}Shield}{15}{section.2.4}\protected@file@percent }
\newlabel{shield-hw}{{2.4}{15}{Shield}{section.2.4}{}}
\citation{shield-ref}
\@writefile{lof}{\contentsline {figure}{\numberline {2.9}{\ignorespaces PCB image of the Shield}}{16}{figure.caption.23}\protected@file@percent }
\newlabel{fig:PCB-image}{{2.9}{16}{PCB image of the Shield}{figure.caption.23}{}}
\newlabel{1@xvr}{{}{16}}
\newlabel{1@vr}{{}{16}}
\newlabel{2@xvr}{{}{16}}
\newlabel{2@vr}{{}{16}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.10}{\ignorespaces Pictorial representation of the schematic of the Shield\relax }}{17}{figure.caption.24}\protected@file@percent }
\newlabel{fig:sch-shield}{{2.10}{17}{Pictorial representation of the schematic of the Shield\relax }{figure.caption.24}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.11}{\ignorespaces PCB of the Shield\relax }}{17}{figure.caption.25}\protected@file@percent }
\newlabel{fig:shield-photo}{{2.11}{17}{PCB of the Shield\relax }{figure.caption.25}{}}
\@writefile{lot}{\contentsline {table}{\numberline {2.2}{\ignorespaces Values of components used in the Shield\relax }}{18}{table.caption.26}\protected@file@percent }
\newlabel{tab:shield-values}{{2.2}{18}{Values of components used in the Shield\relax }{table.caption.26}{}}
\@writefile{lot}{\contentsline {table}{\numberline {2.3}{\ignorespaces Information on sensors and pin numbers\relax }}{18}{table.caption.27}\protected@file@percent }
\newlabel{shield-table}{{2.3}{18}{Information on sensors and pin numbers\relax }{table.caption.27}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {2.12}{\ignorespaces Picture of the Shield with all components\relax }}{19}{figure.caption.28}\protected@file@percent }
\newlabel{shield}{{2.12}{19}{Picture of the Shield with all components\relax }{figure.caption.28}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.5}Experimental Test Bed}{19}{section.2.5}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {2.4}{\ignorespaces Lists of components to work with the breadboard\relax }}{20}{table.caption.29}\protected@file@percent }
\newlabel{tab:bread-comps}{{2.4}{20}{Lists of components to work with the breadboard\relax }{table.caption.29}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2.6}Doing the Experiments with a Breadboard}{20}{section.2.6}\protected@file@percent }
\newlabel{sec:hw-bread}{{2.6}{20}{Doing the Experiments with a Breadboard}{section.2.6}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {3}Communication between Software and Arduino}{21}{chapter.3}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{sec:sw-env}{{3}{21}{Communication between Software and Arduino}{chapter.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.1}Arduino IDE}{22}{section.3.1}\protected@file@percent }
\newlabel{arduino-ide}{{3.1}{22}{Arduino IDE}{section.3.1}{}}
\newlabel{sec:ard-start}{{3.1}{22}{Arduino IDE}{section.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.1}Downloading and installing on Windows}{22}{subsection.3.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.2}Downloading and installing on GNU/Linux Ubuntu}{23}{subsection.3.1.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {3.1}{\ignorespaces Windows device manager\relax }}{24}{figure.caption.30}\protected@file@percent }
\newlabel{win-device-manager}{{3.1}{24}{Windows device manager\relax }{figure.caption.30}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.2}{\ignorespaces Windows device manager\relax }}{24}{figure.caption.31}\protected@file@percent }
\newlabel{win-device-manager-com}{{3.2}{24}{Windows device manager\relax }{figure.caption.31}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.3}{\ignorespaces Windows update driver option\relax }}{25}{figure.caption.32}\protected@file@percent }
\newlabel{win-dri-update}{{3.3}{25}{Windows update driver option\relax }{figure.caption.32}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.4}{\ignorespaces Linux terminal to launch Arduino IDE\relax }}{26}{figure.caption.33}\protected@file@percent }
\newlabel{arduino-opt}{{3.4}{26}{Linux terminal to launch Arduino IDE\relax }{figure.caption.33}{}}
\newlabel{itm:port-check}{{9}{26}{Downloading and installing on GNU/Linux Ubuntu}{Item.47}{}}
\newlabel{itm:port-access}{{10}{26}{Downloading and installing on GNU/Linux Ubuntu}{Item.48}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.3}Arduino Development Environment}{26}{subsection.3.1.3}\protected@file@percent }
\newlabel{sec:Arduino-IDE}{{3.1.3}{26}{Arduino Development Environment}{subsection.3.1.3}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.5}{\ignorespaces Arduino IDE\relax }}{27}{figure.caption.34}\protected@file@percent }
\newlabel{ard-ide}{{3.5}{27}{Arduino IDE\relax }{figure.caption.34}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.4}Testing Arduino with a sample program}{29}{subsection.3.1.4}\protected@file@percent }
\newlabel{sec:testing-arduino}{{3.1.4}{29}{Testing Arduino with a sample program}{subsection.3.1.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1.5}FLOSS Firmware}{30}{subsection.3.1.5}\protected@file@percent }
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{3.{1}}{}}{30}{ardmass.3.1}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {3.{1}}First 10 lines of the FLOSS firmware}{30}{ardmass.3.1}\protected@file@percent }
\newlabel{3@xvr}{{}{30}}
\newlabel{3@vr}{{}{30}}
\citation{scilab-ref}
\citation{scilab-interop}
\newlabel{ard:firmware}{{3.{1}}{31}{FLOSS Firmware}{ardmass.3.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/tools/floss-firmware/floss\textendash firmware.ino}{31}{lstlisting.3.-1}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {3.2}Scilab}{31}{section.3.2}\protected@file@percent }
\newlabel{sec:sci-start}{{3.2}{31}{Scilab}{section.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.1}Downloading and installing on Windows}{32}{subsection.3.2.1}\protected@file@percent }
\newlabel{scilab-installation-windows}{{3.2.1}{32}{Downloading and installing on Windows}{subsection.3.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.2}Downloading and installing on GNU/Linux Ubuntu}{32}{subsection.3.2.2}\protected@file@percent }
\newlabel{scilab-installation-linux}{{3.2.2}{32}{Downloading and installing on GNU/Linux Ubuntu}{subsection.3.2.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.6}{\ignorespaces Linux terminal to launch Scilab\relax }}{33}{figure.caption.35}\protected@file@percent }
\newlabel{linux-cd}{{3.6}{33}{Linux terminal to launch Scilab\relax }{figure.caption.35}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.3}Scilab-Arduino toolbox}{33}{subsection.3.2.3}\protected@file@percent }
\newlabel{sec:sci-ard-toolbox}{{3.2.3}{33}{Scilab-Arduino toolbox}{subsection.3.2.3}{}}
\newlabel{4@xvr}{{}{34}}
\newlabel{4@vr}{{}{34}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.7}{\ignorespaces Browsing toolbox directory\relax }}{35}{figure.caption.36}\protected@file@percent }
\newlabel{scilab-browse}{{3.7}{35}{Browsing toolbox directory\relax }{figure.caption.36}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.8}{\ignorespaces Output of builder.sce\relax }}{35}{figure.caption.37}\protected@file@percent }
\newlabel{builder}{{3.8}{35}{Output of builder.sce\relax }{figure.caption.37}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.9}{\ignorespaces Output of loader.sce\relax }}{36}{figure.caption.38}\protected@file@percent }
\newlabel{loader}{{3.9}{36}{Output of loader.sce\relax }{figure.caption.38}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.4}Identifying Arduino communication port number}{36}{subsection.3.2.4}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {3.10}{\ignorespaces Device Manager in windows\relax }}{37}{figure.caption.39}\protected@file@percent }
\newlabel{dev-mgr}{{3.10}{37}{Device Manager in windows\relax }{figure.caption.39}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.11}{\ignorespaces COM port properties window\relax }}{38}{figure.caption.40}\protected@file@percent }
\newlabel{com}{{3.11}{38}{COM port properties window\relax }{figure.caption.40}{}}
\newlabel{fn:port}{{4}{38}{}{Hfootnote.4}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.12}{\ignorespaces Port number on Linux terminal\relax }}{39}{figure.caption.41}\protected@file@percent }
\newlabel{linux-port}{{3.12}{39}{Port number on Linux terminal\relax }{figure.caption.41}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.5}Testing Scilab-Arduino toolbox}{39}{subsection.3.2.5}\protected@file@percent }
\newlabel{sec:testing-scilab-arduino}{{3.2.5}{39}{Testing Scilab-Arduino toolbox}{subsection.3.2.5}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/tools/scilab/test\textunderscore firmware.sce}{40}{lstlisting.3.-2}\protected@file@percent }
\newlabel{fn:firmware}{{5}{40}{}{Hfootnote.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.13}{\ignorespaces Scilab test code output\relax }}{41}{figure.caption.42}\protected@file@percent }
\newlabel{test-console}{{3.13}{41}{Scilab test code output\relax }{figure.caption.42}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.14}{\ignorespaces Arduino toolbox functions used in this book\relax }}{41}{figure.caption.43}\protected@file@percent }
\newlabel{func}{{3.14}{41}{Arduino toolbox functions used in this book\relax }{figure.caption.43}{}}
\citation{xcos-ref}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2.6}Firmware}{42}{subsection.3.2.6}\protected@file@percent }
\newlabel{sec:test-firmware-scilab}{{3.2.6}{42}{Firmware}{subsection.3.2.6}{}}
\@writefile{cod}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{3.{1}}{}}{42}{codemass.3.1}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {3.{1}}A Scilab code to check whether the firmware is properly installed or not}{42}{codemass.3.1}\protected@file@percent }
\newlabel{5@xvr}{{}{42}}
\newlabel{5@vr}{{}{42}}
\newlabel{sci:test-firmware}{{3.{1}}{42}{Firmware}{codemass.3.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/tools/scilab/test\textunderscore firmware.sce}{42}{lstlisting.3.-4}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {3.3}Xcos}{42}{section.3.3}\protected@file@percent }
\newlabel{sec:xcos-start}{{3.3}{42}{Xcos}{section.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.1}Downloading, installing and testing}{42}{subsection.3.3.1}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {3.15}{\ignorespaces Sine generator in palette browser\relax }}{43}{figure.caption.44}\protected@file@percent }
\newlabel{sine-blk}{{3.15}{43}{Sine generator in palette browser\relax }{figure.caption.44}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.16}{\ignorespaces CSCOPE block in xcos\relax }}{44}{figure.caption.45}\protected@file@percent }
\newlabel{plot-blk}{{3.16}{44}{CSCOPE block in xcos\relax }{figure.caption.45}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.2}Use case}{44}{subsection.3.3.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {3.17}{\ignorespaces CLOCK\_c block in xcos\relax }}{45}{figure.caption.46}\protected@file@percent }
\newlabel{clk-blk}{{3.17}{45}{CLOCK\_c block in xcos\relax }{figure.caption.46}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.18}{\ignorespaces Sine generator in Xcos\relax }}{45}{figure.caption.47}\protected@file@percent }
\newlabel{sine-gen}{{3.18}{45}{Sine generator in Xcos\relax }{figure.caption.47}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.19}{\ignorespaces Sine generator Xcos output\relax }}{46}{figure.caption.48}\protected@file@percent }
\newlabel{sine-output}{{3.19}{46}{Sine generator Xcos output\relax }{figure.caption.48}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.20}{\ignorespaces CSCOPE configuration window\relax }}{46}{figure.caption.49}\protected@file@percent }
\newlabel{cscope-config}{{3.20}{46}{CSCOPE configuration window\relax }{figure.caption.49}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.21}{\ignorespaces Simulation setup window\relax }}{47}{figure.caption.50}\protected@file@percent }
\newlabel{sim-setup}{{3.21}{47}{Simulation setup window\relax }{figure.caption.50}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3.3}Xcos-Arduino}{47}{subsection.3.3.3}\protected@file@percent }
\citation{python-ref}
\@writefile{lof}{\contentsline {figure}{\numberline {3.22}{\ignorespaces Palette browser showing Arduino blocks\relax }}{48}{figure.caption.51}\protected@file@percent }
\newlabel{arduino-palette}{{3.22}{48}{Palette browser showing Arduino blocks\relax }{figure.caption.51}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.23}{\ignorespaces Xcos block help\relax }}{48}{figure.caption.52}\protected@file@percent }
\newlabel{blk-help}{{3.23}{48}{Xcos block help\relax }{figure.caption.52}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3.4}Python}{48}{section.3.4}\protected@file@percent }
\newlabel{sec:python-start}{{3.4}{48}{Python}{section.3.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4.1}Downloading and installing on Windows}{49}{subsection.3.4.1}\protected@file@percent }
\newlabel{py-windows}{{3.4.1}{49}{Downloading and installing on Windows}{subsection.3.4.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.24}{\ignorespaces Installing Python 3 on Windows\relax }}{50}{figure.caption.53}\protected@file@percent }
\newlabel{python-windows}{{3.24}{50}{Installing Python 3 on Windows\relax }{figure.caption.53}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.25}{\ignorespaces Launching the Command Prompt on Windows\relax }}{50}{figure.caption.54}\protected@file@percent }
\newlabel{windows-run}{{3.25}{50}{Launching the Command Prompt on Windows\relax }{figure.caption.54}{}}
\citation{pySerial}
\@writefile{lof}{\contentsline {figure}{\numberline {3.26}{\ignorespaces Command Prompt on Windows\relax }}{51}{figure.caption.55}\protected@file@percent }
\newlabel{windows-cmd}{{3.26}{51}{Command Prompt on Windows\relax }{figure.caption.55}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4.2}Downloading and installing on GNU/Linux Ubuntu}{52}{subsection.3.4.2}\protected@file@percent }
\newlabel{py-linux}{{3.4.2}{52}{Downloading and installing on GNU/Linux Ubuntu}{subsection.3.4.2}{}}
\citation{pySerial}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4.3}Python-Arduino toolbox}{53}{subsection.3.4.3}\protected@file@percent }
\newlabel{sec:python-toolbox}{{3.4.3}{53}{Python-Arduino toolbox}{subsection.3.4.3}{}}
\newlabel{6@xvr}{{}{53}}
\newlabel{6@vr}{{}{53}}
\citation{pySerial}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4.4}Firmware}{54}{subsection.3.4.4}\protected@file@percent }
\newlabel{sec:test-firmware-python}{{3.4.4}{54}{Firmware}{subsection.3.4.4}{}}
\@writefile{pyd}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {pymass}{{Python Code}{3.{1}}{}}{54}{pymass.3.1}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {3.{1}}A Python script to check whether the firmware is properly installed or not}{54}{pymass.3.1}\protected@file@percent }
\citation{julia-ref}
\newlabel{7@xvr}{{}{55}}
\newlabel{7@vr}{{}{55}}
\newlabel{py:test-firmware}{{3.{1}}{55}{Firmware}{pymass.3.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/tools/python/test\textunderscore firmware.py}{55}{lstlisting.3.-5}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {3.5}Julia}{56}{section.3.5}\protected@file@percent }
\newlabel{sec:julia-start}{{3.5}{56}{Julia}{section.3.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.1}Downloading and installing on Windows}{56}{subsection.3.5.1}\protected@file@percent }
\newlabel{julia-install-windows}{{3.5.1}{56}{Downloading and installing on Windows}{subsection.3.5.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.27}{\ignorespaces Julia's website to download 64-bit Windows/Linux binaries\relax }}{57}{figure.caption.56}\protected@file@percent }
\newlabel{julia-download}{{3.27}{57}{Julia's website to download 64-bit Windows/Linux binaries\relax }{figure.caption.56}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.28}{\ignorespaces Installing Julia 1.6.0 on Windows\relax }}{57}{figure.caption.57}\protected@file@percent }
\newlabel{julia-windows-install}{{3.28}{57}{Installing Julia 1.6.0 on Windows\relax }{figure.caption.57}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.29}{\ignorespaces Launching the Command Prompt on Windows\relax }}{58}{figure.caption.58}\protected@file@percent }
\newlabel{windows-run-julia}{{3.29}{58}{Launching the Command Prompt on Windows\relax }{figure.caption.58}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.30}{\ignorespaces Command Prompt on Windows\relax }}{58}{figure.caption.59}\protected@file@percent }
\newlabel{windows-cmd-julia}{{3.30}{58}{Command Prompt on Windows\relax }{figure.caption.59}{}}
\citation{julia-serial-ports}
\@writefile{lof}{\contentsline {figure}{\numberline {3.31}{\ignorespaces Windows command prompt to launch Julia REPL\relax }}{60}{figure.caption.60}\protected@file@percent }
\newlabel{julia-repl-windows}{{3.31}{60}{Windows command prompt to launch Julia REPL\relax }{figure.caption.60}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.32}{\ignorespaces Windows command prompt to enter Pkg REPL in Julia\relax }}{60}{figure.caption.61}\protected@file@percent }
\newlabel{julia-pkg-windows}{{3.32}{60}{Windows command prompt to enter Pkg REPL in Julia\relax }{figure.caption.61}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.2}Downloading and installing GNU/Linux Ubuntu}{61}{subsection.3.5.2}\protected@file@percent }
\newlabel{julia-install-linux}{{3.5.2}{61}{Downloading and installing GNU/Linux Ubuntu}{subsection.3.5.2}{}}
\citation{julia-serial-ports}
\@writefile{lof}{\contentsline {figure}{\numberline {3.33}{\ignorespaces Linux terminal to launch Julia REPL\relax }}{63}{figure.caption.62}\protected@file@percent }
\newlabel{julia-repl}{{3.33}{63}{Linux terminal to launch Julia REPL\relax }{figure.caption.62}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.34}{\ignorespaces Linux terminal to enter Pkg REPL in Julia\relax }}{64}{figure.caption.63}\protected@file@percent }
\newlabel{julia-pkg}{{3.34}{64}{Linux terminal to enter Pkg REPL in Julia\relax }{figure.caption.63}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.3}Julia-Arduino toolbox}{65}{subsection.3.5.3}\protected@file@percent }
\newlabel{sec:julia-toolbox}{{3.5.3}{65}{Julia-Arduino toolbox}{subsection.3.5.3}{}}
\newlabel{8@xvr}{{}{65}}
\newlabel{8@vr}{{}{65}}
\citation{om-ref}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5.4}Firmware}{66}{subsection.3.5.4}\protected@file@percent }
\newlabel{sec:test-firmware-julia}{{3.5.4}{66}{Firmware}{subsection.3.5.4}{}}
\@writefile{cod}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{3.{1}}{}}{66}{juliamass.3.1}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {3.{1}}A Julia source file to check whether the firmware is properly installed or not}{66}{juliamass.3.1}\protected@file@percent }
\newlabel{9@xvr}{{}{66}}
\newlabel{9@vr}{{}{66}}
\newlabel{julia:test-firmware}{{3.{1}}{66}{Firmware}{juliamass.3.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/tools/julia/test\textunderscore firmware.jl}{66}{lstlisting.3.-6}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {3.6}OpenModelica}{66}{section.3.6}\protected@file@percent }
\newlabel{sec:OpenModelica-start}{{3.6}{66}{OpenModelica}{section.3.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.1}Downloading and installing on Windows}{67}{subsection.3.6.1}\protected@file@percent }
\newlabel{openmodelica-install-windows}{{3.6.1}{67}{Downloading and installing on Windows}{subsection.3.6.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.35}{\ignorespaces Allowing Microsoft Defender to run the executable file\relax }}{68}{figure.caption.64}\protected@file@percent }
\newlabel{om-run-anyway}{{3.35}{68}{Allowing Microsoft Defender to run the executable file\relax }{figure.caption.64}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.2}Downloading and installing on GNU/Linux Ubuntu}{68}{subsection.3.6.2}\protected@file@percent }
\newlabel{openmodelica-install-linux}{{3.6.2}{68}{Downloading and installing on GNU/Linux Ubuntu}{subsection.3.6.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.36}{\ignorespaces Setup of Modelica Standard Library version\relax }}{69}{figure.caption.65}\protected@file@percent }
\newlabel{om-help}{{3.36}{69}{Setup of Modelica Standard Library version\relax }{figure.caption.65}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.3}Simulating models in OpenModelica}{69}{subsection.3.6.3}\protected@file@percent }
\newlabel{OpenModelica-code-execution}{{3.6.3}{69}{Simulating models in OpenModelica}{subsection.3.6.3}{}}
\citation{om-ref}
\@writefile{lof}{\contentsline {figure}{\numberline {3.37}{\ignorespaces User Interface of OMEdit\relax }}{71}{figure.caption.66}\protected@file@percent }
\newlabel{om-ui}{{3.37}{71}{User Interface of OMEdit\relax }{figure.caption.66}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.38}{\ignorespaces Opening a model in OMEdit\relax }}{71}{figure.caption.67}\protected@file@percent }
\newlabel{om-model-open}{{3.38}{71}{Opening a model in OMEdit\relax }{figure.caption.67}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.39}{\ignorespaces Opening a model in diagram view in OMEdit\relax }}{72}{figure.caption.68}\protected@file@percent }
\newlabel{om-modeling}{{3.39}{72}{Opening a model in diagram view in OMEdit\relax }{figure.caption.68}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.40}{\ignorespaces Different views of a model in OMEdit\relax }}{72}{figure.caption.69}\protected@file@percent }
\newlabel{om-views}{{3.40}{72}{Different views of a model in OMEdit\relax }{figure.caption.69}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.41}{\ignorespaces Opening a model in text view in OMEdit\relax }}{73}{figure.caption.70}\protected@file@percent }
\newlabel{om-text-view}{{3.41}{73}{Opening a model in text view in OMEdit\relax }{figure.caption.70}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.42}{\ignorespaces Simulating a model in OMEdit\relax }}{74}{figure.caption.71}\protected@file@percent }
\newlabel{om-simulate}{{3.42}{74}{Simulating a model in OMEdit\relax }{figure.caption.71}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {3.43}{\ignorespaces Output window of OMEdit\relax }}{74}{figure.caption.72}\protected@file@percent }
\newlabel{om-sim-success}{{3.43}{74}{Output window of OMEdit\relax }{figure.caption.72}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.4}OpenModelica-Arduino toolbox}{75}{subsection.3.6.4}\protected@file@percent }
\newlabel{sec:load-om-toolbox}{{3.6.4}{75}{OpenModelica-Arduino toolbox}{subsection.3.6.4}{}}
\newlabel{10@xvr}{{}{75}}
\newlabel{10@vr}{{}{75}}
\newlabel{itm:library}{{4}{75}{OpenModelica-Arduino toolbox}{Item.158}{}}
\newlabel{itm:locate}{{5}{76}{OpenModelica-Arduino toolbox}{Item.159}{}}
\newlabel{itm:simulate}{{6}{76}{OpenModelica-Arduino toolbox}{Item.160}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6.5}Firmware}{76}{subsection.3.6.5}\protected@file@percent }
\newlabel{om-firmware}{{3.6.5}{76}{Firmware}{subsection.3.6.5}{}}
\newlabel{sec:test-firmware-OpenModelica}{{3.6.5}{76}{Firmware}{subsection.3.6.5}{}}
\@writefile{cod}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{3.{1}}{}}{76}{OpenModelicamass.3.1}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {3.{1}}An OpenModelica code/model to check whether the firmware is properly installed or not}{76}{OpenModelicamass.3.1}\protected@file@percent }
\newlabel{11@xvr}{{}{76}}
\newlabel{11@vr}{{}{76}}
\newlabel{OpenModelica:test-firmware}{{3.{1}}{76}{Firmware}{OpenModelicamass.3.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/tools/openmodelica/windows//test\textunderscore firmware.mo}{76}{lstlisting.3.-7}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {3.44}{\ignorespaces Examples provided in OpenModelica-Arduino toolbox\relax }}{77}{figure.caption.73}\protected@file@percent }
\newlabel{om-examples-toolbox}{{3.44}{77}{Examples provided in OpenModelica-Arduino toolbox\relax }{figure.caption.73}{}}
\@writefile{toc}{\contentsline {chapter}{\numberline {4}Interfacing a Light Emitting Diode}{79}{chapter.4}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{led}{{4}{79}{Interfacing a Light Emitting Diode}{chapter.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.1}Preliminaries}{79}{section.4.1}\protected@file@percent }
\newlabel{sec:led-pril}{{4.1}{79}{Preliminaries}{section.4.1}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.1}{\ignorespaces Light Emitting Diode\relax }}{80}{figure.caption.74}\protected@file@percent }
\newlabel{fig:ledsym}{{4.1}{80}{Light Emitting Diode\relax }{figure.caption.74}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.2}{\ignorespaces Internal connection diagram for the RGB LED on the Shield\relax }}{80}{figure.caption.75}\protected@file@percent }
\newlabel{fig:ledblock}{{4.2}{80}{Internal connection diagram for the RGB LED on the Shield\relax }{figure.caption.75}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.3}{\ignorespaces Connecting Arduino Uno\ and Shield\relax }}{81}{figure.caption.76}\protected@file@percent }
\newlabel{fig:uno-shield-connect}{{4.3}{81}{Connecting \arduino \ and Shield\relax }{figure.caption.76}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.2}Connecting an RGB LED using breadboard}{81}{section.4.2}\protected@file@percent }
\newlabel{sec:led-bread}{{4.2}{81}{Connecting an RGB LED using breadboard}{section.4.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.4}{\ignorespaces An RGB LED with Arduino Uno\ using a breadboard\relax }}{82}{figure.caption.77}\protected@file@percent }
\newlabel{fig:ard-rgb-bread}{{4.4}{82}{An RGB LED with \arduino \ using a breadboard\relax }{figure.caption.77}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4.3}Lighting the LED from Arduino IDE}{82}{section.4.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.1}Lighting the LED}{82}{subsection.4.3.1}\protected@file@percent }
\newlabel{sec:light-ard}{{4.3.1}{82}{Lighting the LED}{subsection.4.3.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/arduino/led\textendash blue/led\textendash blue.ino}{83}{lstlisting.4.-8}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/arduino/led\textendash blue/led\textendash blue.ino}{83}{lstlisting.4.-9}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/arduino/led\textendash blue\textendash delay/led\textendash blue\textendash delay.ino}{83}{lstlisting.4.-10}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/arduino/led\textendash blue\textendash delay/led\textendash blue\textendash delay.ino}{83}{lstlisting.4.-11}\protected@file@percent }
\@writefile{toc}{\contentsline {paragraph}{Note:}{84}{section*.78}\protected@file@percent }
\@writefile{toc}{\contentsline {paragraph}{Note:}{84}{section*.80}\protected@file@percent }
\@writefile{thm}{\contentsline {egmass}{{Exercise}{4.{1}}{}}{84}{egmass.4.1}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {4.5}{\ignorespaces LED experiments directly on Arduino Uno\ board, without the Shield\relax }}{85}{figure.caption.79}\protected@file@percent }
\newlabel{fig:led-uno}{{4.5}{85}{LED experiments directly on \arduino \ board, without the Shield\relax }{figure.caption.79}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3.2}Arduino Code}{85}{subsection.4.3.2}\protected@file@percent }
\newlabel{sec:led-arduino-code}{{4.3.2}{85}{Arduino Code}{subsection.4.3.2}{}}
\@writefile{ard}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{4.{1}}{}}{85}{ardmass.4.1}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {4.{1}}Turning on the blue LED}{85}{ardmass.4.1}\protected@file@percent }
\newlabel{12@xvr}{{}{85}}
\newlabel{12@vr}{{}{85}}
\newlabel{ard:led-blue}{{4.{1}}{85}{Arduino Code}{ardmass.4.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/arduino/led\textendash blue/led\textendash blue.ino}{85}{lstlisting.4.-13}\protected@file@percent }
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{4.{2}}{}}{86}{ardmass.4.2}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {4.{2}}Turning on the blue LED and turning it off after two seconds}{86}{ardmass.4.2}\protected@file@percent }
\newlabel{13@xvr}{{}{86}}
\newlabel{13@vr}{{}{86}}
\newlabel{ard:led-blue-delay}{{4.{2}}{86}{Arduino Code}{ardmass.4.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/arduino/led\textendash blue\textendash delay/led\textendash blue\textendash delay.ino}{86}{lstlisting.4.-14}\protected@file@percent }
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{4.{3}}{}}{86}{ardmass.4.3}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {4.{3}}Turning on blue and red LEDs for 5 seconds and then turning them off one by one}{86}{ardmass.4.3}\protected@file@percent }
\newlabel{14@xvr}{{}{86}}
\newlabel{14@vr}{{}{86}}
\newlabel{ard:led-blue-red}{{4.{3}}{86}{Arduino Code}{ardmass.4.3}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/arduino/led\textendash blue\textendash red/led\textendash blue\textendash red.ino}{86}{lstlisting.4.-15}\protected@file@percent }
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{4.{4}}{}}{86}{ardmass.4.4}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {4.{4}}Blinking the green LED}{86}{ardmass.4.4}\protected@file@percent }
\newlabel{15@xvr}{{}{86}}
\newlabel{15@vr}{{}{86}}
\newlabel{ard:led-blink}{{4.{4}}{86}{Arduino Code}{ardmass.4.4}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/arduino/led\textendash green\textendash blink/led\textendash green\textendash blink.ino}{86}{lstlisting.4.-16}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {4.4}Lighting the LED from Scilab}{87}{section.4.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.4.1}Lighting the LED}{87}{subsection.4.4.1}\protected@file@percent }
\newlabel{sec:light-sci}{{4.4.1}{87}{Lighting the LED}{subsection.4.4.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/scilab/led\textendash blue.sce}{87}{lstlisting.4.-18}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/scilab/led\textendash blue.sce}{88}{lstlisting.4.-20}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/scilab/led\textendash blue.sce}{88}{lstlisting.4.-22}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/scilab/led\textendash blue\textendash delay.sce}{89}{lstlisting.4.-23}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/scilab/led\textendash blue\textendash delay.sce}{89}{lstlisting.4.-24}\protected@file@percent }
\@writefile{thm}{\contentsline {egmass}{{Exercise}{4.{2}}{}}{89}{egmass.4.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.4.2}Scilab Code}{89}{subsection.4.4.2}\protected@file@percent }
\newlabel{sec:led-scilab-code}{{4.4.2}{89}{Scilab Code}{subsection.4.4.2}{}}
\@writefile{cod}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{4.{1}}{}}{89}{codemass.4.1}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {4.{1}}Turning on the blue LED}{89}{codemass.4.1}\protected@file@percent }
\newlabel{16@xvr}{{}{89}}
\newlabel{16@vr}{{}{89}}
\newlabel{sci:led-blue}{{4.{1}}{89}{Scilab Code}{codemass.4.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/scilab/led\textendash blue.sce}{89}{lstlisting.4.-25}\protected@file@percent }
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{4.{2}}{}}{90}{codemass.4.2}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {4.{2}}Turning on the blue LED and turning it off after two seconds}{90}{codemass.4.2}\protected@file@percent }
\newlabel{17@xvr}{{}{90}}
\newlabel{17@vr}{{}{90}}
\newlabel{sci:led-blue-delay}{{4.{2}}{90}{Scilab Code}{codemass.4.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/scilab/led\textendash blue\textendash delay.sce}{90}{lstlisting.4.-26}\protected@file@percent }
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{4.{3}}{}}{90}{codemass.4.3}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {4.{3}}Turning on blue and red LEDs for 5 seconds and then turning them off one by one}{90}{codemass.4.3}\protected@file@percent }
\newlabel{18@xvr}{{}{90}}
\newlabel{18@vr}{{}{90}}
\newlabel{sci:led-blue-red}{{4.{3}}{90}{Scilab Code}{codemass.4.3}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/scilab/led\textendash blue\textendash red.sce}{90}{lstlisting.4.-27}\protected@file@percent }
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{4.{4}}{}}{90}{codemass.4.4}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {4.{4}}Blinking the green LED}{90}{codemass.4.4}\protected@file@percent }
\newlabel{19@xvr}{{}{90}}
\newlabel{19@vr}{{}{90}}
\newlabel{sci:led-green-blink}{{4.{4}}{90}{Scilab Code}{codemass.4.4}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/scilab/led\textendash green\textendash blink.sce}{91}{lstlisting.4.-28}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {4.5}Lighting the LED from Scilab Xcos}{91}{section.4.5}\protected@file@percent }
\newlabel{sec:light-xcos}{{4.5}{91}{Lighting the LED from Scilab Xcos}{section.4.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.6}{\ignorespaces Turning the blue LED on through Xcos}}{92}{figure.caption.81}\protected@file@percent }
\newlabel{21@xvr}{{}{92}}
\newlabel{21@vr}{{}{92}}
\newlabel{fig:led-blue}{{4.6}{92}{Turning the blue LED on through Xcos}{figure.caption.81}{}}
\@writefile{lot}{\contentsline {table}{\numberline {4.1}{\ignorespaces Parameters to light the blue LED in Xcos\relax }}{92}{table.caption.82}\protected@file@percent }
\newlabel{tab:led-blue}{{4.1}{92}{Parameters to light the blue LED in Xcos\relax }{table.caption.82}{}}
\newlabel{22@xvr}{{}{92}}
\newlabel{22@vr}{{}{92}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.7}{\ignorespaces Turning the blue LED on through Xcos for two seconds}}{93}{figure.caption.83}\protected@file@percent }
\newlabel{24@xvr}{{}{93}}
\newlabel{24@vr}{{}{93}}
\newlabel{fig:led-blue-delay}{{4.7}{93}{Turning the blue LED on through Xcos for two seconds}{figure.caption.83}{}}
\@writefile{lot}{\contentsline {table}{\numberline {4.2}{\ignorespaces Parameters to light the blue LED in Xcos for two seconds\relax }}{93}{table.caption.84}\protected@file@percent }
\newlabel{tab:led-blue-delay}{{4.2}{93}{Parameters to light the blue LED in Xcos for two seconds\relax }{table.caption.84}{}}
\newlabel{25@xvr}{{}{93}}
\newlabel{25@vr}{{}{93}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.8}{\ignorespaces Turning the blue and red LEDs on through Xcos and turning them off one by one}}{94}{figure.caption.85}\protected@file@percent }
\newlabel{27@xvr}{{}{94}}
\newlabel{27@vr}{{}{94}}
\newlabel{fig:led-blue-red}{{4.8}{94}{Turning the blue and red LEDs on through Xcos and turning them off one by one}{figure.caption.85}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {4.9}{\ignorespaces Blinking the green LED every second through Xcos}}{94}{figure.caption.87}\protected@file@percent }
\newlabel{30@xvr}{{}{94}}
\newlabel{30@vr}{{}{94}}
\newlabel{fig:led-green-blink}{{4.9}{94}{Blinking the green LED every second through Xcos}{figure.caption.87}{}}
\@writefile{lot}{\contentsline {table}{\numberline {4.3}{\ignorespaces Parameters to turn the blue and red LEDs on and then turn them off one by one\relax }}{95}{table.caption.86}\protected@file@percent }
\newlabel{tab:led-blue-red}{{4.3}{95}{Parameters to turn the blue and red LEDs on and then turn them off one by one\relax }{table.caption.86}{}}
\newlabel{28@xvr}{{}{95}}
\newlabel{28@vr}{{}{95}}
\@writefile{thm}{\contentsline {egmass}{{Exercise}{4.{3}}{}}{95}{egmass.4.3}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {4.4}{\ignorespaces Parameters to make the green LED blink every second\relax }}{96}{table.caption.88}\protected@file@percent }
\newlabel{tab:led-green-blink}{{4.4}{96}{Parameters to make the green LED blink every second\relax }{table.caption.88}{}}
\newlabel{31@xvr}{{}{96}}
\newlabel{31@vr}{{}{96}}
\@writefile{toc}{\contentsline {section}{\numberline {4.6}Lighting the LED from Python}{96}{section.4.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.6.1}Lighting the LED}{96}{subsection.4.6.1}\protected@file@percent }
\newlabel{sec:light-py}{{4.6.1}{96}{Lighting the LED}{subsection.4.6.1}{}}
\citation{pySerial}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue.py}{97}{lstlisting.4.-29}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue.py}{97}{lstlisting.4.-30}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue.py}{97}{lstlisting.4.-31}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue.py}{97}{lstlisting.4.-32}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue.py}{98}{lstlisting.4.-33}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue.py}{98}{lstlisting.4.-34}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue\textendash delay.py}{98}{lstlisting.4.-35}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue\textendash delay.py}{98}{lstlisting.4.-36}\protected@file@percent }
\@writefile{thm}{\contentsline {egmass}{{Exercise}{4.{4}}{}}{99}{egmass.4.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.6.2}Python Code}{99}{subsection.4.6.2}\protected@file@percent }
\newlabel{sec:led-python-code}{{4.6.2}{99}{Python Code}{subsection.4.6.2}{}}
\@writefile{pyd}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {pymass}{{Python Code}{4.{1}}{}}{99}{pymass.4.1}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {4.{1}}Turning on the blue LED}{99}{pymass.4.1}\protected@file@percent }
\newlabel{32@xvr}{{}{99}}
\newlabel{32@vr}{{}{99}}
\newlabel{py:led-blue}{{4.{1}}{99}{Python Code}{pymass.4.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue.py}{99}{lstlisting.4.-37}\protected@file@percent }
\@writefile{thm}{\contentsline {pymass}{{Python Code}{4.{2}}{}}{100}{pymass.4.2}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {4.{2}}Turning on the blue LED and turning it off after two seconds}{100}{pymass.4.2}\protected@file@percent }
\newlabel{33@xvr}{{}{100}}
\newlabel{33@vr}{{}{100}}
\newlabel{py:led-blue-delay}{{4.{2}}{100}{Python Code}{pymass.4.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue\textendash delay.py}{100}{lstlisting.4.-38}\protected@file@percent }
\@writefile{thm}{\contentsline {pymass}{{Python Code}{4.{3}}{}}{101}{pymass.4.3}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {4.{3}}Turning on blue and red LEDs for 5 seconds and then turning them off one by one}{101}{pymass.4.3}\protected@file@percent }
\newlabel{34@xvr}{{}{101}}
\newlabel{34@vr}{{}{101}}
\newlabel{py:led-blue-red}{{4.{3}}{101}{Python Code}{pymass.4.3}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash blue\textendash red.py}{101}{lstlisting.4.-39}\protected@file@percent }
\@writefile{thm}{\contentsline {pymass}{{Python Code}{4.{4}}{}}{102}{pymass.4.4}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {4.{4}}Blinking the green LED}{102}{pymass.4.4}\protected@file@percent }
\newlabel{35@xvr}{{}{102}}
\newlabel{35@vr}{{}{102}}
\newlabel{py:led-green-blink}{{4.{4}}{102}{Python Code}{pymass.4.4}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/python/led\textendash green\textendash blink.py}{102}{lstlisting.4.-40}\protected@file@percent }
\citation{julia-serial-ports}
\@writefile{toc}{\contentsline {section}{\numberline {4.7}Lighting the LED from Julia}{103}{section.4.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.1}Lighting the LED}{103}{subsection.4.7.1}\protected@file@percent }
\newlabel{sec:light-julia}{{4.7.1}{103}{Lighting the LED}{subsection.4.7.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash blue.jl}{104}{lstlisting.4.-41}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash blue.jl}{104}{lstlisting.4.-42}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash blue.jl}{104}{lstlisting.4.-43}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash blue.jl}{104}{lstlisting.4.-44}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash blue\textendash delay.jl}{104}{lstlisting.4.-45}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash blue\textendash delay.jl}{104}{lstlisting.4.-46}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7.2}Julia Code}{105}{subsection.4.7.2}\protected@file@percent }
\newlabel{sec:led-julia-code}{{4.7.2}{105}{Julia Code}{subsection.4.7.2}{}}
\@writefile{juliad}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{4.{1}}{}}{105}{juliamass.4.1}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {4.{1}}Turning on the blue LED}{105}{juliamass.4.1}\protected@file@percent }
\newlabel{36@xvr}{{}{105}}
\newlabel{36@vr}{{}{105}}
\newlabel{julia:led-blue}{{4.{1}}{105}{Julia Code}{juliamass.4.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash blue.jl}{105}{lstlisting.4.-47}\protected@file@percent }
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{4.{2}}{}}{105}{juliamass.4.2}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {4.{2}}Turning on the blue LED and turning it off after two seconds}{105}{juliamass.4.2}\protected@file@percent }
\newlabel{37@xvr}{{}{105}}
\newlabel{37@vr}{{}{105}}
\newlabel{julia:led-blue-delay}{{4.{2}}{105}{Julia Code}{juliamass.4.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash blue\textendash delay.jl}{105}{lstlisting.4.-48}\protected@file@percent }
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{4.{3}}{}}{105}{juliamass.4.3}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {4.{3}}Turning on blue and red LEDs for 5 seconds and then turning them off one by one}{105}{juliamass.4.3}\protected@file@percent }
\newlabel{38@xvr}{{}{105}}
\newlabel{38@vr}{{}{105}}
\newlabel{julia:led-blue-red}{{4.{3}}{105}{Julia Code}{juliamass.4.3}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash blue\textendash red.jl}{105}{lstlisting.4.-49}\protected@file@percent }
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{4.{4}}{}}{106}{juliamass.4.4}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {4.{4}}Blinking the green LED}{106}{juliamass.4.4}\protected@file@percent }
\newlabel{39@xvr}{{}{106}}
\newlabel{39@vr}{{}{106}}
\newlabel{julia:led-green-blink}{{4.{4}}{106}{Julia Code}{juliamass.4.4}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/julia/led\textendash green\textendash blink.jl}{106}{lstlisting.4.-50}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {4.8}Lighting the LED from OpenModelica}{106}{section.4.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.8.1}Lighting the LED}{106}{subsection.4.8.1}\protected@file@percent }
\newlabel{sec:light-OpenModelica}{{4.8.1}{106}{Lighting the LED}{subsection.4.8.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash blue.mo}{107}{lstlisting.4.-51}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash blue.mo}{107}{lstlisting.4.-52}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash blue.mo}{107}{lstlisting.4.-54}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash blue.mo}{108}{lstlisting.4.-57}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash blue\textendash delay.mo}{108}{lstlisting.4.-58}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash blue\textendash delay.mo}{108}{lstlisting.4.-59}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.8.2}OpenModelica Code}{109}{subsection.4.8.2}\protected@file@percent }
\newlabel{sec:led-OpenModelica-code}{{4.8.2}{109}{OpenModelica Code}{subsection.4.8.2}{}}
\@writefile{OpenModelicad}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{4.{1}}{}}{109}{OpenModelicamass.4.1}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {4.{1}}Turning on the blue LED}{109}{OpenModelicamass.4.1}\protected@file@percent }
\newlabel{OpenModelica:led-blue}{{4.{1}}{109}{OpenModelica Code}{OpenModelicamass.4.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash blue.mo}{109}{lstlisting.4.-60}\protected@file@percent }
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{4.{2}}{}}{109}{OpenModelicamass.4.2}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {4.{2}}Turning on the blue LED and turning it off after two seconds}{109}{OpenModelicamass.4.2}\protected@file@percent }
\newlabel{OpenModelica:led-blue-delay}{{4.{2}}{109}{OpenModelica Code}{OpenModelicamass.4.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash blue\textendash delay.mo}{110}{lstlisting.4.-61}\protected@file@percent }
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{4.{3}}{}}{110}{OpenModelicamass.4.3}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {4.{3}}Turning on blue and red LEDs for 5 seconds and then turning them off one by one}{110}{OpenModelicamass.4.3}\protected@file@percent }
\newlabel{OpenModelica:led-blue-red}{{4.{3}}{110}{OpenModelica Code}{OpenModelicamass.4.3}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash blue\textendash red.mo}{110}{lstlisting.4.-62}\protected@file@percent }
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{4.{4}}{}}{111}{OpenModelicamass.4.4}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {4.{4}}Blinking the green LED}{111}{OpenModelicamass.4.4}\protected@file@percent }
\newlabel{OpenModelica:led-green-blink}{{4.{4}}{111}{OpenModelica Code}{OpenModelicamass.4.4}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/led/OpenModelica/led\textendash green\textendash blink.mo}{111}{lstlisting.4.-63}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {5}Interfacing a Pushbutton}{113}{chapter.5}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{pushbutton}{{5}{113}{Interfacing a Pushbutton}{chapter.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.1}Preliminaries}{113}{section.5.1}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {5.1}{\ignorespaces Internal connection diagram for the pushbutton on the Shield\relax }}{114}{figure.caption.89}\protected@file@percent }
\newlabel{fig:pushbuttonconn}{{5.1}{114}{Internal connection diagram for the pushbutton on the Shield\relax }{figure.caption.89}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.2}{\ignorespaces A pushbutton to read its status with Arduino Uno using a breadboard\relax }}{114}{figure.caption.90}\protected@file@percent }
\newlabel{fig:switch-bread}{{5.2}{114}{A pushbutton to read its status with Arduino Uno using a breadboard\relax }{figure.caption.90}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.2}Connecting a pushbutton using breadboard}{115}{section.5.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {5.3}{\ignorespaces A pushbutton to control an LED with Arduino Uno using a breadboard\relax }}{116}{figure.caption.91}\protected@file@percent }
\newlabel{fig:switch-led}{{5.3}{116}{A pushbutton to control an LED with Arduino Uno using a breadboard\relax }{figure.caption.91}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5.3}Reading pushbutton status from Arduino IDE}{116}{section.5.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.1}Reading the pushbutton status}{116}{subsection.5.3.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/arduino/push\textendash button\textendash status/push\textendash button\textendash status.ino}{117}{lstlisting.5.-64}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/arduino/push\textendash button\textendash status/push\textendash button\textendash status.ino}{117}{lstlisting.5.-65}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/arduino/led\textendash push\textendash button/led\textendash push\textendash button.ino}{117}{lstlisting.5.-66}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3.2}Arduino Code}{118}{subsection.5.3.2}\protected@file@percent }
\newlabel{sec:push-arduino-code}{{5.3.2}{118}{Arduino Code}{subsection.5.3.2}{}}
\@writefile{ard}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{5.{1}}{}}{118}{ardmass.5.1}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {5.{1}}Read the status of the pushbutton and display it on the Serial Monitor}{118}{ardmass.5.1}\protected@file@percent }
\newlabel{40@xvr}{{}{118}}
\newlabel{40@vr}{{}{118}}
\newlabel{ard:push-100}{{5.{1}}{118}{Arduino Code}{ardmass.5.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/arduino/push\textendash button\textendash status/push\textendash button\textendash status.ino}{118}{lstlisting.5.-67}\protected@file@percent }
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{5.{2}}{}}{118}{ardmass.5.2}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {5.{2}}Turning the LED on or off depending on the pushbutton}{118}{ardmass.5.2}\protected@file@percent }
\newlabel{41@xvr}{{}{118}}
\newlabel{41@vr}{{}{118}}
\newlabel{ard:push-200}{{5.{2}}{118}{Arduino Code}{ardmass.5.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/arduino/led\textendash push\textendash button/led\textendash push\textendash button.ino}{118}{lstlisting.5.-68}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {5.4}Reading pushbutton Status from Scilab}{119}{section.5.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.1}Reading the pushbutton Status}{119}{subsection.5.4.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/scilab/push\textendash button\textendash status.sce}{119}{lstlisting.5.-69}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {5.4}{\ignorespaces GUI in Scilab to show the status of the pushbutton\relax }}{120}{figure.caption.92}\protected@file@percent }
\newlabel{fig:ard-meter}{{5.4}{120}{GUI in Scilab to show the status of the pushbutton\relax }{figure.caption.92}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/scilab/push\textendash button\textendash status.sce}{120}{lstlisting.5.-70}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/scilab/led\textendash push\textendash button.sce}{120}{lstlisting.5.-71}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4.2}Scilab Code}{121}{subsection.5.4.2}\protected@file@percent }
\newlabel{sec:push-scilab-code}{{5.4.2}{121}{Scilab Code}{subsection.5.4.2}{}}
\@writefile{cod}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{5.{1}}{}}{121}{codemass.5.1}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {5.{1}}Read the status of the pushbutton and display it on the GUI}{121}{codemass.5.1}\protected@file@percent }
\newlabel{42@xvr}{{}{121}}
\newlabel{42@vr}{{}{121}}
\newlabel{sci:push-100}{{5.{1}}{121}{Scilab Code}{codemass.5.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/scilab/push\textendash button\textendash status.sce}{121}{lstlisting.5.-72}\protected@file@percent }
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{5.{2}}{}}{121}{codemass.5.2}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {5.{2}}Turning the LED on or off depending on the pushbutton}{121}{codemass.5.2}\protected@file@percent }
\newlabel{43@xvr}{{}{121}}
\newlabel{43@vr}{{}{121}}
\newlabel{sci:push-200}{{5.{2}}{121}{Scilab Code}{codemass.5.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/scilab/led\textendash push\textendash button.sce}{121}{lstlisting.5.-73}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {5.5}Accessing the pushbutton from Xcos}{122}{section.5.5}\protected@file@percent }
\newlabel{sec:push-xcos}{{5.5}{122}{Accessing the pushbutton from Xcos}{section.5.5}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.5}{\ignorespaces Printing the pushbutton status on the display block}}{123}{figure.caption.93}\protected@file@percent }
\newlabel{45@xvr}{{}{123}}
\newlabel{45@vr}{{}{123}}
\newlabel{fig:push-button-status}{{5.5}{123}{Printing the pushbutton status on the display block}{figure.caption.93}{}}
\@writefile{lot}{\contentsline {table}{\numberline {5.1}{\ignorespaces Parameters to print the pushbutton status on the display block\relax }}{123}{table.caption.94}\protected@file@percent }
\newlabel{tab:push-button-status}{{5.1}{123}{Parameters to print the pushbutton status on the display block\relax }{table.caption.94}{}}
\newlabel{46@xvr}{{}{123}}
\newlabel{46@vr}{{}{123}}
\@writefile{lof}{\contentsline {figure}{\numberline {5.6}{\ignorespaces Turning the LED on or off, depending on the pushbutton}}{124}{figure.caption.95}\protected@file@percent }
\newlabel{48@xvr}{{}{124}}
\newlabel{48@vr}{{}{124}}
\newlabel{fig:led-push-button}{{5.6}{124}{Turning the LED on or off, depending on the pushbutton}{figure.caption.95}{}}
\@writefile{thm}{\contentsline {egmass}{{Exercise}{5.{1}}{}}{124}{egmass.5.1}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {5.2}{\ignorespaces Xcos parameters to turn the LED on through the pushbutton\relax }}{125}{table.caption.96}\protected@file@percent }
\newlabel{tab:led-push-button}{{5.2}{125}{Xcos parameters to turn the LED on through the pushbutton\relax }{table.caption.96}{}}
\newlabel{49@xvr}{{}{125}}
\newlabel{49@vr}{{}{125}}
\@writefile{toc}{\contentsline {section}{\numberline {5.6}Reading pushbutton status from Python}{125}{section.5.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6.1}Reading the pushbutton status}{125}{subsection.5.6.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/python/push\textendash button\textendash status.py}{126}{lstlisting.5.-74}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/python/push\textendash button\textendash status.py}{126}{lstlisting.5.-75}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/python/led\textendash push\textendash button.py}{126}{lstlisting.5.-76}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6.2}Python Code}{127}{subsection.5.6.2}\protected@file@percent }
\newlabel{sec:push-python-code}{{5.6.2}{127}{Python Code}{subsection.5.6.2}{}}
\@writefile{pyd}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {pymass}{{Python Code}{5.{1}}{}}{127}{pymass.5.1}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {5.{1}}Read the status of the pushbutton and display it on the Command Prompt or the Terminal}{127}{pymass.5.1}\protected@file@percent }
\newlabel{50@xvr}{{}{127}}
\newlabel{50@vr}{{}{127}}
\newlabel{py:push-100}{{5.{1}}{127}{Python Code}{pymass.5.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/python/push\textendash button\textendash status.py}{127}{lstlisting.5.-77}\protected@file@percent }
\@writefile{thm}{\contentsline {pymass}{{Python Code}{5.{2}}{}}{128}{pymass.5.2}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {5.{2}}Turning the LED on or off depending on the pushbutton}{128}{pymass.5.2}\protected@file@percent }
\newlabel{51@xvr}{{}{128}}
\newlabel{51@vr}{{}{128}}
\newlabel{py:push-200}{{5.{2}}{128}{Python Code}{pymass.5.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/python/led\textendash push\textendash button.py}{128}{lstlisting.5.-78}\protected@file@percent }
\citation{julia-serial-ports}
\@writefile{toc}{\contentsline {section}{\numberline {5.7}Reading pushbutton status from Julia}{129}{section.5.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7.1}Reading the pushbutton status}{129}{subsection.5.7.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/julia/push\textendash button\textendash status.jl}{129}{lstlisting.5.-79}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/julia/push\textendash button\textendash status.jl}{130}{lstlisting.5.-80}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/julia/led\textendash push\textendash button.jl}{130}{lstlisting.5.-81}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7.2}Julia Code}{130}{subsection.5.7.2}\protected@file@percent }
\newlabel{sec:push-julia-code}{{5.7.2}{130}{Julia Code}{subsection.5.7.2}{}}
\@writefile{juliad}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{5.{1}}{}}{130}{juliamass.5.1}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {5.{1}}Read the status of the pushbutton and display it on Command Prompt or the Terminal.}{130}{juliamass.5.1}\protected@file@percent }
\newlabel{52@xvr}{{}{131}}
\newlabel{52@vr}{{}{131}}
\newlabel{julia:push-100}{{5.{1}}{131}{Julia Code}{juliamass.5.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/julia/push\textendash button\textendash status.jl}{131}{lstlisting.5.-82}\protected@file@percent }
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{5.{2}}{}}{131}{juliamass.5.2}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {5.{2}}Turning the LED on or off depending on the pushbutton}{131}{juliamass.5.2}\protected@file@percent }
\newlabel{53@xvr}{{}{131}}
\newlabel{53@vr}{{}{131}}
\newlabel{julia:push-200}{{5.{2}}{131}{Julia Code}{juliamass.5.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/julia/led\textendash push\textendash button.jl}{131}{lstlisting.5.-83}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {5.8}Reading pushbutton status from OpenModelica}{131}{section.5.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.8.1}Reading the pushbutton status}{131}{subsection.5.8.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/OpenModelica/push\textendash button\textendash status.mo}{132}{lstlisting.5.-84}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/OpenModelica/push\textendash button\textendash status.mo}{132}{lstlisting.5.-85}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/OpenModelica/led\textendash push\textendash button.mo}{133}{lstlisting.5.-86}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.8.2}OpenModelica Code}{133}{subsection.5.8.2}\protected@file@percent }
\newlabel{sec:push-OpenModelica-code}{{5.8.2}{133}{OpenModelica Code}{subsection.5.8.2}{}}
\@writefile{OpenModelicad}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{5.{1}}{}}{133}{OpenModelicamass.5.1}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {5.{1}}Read the status of the pushbutton and display it on the output window}{133}{OpenModelicamass.5.1}\protected@file@percent }
\newlabel{OpenModelica:push-100}{{5.{1}}{133}{OpenModelica Code}{OpenModelicamass.5.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/OpenModelica/push\textendash button\textendash status.mo}{133}{lstlisting.5.-87}\protected@file@percent }
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{5.{2}}{}}{134}{OpenModelicamass.5.2}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {5.{2}}Turning the LED on or off depending on the pushbutton}{134}{OpenModelicamass.5.2}\protected@file@percent }
\newlabel{OpenModelica:push-200}{{5.{2}}{134}{OpenModelica Code}{OpenModelicamass.5.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/push/OpenModelica/led\textendash push\textendash button.mo}{134}{lstlisting.5.-88}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {6}Interfacing a Light Dependent Resistor}{137}{chapter.6}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{ldr}{{6}{137}{Interfacing a Light Dependent Resistor}{chapter.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.1}Preliminaries}{137}{section.6.1}\protected@file@percent }
\newlabel{fig:ldr}{{6.1a}{138}{Subfigure 6 6.1a}{subfigure.6.1.1}{}}
\newlabel{sub@fig:ldr}{{(a)}{a}{Subfigure 6 6.1a\relax }{subfigure.6.1.1}{}}
\newlabel{fig:ldrsym}{{6.1b}{138}{Subfigure 6 6.1b}{subfigure.6.1.2}{}}
\newlabel{sub@fig:ldrsym}{{(b)}{b}{Subfigure 6 6.1b\relax }{subfigure.6.1.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.1}{\ignorespaces Light Dependent Resistor\relax }}{138}{figure.caption.97}\protected@file@percent }
\@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Pictorial representation of an LDR}}}{138}{subfigure.1.1}\protected@file@percent }
\@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Symbolic representation of an LDR}}}{138}{subfigure.1.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {6.2}{\ignorespaces Internal connection diagram for the LDR on the Shield\relax }}{138}{figure.caption.98}\protected@file@percent }
\newlabel{fig:ldrconn}{{6.2}{138}{Internal connection diagram for the LDR on the Shield\relax }{figure.caption.98}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.2}Connecting an LDR using breadboard}{139}{section.6.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {6.3}{\ignorespaces An LDR to read its values with Arduino Uno\ using a breadboard\relax }}{140}{figure.caption.99}\protected@file@percent }
\newlabel{fig:ard-ldr}{{6.3}{140}{An LDR to read its values with \arduino \ using a breadboard\relax }{figure.caption.99}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.4}{\ignorespaces An LDR to control an LED with Arduino Uno using a breadboard\relax }}{140}{figure.caption.100}\protected@file@percent }
\newlabel{fig:ard-ldr-led}{{6.4}{140}{An LDR to control an LED with Arduino Uno using a breadboard\relax }{figure.caption.100}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.3}Interfacing LDR through Arduino IDE}{141}{section.6.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.1}Interfacing the LDR}{141}{subsection.6.3.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/arduino/ldr\textendash read/ldr\textendash read.ino}{141}{lstlisting.6.-89}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/arduino/ldr\textendash read/ldr\textendash read.ino}{141}{lstlisting.6.-90}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/arduino/ldr\textendash read/ldr\textendash read.ino}{141}{lstlisting.6.-91}\protected@file@percent }
\@writefile{thm}{\contentsline {egmass}{{Exercise}{6.{1}}{}}{142}{egmass.6.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3.2}Arduino Code}{142}{subsection.6.3.2}\protected@file@percent }
\newlabel{sec:ldr-arduino-code}{{6.3.2}{142}{Arduino Code}{subsection.6.3.2}{}}
\@writefile{ard}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{6.{1}}{}}{142}{ardmass.6.1}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {6.{1}}Read and display the LDR values}{142}{ardmass.6.1}\protected@file@percent }
\newlabel{54@xvr}{{}{142}}
\newlabel{54@vr}{{}{142}}
\newlabel{ard:ldr-read}{{6.{1}}{142}{Arduino Code}{ardmass.6.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/arduino/ldr\textendash read/ldr\textendash read.ino}{143}{lstlisting.6.-92}\protected@file@percent }
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{6.{2}}{}}{143}{ardmass.6.2}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {6.{2}}Turning the red LED on and off}{143}{ardmass.6.2}\protected@file@percent }
\newlabel{55@xvr}{{}{143}}
\newlabel{55@vr}{{}{143}}
\newlabel{ard:ldr-led}{{6.{2}}{143}{Arduino Code}{ardmass.6.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/arduino/ldr\textendash led/ldr\textendash led.ino}{143}{lstlisting.6.-93}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {6.4}Interfacing the LDR through Scilab}{143}{section.6.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.1}Interfacing the LDR}{143}{subsection.6.4.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/scilab/ldr\textendash read.sce}{144}{lstlisting.6.-94}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/scilab/ldr\textendash read.sce}{144}{lstlisting.6.-95}\protected@file@percent }
\@writefile{thm}{\contentsline {egmass}{{Exercise}{6.{2}}{}}{145}{egmass.6.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4.2}Scilab Code}{145}{subsection.6.4.2}\protected@file@percent }
\newlabel{sec:ldr-scilab-code}{{6.4.2}{145}{Scilab Code}{subsection.6.4.2}{}}
\@writefile{cod}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{6.{1}}{}}{145}{codemass.6.1}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {6.{1}}Read and display the LDR values}{145}{codemass.6.1}\protected@file@percent }
\newlabel{56@xvr}{{}{145}}
\newlabel{56@vr}{{}{145}}
\newlabel{sci:ldr-read}{{6.{1}}{145}{Scilab Code}{codemass.6.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/scilab/ldr\textendash read.sce}{145}{lstlisting.6.-96}\protected@file@percent }
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{6.{2}}{}}{146}{codemass.6.2}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {6.{2}}Turning the red LED on and off}{146}{codemass.6.2}\protected@file@percent }
\newlabel{57@xvr}{{}{146}}
\newlabel{57@vr}{{}{146}}
\newlabel{sci:ldr-led}{{6.{2}}{146}{Scilab Code}{codemass.6.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/scilab/ldr\textendash led.sce}{146}{lstlisting.6.-97}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {6.5}Interfacing the LDR through Xcos}{146}{section.6.5}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {6.5}{\ignorespaces Xcos diagram to read LDR values}}{147}{figure.caption.101}\protected@file@percent }
\newlabel{59@xvr}{{}{147}}
\newlabel{59@vr}{{}{147}}
\newlabel{fig:ldr-read}{{6.5}{147}{Xcos diagram to read LDR values}{figure.caption.101}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.6}{\ignorespaces Plot window in Xcos to read LDR values\relax }}{147}{figure.caption.102}\protected@file@percent }
\newlabel{fig:ldr-read-plot}{{6.6}{147}{Plot window in Xcos to read LDR values\relax }{figure.caption.102}{}}
\@writefile{lot}{\contentsline {table}{\numberline {6.1}{\ignorespaces Xcos parameters to read LDR\relax }}{148}{table.caption.103}\protected@file@percent }
\newlabel{tab:ldr-read}{{6.1}{148}{Xcos parameters to read LDR\relax }{table.caption.103}{}}
\newlabel{60@xvr}{{}{148}}
\newlabel{60@vr}{{}{148}}
\@writefile{lof}{\contentsline {figure}{\numberline {6.7}{\ignorespaces Xcos diagram to read the value of the LDR, which is used to turn the blue LED on or off}}{149}{figure.caption.104}\protected@file@percent }
\newlabel{62@xvr}{{}{149}}
\newlabel{62@vr}{{}{149}}
\newlabel{fig:ldr-led}{{6.7}{149}{Xcos diagram to read the value of the LDR, which is used to turn the blue LED on or off}{figure.caption.104}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6.6}Interfacing LDR through Python}{149}{section.6.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.6.1}Interfacing the LDR}{149}{subsection.6.6.1}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {6.8}{\ignorespaces Plot window in Xcos to read LDR values and the state of LED\relax }}{150}{figure.caption.105}\protected@file@percent }
\newlabel{fig:ldr-led-read-plot}{{6.8}{150}{Plot window in Xcos to read LDR values and the state of LED\relax }{figure.caption.105}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/python/ldr\textendash read.py}{150}{lstlisting.6.-98}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/python/ldr\textendash read.py}{150}{lstlisting.6.-99}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {6.2}{\ignorespaces Xcos parameters to read LDR and regulate blue LED\relax }}{151}{table.caption.106}\protected@file@percent }
\newlabel{tab:ldr-led}{{6.2}{151}{Xcos parameters to read LDR and regulate blue LED\relax }{table.caption.106}{}}
\newlabel{63@xvr}{{}{151}}
\newlabel{63@vr}{{}{151}}
\@writefile{thm}{\contentsline {egmass}{{Exercise}{6.{3}}{}}{152}{egmass.6.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.6.2}Python Code}{152}{subsection.6.6.2}\protected@file@percent }
\newlabel{sec:ldr-python-code}{{6.6.2}{152}{Python Code}{subsection.6.6.2}{}}
\@writefile{pyd}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {pymass}{{Python Code}{6.{1}}{}}{152}{pymass.6.1}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {6.{1}}Read and display the LDR values}{152}{pymass.6.1}\protected@file@percent }
\newlabel{64@xvr}{{}{152}}
\newlabel{64@vr}{{}{152}}
\newlabel{py:ldr-read}{{6.{1}}{152}{Python Code}{pymass.6.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/python/ldr\textendash read.py}{152}{lstlisting.6.-100}\protected@file@percent }
\@writefile{thm}{\contentsline {pymass}{{Python Code}{6.{2}}{}}{153}{pymass.6.2}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {6.{2}}Turning the red LED on and off}{153}{pymass.6.2}\protected@file@percent }
\newlabel{65@xvr}{{}{153}}
\newlabel{65@vr}{{}{153}}
\newlabel{py:ldr-led}{{6.{2}}{153}{Python Code}{pymass.6.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/python/ldr\textendash led.py}{153}{lstlisting.6.-101}\protected@file@percent }
\citation{julia-serial-ports}
\@writefile{toc}{\contentsline {section}{\numberline {6.7}Interfacing LDR through Julia}{155}{section.6.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.7.1}Interfacing the LDR}{155}{subsection.6.7.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/julia/ldr\textendash read.jl}{155}{lstlisting.6.-102}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/julia/ldr\textendash read.jl}{155}{lstlisting.6.-103}\protected@file@percent }
\@writefile{thm}{\contentsline {egmass}{{Exercise}{6.{4}}{}}{156}{egmass.6.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.7.2}Julia Code}{156}{subsection.6.7.2}\protected@file@percent }
\newlabel{sec:ldr-julia-code}{{6.7.2}{156}{Julia Code}{subsection.6.7.2}{}}
\@writefile{juliad}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{6.{1}}{}}{156}{juliamass.6.1}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {6.{1}}Read and display the LDR values}{156}{juliamass.6.1}\protected@file@percent }
\newlabel{66@xvr}{{}{156}}
\newlabel{66@vr}{{}{156}}
\newlabel{julia:ldr-read}{{6.{1}}{156}{Julia Code}{juliamass.6.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/julia/ldr\textendash read.jl}{156}{lstlisting.6.-104}\protected@file@percent }
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{6.{2}}{}}{157}{juliamass.6.2}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {6.{2}}Turning the red LED on and off}{157}{juliamass.6.2}\protected@file@percent }
\newlabel{67@xvr}{{}{157}}
\newlabel{67@vr}{{}{157}}
\newlabel{julia:ldr-led}{{6.{2}}{157}{Julia Code}{juliamass.6.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/julia/ldr\textendash led.jl}{157}{lstlisting.6.-105}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {6.8}Interfacing LDR through OpenModelica}{157}{section.6.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.8.1}Interfacing the LDR}{157}{subsection.6.8.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/OpenModelica/ldr\textendash read.mo}{158}{lstlisting.6.-106}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/OpenModelica/ldr\textendash read.mo}{158}{lstlisting.6.-107}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.8.2}OpenModelica Code}{159}{subsection.6.8.2}\protected@file@percent }
\newlabel{sec:ldr-OpenModelica-code}{{6.8.2}{159}{OpenModelica Code}{subsection.6.8.2}{}}
\@writefile{OpenModelicad}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{6.{1}}{}}{159}{OpenModelicamass.6.1}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {6.{1}}Read and display the LDR values}{159}{OpenModelicamass.6.1}\protected@file@percent }
\newlabel{OpenModelica:ldr-read}{{6.{1}}{159}{OpenModelica Code}{OpenModelicamass.6.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/OpenModelica/ldr\textendash read.mo}{159}{lstlisting.6.-108}\protected@file@percent }
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{6.{2}}{}}{159}{OpenModelicamass.6.2}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {6.{2}}Turning the red LED on and off}{159}{OpenModelicamass.6.2}\protected@file@percent }
\newlabel{OpenModelica:ldr-led}{{6.{2}}{160}{OpenModelica Code}{OpenModelicamass.6.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/ldr/OpenModelica/ldr\textendash led.mo}{160}{lstlisting.6.-109}\protected@file@percent }
\@writefile{toc}{\contentsline {chapter}{\numberline {7}Interfacing a Potentiometer}{161}{chapter.7}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{potmeter}{{7}{161}{Interfacing a Potentiometer}{chapter.7}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.1}Preliminaries}{161}{section.7.1}\protected@file@percent }
\newlabel{fig:pot}{{7.1a}{162}{Subfigure 7 7.1a}{subfigure.7.1.1}{}}
\newlabel{sub@fig:pot}{{(a)}{a}{Subfigure 7 7.1a\relax }{subfigure.7.1.1}{}}
\newlabel{fig:potsch}{{7.1b}{162}{Subfigure 7 7.1b}{subfigure.7.1.2}{}}
\newlabel{sub@fig:potsch}{{(b)}{b}{Subfigure 7 7.1b\relax }{subfigure.7.1.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {7.1}{\ignorespaces Potentiometer's schematic on the Shield\relax }}{162}{figure.caption.107}\protected@file@percent }
\newlabel{fig:potmeterconn}{{7.1}{162}{Potentiometer's schematic on the Shield\relax }{figure.caption.107}{}}
\@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Pictorial representation of a potentiometer}}}{162}{subfigure.1.1}\protected@file@percent }
\@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Internal connection diagram for the potentiometer on the Shield}}}{162}{subfigure.1.2}\protected@file@percent }
\newlabel{68@xvr}{{}{162}}
\newlabel{68@vr}{{}{162}}
\@writefile{toc}{\contentsline {section}{\numberline {7.2}Connecting a potentiometer using breadboard}{163}{section.7.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {7.2}{\ignorespaces A potentiometer to control an LED with Arduino Uno using a breadboard\relax }}{164}{figure.caption.108}\protected@file@percent }
\newlabel{fig:pot-led}{{7.2}{164}{A potentiometer to control an LED with Arduino Uno using a breadboard\relax }{figure.caption.108}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7.3}Reading potentiometer from Arduino IDE}{164}{section.7.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.1}Reading the potentiometer}{164}{subsection.7.3.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/arduino/pot\textendash threshold/pot\textendash threshold.ino}{165}{lstlisting.7.-110}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/arduino/pot\textendash threshold/pot\textendash threshold.ino}{165}{lstlisting.7.-111}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3.2}Arduino Code}{165}{subsection.7.3.2}\protected@file@percent }
\newlabel{sec:pot-arduino-code}{{7.3.2}{165}{Arduino Code}{subsection.7.3.2}{}}
\@writefile{ard}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{7.{1}}{}}{165}{ardmass.7.1}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {7.{1}}Turning on LEDs depending on the potentiometer threshold}{165}{ardmass.7.1}\protected@file@percent }
\newlabel{69@xvr}{{}{165}}
\newlabel{69@vr}{{}{165}}
\newlabel{ard:pot-100}{{7.{1}}{165}{Arduino Code}{ardmass.7.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/arduino/pot\textendash threshold/pot\textendash threshold.ino}{166}{lstlisting.7.-112}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {7.4}Reading potentiometer from Scilab}{166}{section.7.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.4.1}Reading the potentiometer}{166}{subsection.7.4.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/scilab/pot\textendash threshold.sce}{167}{lstlisting.7.-113}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/scilab/pot\textendash threshold.sce}{167}{lstlisting.7.-114}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.4.2}Scilab Code}{167}{subsection.7.4.2}\protected@file@percent }
\newlabel{sec:pot-scilab-code}{{7.4.2}{167}{Scilab Code}{subsection.7.4.2}{}}
\@writefile{cod}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{7.{1}}{}}{167}{codemass.7.1}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {7.{1}}Turning on LEDs depending on the potentiometer threshold}{167}{codemass.7.1}\protected@file@percent }
\newlabel{70@xvr}{{}{167}}
\newlabel{70@vr}{{}{167}}
\newlabel{sci:pot-100}{{7.{1}}{167}{Scilab Code}{codemass.7.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/scilab/pot\textendash threshold.sce}{167}{lstlisting.7.-115}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {7.5}Reading potentiometer from Xcos}{168}{section.7.5}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {7.3}{\ignorespaces Turning LEDs on through Xcos depending on the potentiometer threshold}}{169}{figure.caption.109}\protected@file@percent }
\newlabel{72@xvr}{{}{169}}
\newlabel{72@vr}{{}{169}}
\newlabel{fig:pot-threshold}{{7.3}{169}{Turning LEDs on through Xcos depending on the potentiometer threshold}{figure.caption.109}{}}
\@writefile{thm}{\contentsline {egmass}{{Exercise}{7.{1}}{}}{169}{egmass.7.1}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {7.6}Reading potentiometer from Python}{169}{section.7.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.6.1}Reading the potentiometer}{169}{subsection.7.6.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/python/pot\textendash threshold.py}{170}{lstlisting.7.-116}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/python/pot\textendash threshold.py}{170}{lstlisting.7.-117}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.6.2}Python Code}{170}{subsection.7.6.2}\protected@file@percent }
\newlabel{sec:pot-python-code}{{7.6.2}{170}{Python Code}{subsection.7.6.2}{}}
\@writefile{pyd}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {pymass}{{Python Code}{7.{1}}{}}{170}{pymass.7.1}\protected@file@percent }
\@writefile{pyd}{\contentsline {section}{\numberline {7.{1}}Turning on LEDs depending on the potentiometer threshold}{170}{pymass.7.1}\protected@file@percent }
\newlabel{74@xvr}{{}{170}}
\newlabel{74@vr}{{}{170}}
\newlabel{py:pot-100}{{7.{1}}{170}{Python Code}{pymass.7.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/python/pot\textendash threshold.py}{171}{lstlisting.7.-118}\protected@file@percent }
\citation{julia-serial-ports}
\@writefile{toc}{\contentsline {section}{\numberline {7.7}Reading potentiometer from Julia}{172}{section.7.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.7.1}Reading the potentiometer}{172}{subsection.7.7.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/julia/pot\textendash threshold.jl}{172}{lstlisting.7.-119}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/julia/pot\textendash threshold.jl}{172}{lstlisting.7.-120}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.7.2}Julia Code}{173}{subsection.7.7.2}\protected@file@percent }
\newlabel{sec:pot-julia-code}{{7.7.2}{173}{Julia Code}{subsection.7.7.2}{}}
\@writefile{juliad}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {juliamass}{{Julia Code}{7.{1}}{}}{173}{juliamass.7.1}\protected@file@percent }
\@writefile{juliad}{\contentsline {section}{\numberline {7.{1}}Turning on LEDs depending on the potentiometer threshold}{173}{juliamass.7.1}\protected@file@percent }
\newlabel{75@xvr}{{}{173}}
\newlabel{75@vr}{{}{173}}
\newlabel{julia:pot-100}{{7.{1}}{173}{Julia Code}{juliamass.7.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/julia/pot\textendash threshold.jl}{173}{lstlisting.7.-121}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {7.8}Reading potentiometer from OpenModelica}{174}{section.7.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.8.1}Reading the potentiometer}{174}{subsection.7.8.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/OpenModelica/pot\textendash threshold.mo}{174}{lstlisting.7.-122}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/OpenModelica/pot\textendash threshold.mo}{174}{lstlisting.7.-123}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.8.2}OpenModelica Code}{175}{subsection.7.8.2}\protected@file@percent }
\newlabel{sec:pot-OpenModelica-code}{{7.8.2}{175}{OpenModelica Code}{subsection.7.8.2}{}}
\@writefile{OpenModelicad}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {OpenModelicamass}{{OpenModelica Code}{7.{1}}{}}{175}{OpenModelicamass.7.1}\protected@file@percent }
\@writefile{OpenModelicad}{\contentsline {section}{\numberline {7.{1}}Turning on LEDs depending on the potentiometer threshold}{175}{OpenModelicamass.7.1}\protected@file@percent }
\newlabel{OpenModelica:pot-100}{{7.{1}}{175}{OpenModelica Code}{OpenModelicamass.7.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/pot/OpenModelica/pot\textendash threshold.mo}{175}{lstlisting.7.-124}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {7.1}{\ignorespaces Xcos parameters to turn on different LEDs depending on the potentiometer value\relax }}{177}{table.caption.110}\protected@file@percent }
\newlabel{tab:pot-threshold}{{7.1}{177}{Xcos parameters to turn on different LEDs depending on the potentiometer value\relax }{table.caption.110}{}}
\newlabel{73@xvr}{{}{177}}
\newlabel{73@vr}{{}{177}}
\@writefile{toc}{\contentsline {chapter}{\numberline {8}Interfacing a Thermistor}{179}{chapter.8}\protected@file@percent }
\@writefile{lof}{\addvspace {10\p@ }}
\@writefile{lot}{\addvspace {10\p@ }}
\newlabel{thermistor}{{8}{179}{Interfacing a Thermistor}{chapter.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.1}Preliminaries}{179}{section.8.1}\protected@file@percent }
\citation{therm-wiki}
\citation{therm-wiki}
\newlabel{fig:therm}{{8.1a}{180}{Subfigure 8 8.1a}{subfigure.8.1.1}{}}
\newlabel{sub@fig:therm}{{(a)}{a}{Subfigure 8 8.1a\relax }{subfigure.8.1.1}{}}
\newlabel{fig:thermsym}{{8.1b}{180}{Subfigure 8 8.1b}{subfigure.8.1.2}{}}
\newlabel{sub@fig:thermsym}{{(b)}{b}{Subfigure 8 8.1b\relax }{subfigure.8.1.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.1}{\ignorespaces Pictorial and symbolic representation of a thermistor\relax }}{180}{figure.caption.111}\protected@file@percent }
\@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Pictorial representation of a thermistor\cite {therm-wiki}}}}{180}{subfigure.1.1}\protected@file@percent }
\@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Symbolic representation of a thermistor}}}{180}{subfigure.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {8.2}Connecting a thermistor using breadboard}{180}{section.8.2}\protected@file@percent }
\newlabel{fig:therm-conn}{{8.2a}{181}{Subfigure 8 8.2a}{subfigure.8.2.1}{}}
\newlabel{sub@fig:therm-conn}{{(a)}{a}{Subfigure 8 8.2a\relax }{subfigure.8.2.1}{}}
\newlabel{fig:buzzer-conn}{{8.2b}{181}{Subfigure 8 8.2b}{subfigure.8.2.2}{}}
\newlabel{sub@fig:buzzer-conn}{{(b)}{b}{Subfigure 8 8.2b\relax }{subfigure.8.2.2}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.2}{\ignorespaces Internal connection diagrams for thermistor and buzzer on the Shield\relax }}{181}{figure.caption.112}\protected@file@percent }
\@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Thermistor connection diagram}}}{181}{subfigure.2.1}\protected@file@percent }
\@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Buzzer connection diagram}}}{181}{subfigure.2.2}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {8.3}{\ignorespaces A thermistor to read its values with Arduino Uno using a breadboard\relax }}{182}{figure.caption.113}\protected@file@percent }
\newlabel{fig:ard-therm-bread}{{8.3}{182}{A thermistor to read its values with Arduino Uno using a breadboard\relax }{figure.caption.113}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.4}{\ignorespaces A thermistor to control a buzzer with Arduino Uno using a breadboard\relax }}{182}{figure.caption.114}\protected@file@percent }
\newlabel{fig:ard-therm-buzzer}{{8.4}{182}{A thermistor to control a buzzer with Arduino Uno using a breadboard\relax }{figure.caption.114}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8.3}Interfacing thermistor from Arduino IDE}{183}{section.8.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.1}Interfacing the thermistor}{183}{subsection.8.3.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/arduino/therm\textendash read/therm\textendash read.ino}{183}{lstlisting.8.-125}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/arduino/therm\textendash read/therm\textendash read.ino}{183}{lstlisting.8.-126}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/arduino/therm\textendash read/therm\textendash read.ino}{183}{lstlisting.8.-127}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/arduino/therm\textendash buzzer/therm\textendash buzzer.ino}{184}{lstlisting.8.-128}\protected@file@percent }
\@writefile{toc}{\contentsline {paragraph}{Note:}{185}{section*.115}\protected@file@percent }
\@writefile{thm}{\contentsline {egmass}{{Exercise}{8.{1}}{}}{185}{egmass.8.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3.2}Arduino Code}{185}{subsection.8.3.2}\protected@file@percent }
\newlabel{sec:therm-arduino-code}{{8.3.2}{185}{Arduino Code}{subsection.8.3.2}{}}
\@writefile{ard}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{8.{1}}{}}{185}{ardmass.8.1}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {8.{1}}Read and display the thermistor values}{185}{ardmass.8.1}\protected@file@percent }
\newlabel{76@xvr}{{}{185}}
\newlabel{76@vr}{{}{185}}
\newlabel{ard:therm-read}{{8.{1}}{185}{Arduino Code}{ardmass.8.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/arduino/therm\textendash read/therm\textendash read.ino}{185}{lstlisting.8.-129}\protected@file@percent }
\@writefile{thm}{\contentsline {ardmass}{{Arduino Code}{8.{2}}{}}{186}{ardmass.8.2}\protected@file@percent }
\@writefile{ard}{\contentsline {section}{\numberline {8.{2}}Turning the buzzer on using thermistor values}{186}{ardmass.8.2}\protected@file@percent }
\newlabel{77@xvr}{{}{186}}
\newlabel{77@vr}{{}{186}}
\newlabel{ard:therm-buzzer}{{8.{2}}{186}{Arduino Code}{ardmass.8.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/arduino/therm\textendash buzzer/therm\textendash buzzer.ino}{186}{lstlisting.8.-130}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {8.4}Interfacing thermistor from Scilab}{187}{section.8.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.1}Interfacing the thermistor}{187}{subsection.8.4.1}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/scilab/therm\textendash read.sce}{187}{lstlisting.8.-131}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/scilab/therm\textendash read.sce}{187}{lstlisting.8.-132}\protected@file@percent }
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/scilab/therm\textendash buzzer.sce}{189}{lstlisting.8.-133}\protected@file@percent }
\@writefile{toc}{\contentsline {paragraph}{Note:}{189}{section*.116}\protected@file@percent }
\@writefile{thm}{\contentsline {egmass}{{Exercise}{8.{2}}{}}{189}{egmass.8.2}\protected@file@percent }
\newlabel{therm-abc}{{8.1}{189}{Interfacing the thermistor}{equation.8.4.1}{}}
\newlabel{therm-beta}{{8.2}{190}{Interfacing the thermistor}{equation.8.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4.2}Scilab Code}{190}{subsection.8.4.2}\protected@file@percent }
\newlabel{sec:therm-scilab-code}{{8.4.2}{190}{Scilab Code}{subsection.8.4.2}{}}
\@writefile{cod}{\addvspace {10pt}}
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{8.{1}}{}}{190}{codemass.8.1}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {8.{1}}Read and display the thermistor values}{190}{codemass.8.1}\protected@file@percent }
\newlabel{78@xvr}{{}{190}}
\newlabel{78@vr}{{}{190}}
\newlabel{sci:therm-read}{{8.{1}}{190}{Scilab Code}{codemass.8.1}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/scilab/therm\textendash read.sce}{190}{lstlisting.8.-134}\protected@file@percent }
\@writefile{thm}{\contentsline {codemass}{{Scilab Code}{8.{2}}{}}{191}{codemass.8.2}\protected@file@percent }
\@writefile{cod}{\contentsline {section}{\numberline {8.{2}}Turning the buzzer on using thermistor values}{191}{codemass.8.2}\protected@file@percent }
\newlabel{79@xvr}{{}{191}}
\newlabel{79@vr}{{}{191}}
\newlabel{sci:therm-buzzer}{{8.{2}}{191}{Scilab Code}{codemass.8.2}{}}
\@writefile{lol}{\contentsline {lstlisting}{/home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/thermistor/scilab/therm\textendash buzzer.sce}{191}{lstlisting.8.-135}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {8.5}Interfacing thermistor from Xcos}{191}{section.8.5}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {8.5}{\ignorespaces Xcos diagram to read thermistor values}}{192}{figure.caption.117}\protected@file@percent }
\newlabel{81@xvr}{{}{192}}
\newlabel{81@vr}{{}{192}}
\newlabel{fig:therm-read}{{8.5}{192}{Xcos diagram to read thermistor values}{figure.caption.117}{}}
\@writefile{lot}{\contentsline {table}{\numberline {8.1}{\ignorespaces Xcos parameters to read thermistor\relax }}{193}{table.caption.118}\protected@file@percent }
\newlabel{tab:therm-read}{{8.1}{193}{Xcos parameters to read thermistor\relax }{table.caption.118}{}}
\newlabel{82@xvr}{{}{193}}
\newlabel{82@vr}{{}{193}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.6}{\ignorespaces Plot window in Xcos to read thermistor values\relax }}{193}{figure.caption.119}\protected@file@percent }
\newlabel{fig:therm-read-output}{{8.6}{193}{Plot window in Xcos to read thermistor values\relax }{figure.caption.119}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {8.7}{\ignorespaces Xcos diagram to read the value of thermistor, which is used to turn the buzzer on}}{194}{figure.caption.120}\protected@file@percent }
\newlabel{84@xvr}{{}{194}}
\newlabel{84@vr}{{}{194}}
\newlabel{fig:therm-buzzer}{{8.7}{194}{Xcos diagram to read the value of thermistor, which is used to turn the buzzer on}{figure.caption.120}{}}
\@writefile{lot}{\contentsline {table}{\numberline {8.2}{\ignorespaces Xcos parameters to read thermistor and switch the buzzer\relax }}{195}{table.caption.121}\protected@file@percent }
\newlabel{tab:therm-buzzer}{{8.2}{195}{Xcos parameters to read thermistor and switch the buzzer\relax }{table.caption.121}{}}