-
Notifications
You must be signed in to change notification settings - Fork 0
/
tuto-arduino-103-le-logiciel.html
917 lines (886 loc) · 35.2 KB
/
tuto-arduino-103-le-logiciel.html
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Le logiciel • Le blog d'Eskimon</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="/static/css/hljs-monokai.css" />
<link rel="stylesheet" href="/static/css/style.css" />
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/static/images/favicon/favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="/static/images/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/static/images/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/static/images/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/static/images/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/static/images/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/static/images/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/static/images/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/static/images/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/static/images/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/static/images/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/static/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/static/images/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/images/favicon/favicon-16x16.png">
<link rel="manifest" href="/static/images/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/static/images/favicon/ms-icon-144x144.png">
<link href="https://eskimon.fr/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Le blog d'Eskimon Atom Feed" />
<link href="https://eskimon.fr/feeds/all.rss.xml" type="application/rss+xml" rel="alternate" title="Le blog d'Eskimon RSS Feed" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-46353906-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-46353906-1');
</script>
<meta name="description" content="Après l'introduction précédente, rentrons maintenant dans le détail en parlant du logiciel qui permet d'utiliser la carte Arduino." />
<meta name="tags" content="arduino" />
<meta name="tags" content="tuto" />
<meta property="og:site_name" content="Le blog d'Eskimon">
<meta property="og:title" content="Le logiciel">
<meta property="og:url" content="https://eskimon.fr/tuto-arduino-103-le-logiciel">
<meta property="og:language" content="fr_FR">
<meta property="og:type" content="website">
<meta property="twitter:domain" content="https://eskimon.fr/">
<meta property="twitter:card" content="summary">
<meta property="twitter:url" content="https://eskimon.fr/tuto-arduino-103-le-logiciel">
<meta property="twitter:title" content="Le logiciel">
<meta property="twitter:description" content="Après l'introduction précédente, rentrons maintenant dans le détail en parlant du logiciel qui permet d'utiliser la carte Arduino."> <meta property="twitter:site" content="SITENAME">
<meta property="twitter:creator" content="@eskimon_fr">
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/" />
<meta name="DC.publisher" lang="fr" content="Le blog d'Eskimon" />
<meta name="DC.creator" content="Eskimon" />
<meta name="DC.type" content="text" />
<meta name="DC.title" content="Le logiciel" />
<meta name="DC.abstract" content="Le logiciel – Après l'introduction précédente, rentrons maintenant dans le détail en parlant du logiciel qui permet d'utiliser la carte Arduino." />
<meta name="DC.subject" lang="fr" content="Arduino/A - Découverte de l'Arduino – arduino; tuto" />
<meta name="DC.description" lang="fr" content="Après l'introduction précédente, rentrons maintenant dans le détail en parlant du logiciel qui permet d'utiliser la carte Arduino." /> <meta name="DC.date" content="2013-12-10T20:03:00+01:00" />
<meta name="DC.format" content="text/html" />
<meta name="DC.language" content="fr" />
<meta name="DC.rights" content="CC BY-NC-SA" />
<script type="application/ld+json">
[{
"@context": "http://schema.org",
"@type": "Article",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://eskimon.fr/tuto-arduino-103-le-logiciel"
},
"headline": ""Le logiciel"",
"datePublished": "2013-12-10T20:03:00+01:00",
"image": [
"https://eskimon.fr/static/images/logo.png"
],
"author": {
"@type": "Person",
"name": "Eskimon",
"image": "https://eskimon.fr/static/images/logo.png"
},
"publisher": {
"@type": "Organization",
"name": "Eskimon",
"logo": {
"@type": "ImageObject",
"url": "https://eskimon.fr/static/images/logo.png"
}
},
"description": ""Apr\u00e8s l\u0027introduction pr\u00e9c\u00e9dente, rentrons maintenant dans le d\u00e9tail en parlant du logiciel qui permet d\u0027utiliser la carte Arduino.""
},
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://eskimon.fr/category/arduino",
"name": ""Arduino""
}
}
, {
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://eskimon.fr/subcategory/arduino/a-decouverte-de-larduino",
"name": ""A - D\u00e9couverte de l\u0027Arduino""
}
}
, {
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://eskimon.fr/tuto-arduino-103-le-logiciel",
"name": ""Le logiciel""
}
}]
}]
</script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2080155902357792",
enable_page_level_ads: true
});
</script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-secondary-l40 py-0">
<a class="navbar-brand" href="/">
<img src="/static/images/logo.png" width="20" height="20" alt="">
Le blog d'Eskimon
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div></div>
<div>
<a class="btn btn-lg text-secondary" href="https://github.com/Eskimon" rel="nofollow" title="Mon profil Github">
<i class="fab fa-github fa-lg"></i>
</a>
<a class="btn btn-lg text-secondary" href="https://twitter.com/Eskimon_fr" rel="nofollow" title="Me suivre sur Twitter">
<i class="fab fa-twitter fa-lg"></i>
</a>
<a class="btn btn-lg text-secondary" href="https://twitch.tv/eskimon" rel="nofollow" title="Me suivre sur Twitch">
<i class="fab fa-twitch fa-lg"></i>
</a>
<a class="btn btn-lg text-secondary" href="https://www.youtube.com/user/Eskimon49/featured" rel="nofollow" title="Les VOD sur Youtube">
<i class="fab fa-youtube fa-lg"></i>
</a>
<a class="btn btn-lg text-secondary" href="https://discord.gg/9SkDWft" rel="nofollow" title="Venez participer sur Discord">
<i class="fab fa-discord fa-lg"></i>
</a>
</div>
<div class="navbar-nav">
<a class="nav-item nav-link active" href="/category/arduino">Arduino</a>
<a class="nav-item nav-link " href="/category/articles">Articles</a>
<a class="nav-item nav-link " href="/category/web">Web</a>
</div>
</div>
</nav>
<div class="container-fluid es-verticalfill">
<div class="row">
<!-- Sidebar -->
<div class="col-lg-2 d-none d-lg-block sticky-top es-scrollable pt-3 px-1 bg-light es-ul-bordered" id="es-side-summary">
<nav class="px-2" id="es-side-summary-content">
<!-- Summary will come here -->
</nav>
<hr>
<!-- Self-promo for ebook -->
<div class="text-center">
<h4>Ebook Arduino !</h4>
<a href="/ebook-tutoriel-arduino.html"><img src="/images/couverture-mini.png" alt="couverture ebook" title="couverture de l'ebook"></a>
</div>
<hr>
<!-- Blog side carree -->
<div id="es-side-summary-bot-annonce" class="text-center">
<ins class="adsbygoogle"
style="display:inline-block;width:250px;height:250px"
data-ad-client="ca-pub-2080155902357792"
data-ad-slot="6115810402"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
<!-- Main content -->
<div class="col-md-10 col-lg-8 col-xl-7 offset-md-1 offset-lg-1 offset-xl-1 d-block pt-3" id="es-content">
<div class="row">
<div class="col ml-auto mr-auto text-center">
<div class="custom-block alert alert-info">
<div class="custom-block-body">
<p>
Vous avez une question ? Une remarque ? N'hésitez pas à venir en parler dans le chat si je suis en cours de diffusion !
</p>
<iframe src="https://player.twitch.tv/?channel=eskimon&muted=true&autoplay=true&parent=eskimon.fr" scrolling="false" allowfullscreen="true" width="450" height="260" frameborder="0"></iframe>
</div>
</div>
</div>
</div>
<article>
<!-- Leaderboard head article -->
<!--
<ins class="adsbygoogle"
style="display:inline-block;width:970px;height:90px"
data-ad-client="ca-pub-2080155902357792"
data-ad-slot="7158680773"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
-->
<nav aria-label="breadcrumb">
<ol class="breadcrumb bg-white">
<li class="breadcrumb-item"><a href="/category/arduino">Arduino</a></li>
<li class="breadcrumb-item"><a href="/subcategory/arduino/a-decouverte-de-larduino">A - Découverte de l'Arduino</a></li>
<li class="breadcrumb-item active" aria-current="page">Le logiciel</li>
</ol>
</nav>
<header class="es-post-info">
<h1 class="text-center my-4">Le logiciel</h1>
</header>
<footer class="es-post-info pb-2 mb-2">
<div class="row align-items-center">
<div class="col-auto mr-auto">
<span class="vcard author">
<a class="" href="/author/eskimon" rel="author">Eskimon</a>
</span>
,
<time class="" datetime="2013-12-10T20:03:00+01:00" pubdate>
le mar. 10 décembre 2013
</time>
</div>
<div class="col-auto">
<a class="btn btn-outline-primary btn-sm" href="/tag/arduino" rel="tag">arduino</a>
<a class="btn btn-outline-primary btn-sm" href="/tag/tuto" rel="tag">tuto</a>
</div>
</div>
</footer>
<button type="button" id="sidebarCollapse" class="float-right btn btn-secondary sticky-top d-block d-lg-none">
Sommaire
</button>
<!-- /.post-info -->
<div class="entry-content">
<p>
Afin de vous laisser un peu de temps supplémentaire pour vous procurer votre carte Arduino, je vais vous montrer brièvement comment se présente le logiciel Arduino.
</p>
<h3 id="sommaire">
<a aria-hidden="true" href="#sommaire">
<span class="es-autolink-heading">
</span>
</a>
Sommaire
</h3>
<ul>
<li>
<p>
<a href="#installation">
Installation
</a>
</p>
<ul>
<li>
<p>
<a href="#téléchargement">
Téléchargement
</a>
</p>
<ul>
<li>
<a href="#sous-windows">
Sous Windows
</a>
</li>
<li>
<a href="#mac-os">
Mac os
</a>
</li>
<li>
<a href="#sous-linux">
Sous Linux
</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<p>
<a href="#interface-du-logiciel">
Interface du logiciel
</a>
</p>
<ul>
<li>
<a href="#lancement-du-logiciel">
Lancement du logiciel
</a>
</li>
<li>
<p>
<a href="#présentation-du-logiciel">
Présentation du logiciel
</a>
</p>
<ul>
<li>
<a href="#correspondance">
Correspondance
</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<p>
<a href="#approche-et-utilisation-du-logiciel">
Approche et utilisation du logiciel
</a>
</p>
<ul>
<li>
<a href="#le-menu-file">
Le menu File
</a>
</li>
<li>
<a href="#les-boutons">
Les boutons
</a>
</li>
</ul>
</li>
</ul>
<h3 id="installation">
<a aria-hidden="true" href="#installation">
<span class="es-autolink-heading">
</span>
</a>
Installation
</h3>
<p>
Il n’y a pas besoin d’installer le logiciel Arduino sur votre ordinateur puisque ce dernier est une version portable. Regardons ensemble les étapes pour préparer votre ordinateur à l’utilisation de la carte Arduino.
</p>
<h4 id="téléchargement">
<a aria-hidden="true" href="#téléchargement">
<span class="es-autolink-heading">
</span>
</a>
Téléchargement
</h4>
<p>
Pour télécharger le logiciel, il faut se rendre sur
<a href="http://arduino.cc/en/Main/Software">
la page de téléchargement du site arduino.cc
</a>
. Vous avez deux catégories :
</p>
<ul>
<li>
Download : Dans cette catégorie, vous pouvez télécharger la dernière version du logiciel. Les plateformes Windows, Linux et Mac sont supportées par le logiciel.
<strong>
C’est donc ici que vous allez télécharger le logiciel
</strong>
.
</li>
<li>
Previous IDE Versions : Dans cette catégorie-là, vous avez toutes les versions du logiciel, sous les plateformes précédemment citées, depuis le début de sa création.
</li>
</ul>
<h5 id="sous-windows">
<a aria-hidden="true" href="#sous-windows">
<span class="es-autolink-heading">
</span>
</a>
Sous Windows
</h5>
<p>
Pour moi ce sera sous Windows. Je clique sur le lien
<strong>
Windows
</strong>
et le fichier apparaît et doit être enregistre ou bon vous semble.
</p>
<p>
Une fois que le téléchargement est terminé, vous n’avez plus qu’à décompresser le fichier avec un utilitaire de décompression (7-zip, WinRar, …). À l’intérieur du dossier se trouvent quelques fichiers et l’exécutable du logiciel :
</p>
<figure>
<img alt="Exécutable du logiciel Arduino" src="./images/uploaded/tuto-arduino-103-le-logiciel/executable-du-logiciel-arduino.png"/>
<figcaption>
Exécutable du logiciel Arduino
</figcaption>
</figure>
<h5 id="mac-os">
<a aria-hidden="true" href="#mac-os">
<span class="es-autolink-heading">
</span>
</a>
Mac os
</h5>
<p>
Cliquez sur le lien Mac OS. Un fichier
<strong>
.dmg
</strong>
apparait. Enregistrez-le.
</p>
<figure>
<img alt="Téléchargement sous Mac OS" src="./images/uploaded/tuto-arduino-103-le-logiciel/telechargement-sous-mac-os.jpg"/>
<figcaption>
Téléchargement sous Mac OS
</figcaption>
</figure>
<p>
Double-cliquez sur le fichier
<em>
.dmg
</em>
:
</p>
<figure>
<img alt="Contenu du téléchargement" src="./images/uploaded/tuto-arduino-103-le-logiciel/contenu-du-telechargement.jpg"/>
<figcaption>
Contenu du téléchargement
</figcaption>
</figure>
<p>
On y trouve l’application Arduino (
<strong>
.app
</strong>
), mais aussi le driver à installer (
<strong>
.mpkg
</strong>
). Procédez à l’installation du driver puis installez l’application en la glissant dans le raccourci du dossier "Applications" qui est normalement présent sur votre ordinateur.
</p>
<h5 id="sous-linux">
<a aria-hidden="true" href="#sous-linux">
<span class="es-autolink-heading">
</span>
</a>
Sous Linux
</h5>
<p>
Rien de plus simple, en allant dans la logithèque, recherchez le logiciel "Arduino". Sinon vous pouvez aussi passer par la ligne de commande:
</p>
<div class="hljs-code-div">
<div class="hljs-line-numbers">
<span>
</span>
</div>
<pre><code class="hljs language-bash">$ sudo apt-get install arduino
</code></pre>
</div>
<p>
Plusieurs dépendances seront installées en même temps.
</p>
<div class="custom-block alert alert-primary">
<div class="custom-block-body">
<p>
Je rajoute
<a href="http://www.arduino.cc/playground/Learning/Linux">
un lien
</a>
qui vous mènera vers la page officielle.
</p>
</div>
</div>
<h3 id="interface-du-logiciel">
<a aria-hidden="true" href="#interface-du-logiciel">
<span class="es-autolink-heading">
</span>
</a>
Interface du logiciel
</h3>
<h4 id="lancement-du-logiciel">
<a aria-hidden="true" href="#lancement-du-logiciel">
<span class="es-autolink-heading">
</span>
</a>
Lancement du logiciel
</h4>
<p>
Lançons le logiciel en double-cliquant sur l’icône avec le symbole "infinie" en vert. C’est l’exécutable du logiciel. Après un léger temps de réflexion, une image s’affiche :
</p>
<figure>
<img alt="Le splash screen Arduino" src="./images/uploaded/tuto-arduino-103-le-logiciel/le-splash-screen-arduino.jpg"/>
<figcaption>
Le splash screen Arduino
</figcaption>
</figure>
<p>
Cette fois, après quelques secondes, le logiciel s’ouvre. Une fenêtre se présente à nous :
</p>
<figure>
<img alt="L'interface de l'IDE Arduino" src="./images/uploaded/tuto-arduino-103-le-logiciel/linterface-de-lide-arduino.png"/>
<figcaption>
L'interface de l'IDE Arduino
</figcaption>
</figure>
<p>
Ce qui saute aux yeux en premier, c’est la clarté de présentation du logiciel. On voit tout de suite son interface intuitive. Voyons comment se compose cette interface.
</p>
<h4 id="présentation-du-logiciel">
<a aria-hidden="true" href="#présentation-du-logiciel">
<span class="es-autolink-heading">
</span>
</a>
Présentation du logiciel
</h4>
<p>
J’ai découpé, grâce à mon ami paint.net, l’image précédente en plusieurs parties :
</p>
<figure>
<img alt="L'interface de l'IDE Arduino en détail" src="./images/uploaded/tuto-arduino-103-le-logiciel/linterface-de-lide-arduino-en-detail.png"/>
<figcaption>
L'interface de l'IDE Arduino en détail
</figcaption>
</figure>
<h5 id="correspondance">
<a aria-hidden="true" href="#correspondance">
<span class="es-autolink-heading">
</span>
</a>
Correspondance
</h5>
<ul>
<li>
Le cadre numéro 1 : ce sont les options de configuration du logiciel
</li>
<li>
Le cadre numéro 2 : il contient les boutons qui vont nous servir lorsque l’on va programmer nos cartes
</li>
<li>
Le cadre numéro 3 : ce bloc va contenir le programme que nous allons créer
</li>
<li>
Le cadre numéro 4 : celui-ci est important, car il va nous aider à corriger les fautes dans notre programme. C’est le
<strong>
débogueur
</strong>
.
</li>
</ul>
<h3 id="approche-et-utilisation-du-logiciel">
<a aria-hidden="true" href="#approche-et-utilisation-du-logiciel">
<span class="es-autolink-heading">
</span>
</a>
Approche et utilisation du logiciel
</h3>
<p>
Attaquons-nous plus sérieusement à l’utilisation du logiciel. La barre des menus est entourée en rouge et numérotée par le chiffre 1.
</p>
<h4 id="le-menu-file">
<a aria-hidden="true" href="#le-menu-file">
<span class="es-autolink-heading">
</span>
</a>
Le menu
<em>
File
</em>
</h4>
<p>
C’est principalement ce menu que l’on va utiliser le plus. Il dispose d’un certain nombre de choses qui vont nous être très utiles. Il a été traduit en français progressivement, nous allons donc voir les quelques options qui sortent de l’ordinaire :
</p>
<figure>
<img alt="Le menu Fichier" src="./images/uploaded/tuto-arduino-103-le-logiciel/le-menu-fichier.jpg"/>
<figcaption>
Le menu Fichier
</figcaption>
</figure>
<ul>
<li>
<em>
Carnet de croquis
</em>
: Ce menu regroupe les fichiers que vous avez pu faire jusqu’à maintenant (et s’ils sont enregistrés dans le dossier par défaut du logiciel).
</li>
<li>
<em>
Exemples
</em>
(exemples) : Ceci est important, toute une liste se déroule pour afficher les noms d’exemples de programmes existants ; avec ça, vous pourrez vous aider/inspirer pour créer vos propres programmes ou tester de nouveaux composants.
</li>
<li>
<em>
Téléverser
</em>
: Permet d’envoyer le programme sur la carte Arduino. Nous y reviendrons
<img alt=";)" class="smiley" src="./static/smileys/clin.png"/>
.
</li>
<li>
<em>
Téléverser avec un programmateur
</em>
: Idem que ci-dessus, mais avec l’utilisation d’un programmateur (vous n’en n’aurez que très rarement besoin).
</li>
<li>
<em>
Préférences
</em>
: Vous pourrez régler ici quelques paramètres du logiciel.
Le reste des menus n’est pas intéressant pour l’instant, on y reviendra plus tard, avant de commencer à programmer.
</li>
</ul>
<h4 id="les-boutons">
<a aria-hidden="true" href="#les-boutons">
<span class="es-autolink-heading">
</span>
</a>
Les boutons
</h4>
<p>
Voyons à présent à quoi servent les boutons, encadrés en rouge et numérotés par le chiffre 2.
</p>
<figure>
<img alt="La barre d'outils" src="./images/uploaded/tuto-arduino-103-le-logiciel/la-barre-doutils.png"/>
<figcaption>
La barre d'outils
</figcaption>
</figure>
<ul>
<li>
Bouton 1 : Ce bouton permet de vérifier le programme, il actionne un module qui cherche les erreurs dans votre programme
</li>
<li>
Bouton 2 : Charge (téléverse) le programme dans la carte Arduino.
</li>
<li>
Bouton 3 : Crée un nouveau fichier.
</li>
<li>
Bouton 4 : Ouvre un fichier.
</li>
<li>
Bouton 5 : Enregistre le fichier.
</li>
<li>
Bouton 6 : Ouvre le moniteur série (on verra plus tard ce que c’est
<img alt=";)" class="smiley" src="./static/smileys/clin.png"/>
).
</li>
</ul>
<p>
Enfin, on va pouvoir s’occuper du matériel que vous devriez tous posséder en ce moment même : la carte Arduino !
</p>
</div>
<!-- /.entry-content -->
<hr>
<div class="row bg-light my-2 py-2 rounded">
<div class="col mr-auto">
<a class="" href="/tuto-arduino-102-quelques-bases-élémentaires" rel="prev">
<i class="fas fa-chevron-left fa-lg"></i>
tuto-arduino-102-quelques-bases-élémentaires
</a>
</div>
<div class="col-auto">
<a class="" href="/tuto-arduino-104-le-matériel" rel="next">
tuto-arduino-104-le-matériel
<i class="fas fa-chevron-right fa-lg"></i>
</a>
</div>
</div>
<div class="text-center">
<img class="es-licence-pic" src="/static/images/CC BY-NC-SA.png" alt="Licence CC BY-NC-SA" title="Article sous licence CC BY-NC-SA">
</div>
<div class="my-3 text-center">
<a class="btn btn-outline-dark mx-1" href="https://twitter.com/share?url=https://eskimon.fr/tuto-arduino-103-le-logiciel&text=Le logiciel - https://eskimon.fr/tuto-arduino-103-le-logiciel" rel="nofollow" title="Partager cet article sur Twitter" role="button" data-toggle="tooltip" data-placement="top">
<i class="fab fa-twitter fa-lg"></i>
</a>
<a class="btn btn-outline-dark mx-1" href="https://www.facebook.com/sharer.php?u=https://eskimon.fr/tuto-arduino-103-le-logiciel&t=Le logiciel - https://eskimon.fr/tuto-arduino-103-le-logiciel" rel="nofollow" title="Partager cet article sur Facebook" role="button" data-toggle="tooltip" data-placement="top">
<i class="fab fa-facebook-f fa-lg"></i>
</a>
<a class="btn btn-outline-dark mx-1" href="https://plus.google.com/share?url=https://eskimon.fr/tuto-arduino-103-le-logiciel&hl=fr" rel="nofollow" title="Partager cet article sur Google +" role="button" data-toggle="tooltip" data-placement="top">
<i class="fab fa-google-plus fa-lg"></i>
</a>
<!--<a class="btn btn-outline-dark mx-1" href="http://sharetodiaspora.github.io/?url=https://eskimon.fr/tuto-arduino-103-le-logiciel&title=Le logiciel - https://eskimon.fr/tuto-arduino-103-le-logiciel" rel="nofollow" title="Partager cet article sur Diaspora" role="button" data-toggle="tooltip" data-placement="top">
<i class="fab fa-google-plus fa-lg"></i>
</a>-->
<a class="btn btn-outline-dark mx-1" href="mailto:?subject=Le logiciel&body=https://eskimon.fr/tuto-arduino-103-le-logiciel"rel="nofollow" title="Partager cet article par email" role="button" data-toggle="tooltip" data-placement="top">
<i class="far fa-envelope fa-lg"></i>
</a>
</div>
<hr>
<div class="text-center">
<!-- billboard horizontal fin article -->
<ins class="adsbygoogle" style="display:inline-block;width:970px;height:250px" data-ad-client="ca-pub-2080155902357792" data-ad-slot="6471099302"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="text-center">
<p>Vous avez une question ? Vous souhaitez partager votre experience ? Venez nous rejoindre sur Discord !</p>
<iframe src="https://discordapp.com/widget?id=550632131877928960&theme=dark" width="500" height="500" allowtransparency="true" frameborder="0"></iframe>
</div>
</article>
</div>
<div class="d-none d-xl-block col-xl-1 offset-xl-1 px-0">
<!-- Pub ajouté auto -->
<!--
<div class="d-flex flex-column justify-content-around align-items-end h-100" id="es-right-ad-block">
</div>
-->
</div>
</div>
</div>
<footer class="container-fluid bg-dark small text-white px-3">
<div class="row">
<div class="col align-self-center">
© Eskimon -
Blog propulsé par <a class="bold text-white" href="https://blog.getpelican.com/" rel="nofollow">Pelican</a> -
Thème fait maison
</div>
<div class="col align-self-end text-right">
<a class="btn btn-lg text-light" href="https://github.com/Eskimon" rel="nofollow" title="Mon profil Github">
<i class="fab fa-github fa-lg"></i>
</a>
<a class="btn btn-lg text-light" href="https://twitter.com/Eskimon_fr" rel="nofollow" title="Me suivre sur Twitter">
<i class="fab fa-twitter fa-lg"></i>
</a>
<a class="btn btn-lg text-light" href="https://twitch.tv/eskimon" rel="nofollow" title="Me suivre sur Twitch">
<i class="fab fa-twitch fa-lg"></i>
</a>
<a class="btn btn-lg text-light" href="https://www.youtube.com/user/Eskimon49/featured" rel="nofollow" title="Les VOD sur Youtube">
<i class="fab fa-youtube fa-lg"></i>
</a>
<a class="btn btn-lg text-light" href="https://discord.gg/9SkDWft" rel="nofollow" title="Venez participer sur Discord">
<i class="fab fa-discord fa-lg"></i>
</a>
</div>
</div>
</footer>
<!-- For formula -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<!-- Font awesome -->
<script src="https://use.fontawesome.com/releases/v5.0.0/js/all.js"></script>
<!-- JQuery first -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<!-- Popper.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<!-- For tooltips -->
<script>$(function () { $('[data-toggle="tooltip"]').tooltip()})</script>
<script src="/static/js/my-scripts.js"></script>
<script>
function create_side_summary() {
// Duplicate summary
var main_summary = $('#sommaire').next();
if(main_summary.length === 0)
return
var side_summary = main_summary.clone();
side_summary.addClass('pl-0');
var all_p = side_summary.find('p');
all_p.contents().unwrap();
var all_li = side_summary.find('li');
all_li.addClass('pl-1');
// scrollspy - in
side_summary.attr('id', 'es-side-summary-mainlist');
//side_summary.addClass('nav');
//all_li.addClass('nav-item');
var all_a = side_summary.find('a');
all_a.addClass('nav-link');
var all_ul = side_summary.find('ul');
all_ul.addClass('pl-1');
$('body').scrollspy({ target: '#es-side-summary-mainlist' });
// scrollspy - out
var summary_title = document.createElement("h4");
summary_title.className = 'navbar-brand';
summary_title.innerHTML = 'Sommaire';
$(summary_title).prependTo('#es-side-summary-content');
side_summary.appendTo('#es-side-summary-content');
main_summary.addClass('es-subul-collapse');
}
function generate_spoilers() {
all_secret = $('.custom-block-spoiler');
all_secret.each(function( index ) {
let content = $(this).html();
$(this).html('');
$(this).addClass('card');
var headerText = document.createElement("button");
var cardHeader = document.createElement("div");
var cardBodyWrapper = document.createElement("div");
var cardBody = document.createElement("div");
$(headerText).text('Contenu masqué, cliquez pour afficher');
$(headerText).addClass('btn btn-link btn-sm');
$(headerText).attr('data-toggle', 'collapse');
$(headerText).attr('data-target', '#collapse-' + index);
$(headerText).attr('aria-controls', 'collapse-' + index);
$(headerText).attr('aria-expanded', 'false');
$(cardHeader).append(headerText);
$(cardHeader).addClass('card-header');
$(cardHeader).attr('id', 'spoiler-' + index);
$(cardBody).html(content);
$(cardBody).addClass('card-body');
$(cardBodyWrapper).append(cardBody);
$(cardBodyWrapper).addClass('collapse hide');
$(cardBodyWrapper).attr('id', 'collapse-' + index)
$(cardBodyWrapper).attr('aria-labelledby', 'spoiler-' + index)
$(this).prepend(cardHeader);
$(this).append(cardBodyWrapper);
});
$('.collapse').collapse({toggle: false});
}
function load_extra_ads() {
return;
// Load right side blocks
var sidebar = $('#es-right-ad-block');
var n_height = Math.floor(sidebar.height() / 2000);
for (i = 0; i < n_height; i++) {
var frag = document.createDocumentFragment();
var newAdBlock = document.createElement("div");
var block1 = document.createElement("ins");
var block2 = document.createElement("script");
block1.innerHTML = '<ins class="adsbygoogle" ' +
'style="display:inline-block;width:120px;height:600px" ' +
'data-ad-client="ca-pub-2080155902357792" ' +
'data-ad-slot="4023722026"></ins>';
block2.innerHTML = '(adsbygoogle = window.adsbygoogle || []).push({});';
$(newAdBlock).append(block1);
$(newAdBlock).append(block2);
$(frag).append(newAdBlock);
$(sidebar).append(frag);
}
// Load in feed blocks (above every h3)
var frag = document.createDocumentFragment();
var newAdBlock = document.createElement("div");
var block1 = document.createElement("ins");
var block2 = document.createElement("script");
block1.innerHTML = '<ins class="adsbygoogle"' +
'style = "display:inline-block;width:970px;height:90px"' +
'data - ad - client="ca-pub-2080155902357792"' +
'data - ad - slot="7100712740" ></ins >'
block2.innerHTML = '(adsbygoogle = window.adsbygoogle || []).push({});';
$(newAdBlock).append(block1);
$(newAdBlock).append(block2);
newAdBlock.className = 'my-3 text-center';
$(frag).append(newAdBlock);
var titles = $('.entry-content h3').slice(1);
$(frag).insertBefore(titles);
}
function load_top_moneytizer_ads() {
var frag = document.createDocumentFragment();
var newAdBlock = document.createElement("div");
var script1 = document.createElement("script");
var script2 = document.createElement("script");
script1.src = "//ads.themoneytizer.com/s/gen.js?type=1";
script2.src = "//ads.themoneytizer.com/s/requestform.js?siteId=70220&formatId=1";
newAdBlock.id = '70220-1';
newAdBlock.append(script1);
newAdBlock.append(script2);
$(frag).append(newAdBlock);
$(frag).insertBefore($('.entry-content h3')[1]);
}
$(document).ready(function () {
create_side_summary();
generate_spoilers();
load_extra_ads();
// when opening the sidebar
$('#sidebarCollapse').on('click', function () {
// open sidebar
$('#es-side-summary').removeClass('d-none');
$('#es-content').addClass('d-none');
$('#sidebarCollapse').removeClass('sticky-top');
});
// if dismiss or overlay was clicked
$('#es-side-summary').on('click', function () {
// hide the sidebar
$('#es-side-summary').addClass('d-none');
$('#es-content').removeClass('d-none');
$('#sidebarCollapse').addClass('sticky-top');
});
});
</script>
</body>
</html>