-
Notifications
You must be signed in to change notification settings - Fork 2
/
translations.html.save
2511 lines (2153 loc) · 97.7 KB
/
translations.html.save
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
<div id="tab1" class="panel group showing" style="display: block;">
<div class="fr" style="display: none;"><b>Toutes les leçons ne sont pas ici, car elles n'ont pas encore été traduites. Pour voir toutes les leçons (en anglais), cliquez sur le drapeau américain sur la barre supérieure.</b></div>
<div class="nl" style="display: none;"><b>Alleen de lessen die vertaald zijn in Nederlands zijn zichtbaar op deze pagina. Ga, om alle lessen te bekijken, naar de Engelstalige site door bovenaan de pagina op de Amerikaanse vlag te klikken of op de onderstaande link.</b></div>
<div class="pt" style="display: none;"><b>Apenas as lições já traduzidas estão disponíveis nessa página. Para acessar todas as lições disponíveis, por favor visite o site em inglês clicando na bandeira dos EUA acima ou no link abaixo.</b></div>
<div class="es" style="display: none;"><b>Esta página solo muestra las lecciones traducidas.Para ver todas las lecciones disponibles, por favor visita la página inglesa, pulsando sobre la bandera americana o en el siguiente enlace.</b></div>
<div class="ar" style="display: none;"><b>فقط الدروس التي تمت ترجمتها متواجدة على هذه الصفحة، لإظهار جميع الدروس المتوافرة يرجى زيارة الصفحة الإنجليزية عن طريق اختيار زر علم الولايات المتحدة الامريكية اعلاه أو على الرابط في الأسفل.</b></div>
<div class="el" style="display: none;"><b>Δεν είναι όλα τα μαθήματα είναι εδώ, επειδή δεν έχουν μεταφραστεί ακόμα. Για να δείτε όλα τα μαθήματα (στα αγγλικά) κάντε κλικ στην σημαία των ΗΠΑ στην κορυφή.</b></div>
<div class="ct" style="display: none;"><b>No totes les classes són aquí, perquè no s'han traduït encara. Per veure totes les lliçons (en anglès) feu clic a la bandera dels Estats Units en la barra superior.</b></div>
<div class="he" style="display: none;"><b>לא כל השיעורים הם כאן, כי הם לא תורגמו עדיין. כדי להציג את כל השיעורים (באנגלית) לחץ על דגל ארה"ב על העליונה.</b></div>
<div class="de" style="display: none;"><b>Nicht alle Lektionen sind hier, weil sie noch nicht
übersetzt wurden. Um alle Lektionen (auf Englisch) anzuzeigen,
klicken Sie auf die US-Flagge in der oberen Leiste.</b></div>
<script>
if (language != "en-us") {
document.write('<div>English site: <a href="/lessons.html#en-us"\
onclick="setTimeout(function(){location.reload(true);},100)">click\
here</a></div>')
}
</script>
<p class="beginner" id="beg-intro" style="display: none;">These lessons are for students new to the
EV3. These lessons are designed to be completed in
order.
</p>
<p class="intermediate" id="int-intro" style="display: none;">These lessons are for students who understand basic
movement and sensor use.
</p>
<p class="advanced" id="adv-intro" style="display: none;">These lessons are for students already familiar
with MyBlocks and line following.
</p>
<p class="beyond" id="other-intro" style="display: none;">These lessons are intended for EV3 users who have completed all our lessons and interested in trying and learning new techniques and sensors.
</p>
<p style="display: none" class="workshop" id="camp-intro">These are combined lesson curriculum that are
ideal for camps
</p>
<p style="display: none;" class="wro" id="wro-intro">These are
lessons to help WRO teams.
</p>
<br>
<script>jekyll = 0</script>
<div class="toggle toggle beginner robot base_robot robot_design droidbot בנו_רובוט_בסיסי_עם_זרועות he" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">בנו רובוט בסיסי עם זרועות</a>')
jekyll = jekyll+1
</script> <a id="0" href="#" title="Close">בנו רובוט בסיסי עם זרועות</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li><a href="robots.html">Robot Design Lessons page</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner es conceptos_básicos_de_ev3_introducción_al_bloque_ev3_y_su_software" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Conceptos Básicos de EV3 Introducción al Bloque EV3 y su Software</a>')
jekyll = jekyll+1
</script> <a id="1" href="#" title="Close">Conceptos Básicos de EV3 Introducción al Bloque EV3 y su Software</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/es/beginner/Introduction.pptx">PPTX</a>,
<a href="translations/es/beginner/Introduction.pdf">PDF</a>
</li>
</li>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner introev3 toggle how_to_use_these_lessons en" style="display: block;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">How to use these lessons</a>')
jekyll = jekyll+1
</script> <a id="2" href="#" title="Close">How to use these lessons</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/en-us/beginner/LessonUse.pptx">PPTX</a>,
<a href="translations/en-us/beginner/LessonUse.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner ar مقدمة_الى_اللبنة_الذكية_ومحيط_البرمجة" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">مقدمة الى اللبنة الذكية ومحيط البرمجة</a>')
jekyll = jekyll+1
</script> <a id="3" href="#" title="Close">مقدمة الى اللبنة الذكية ومحيط البرمجة</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/ar/beginner/Introduction.pptx">PPTX</a>,
<a href="translations/ar/beginner/Introduction.pdf">PDF</a>
</li>
</li>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner robot base_robot robot_design droidbot construindo_uma_base_do_robô_e_anexos pt" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Construindo uma Base do Robô e Anexos</a>')
jekyll = jekyll+1
</script> <a id="4" href="#" title="Close">Construindo uma Base do Robô e Anexos</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li><a href="robots.html">Robot Design Lessons page</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner robot base_robot robot_design droidbot robot_ontwerp nl" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Robot ontwerp</a>')
jekyll = jekyll+1
</script> <a id="5" href="#" title="Close">Robot ontwerp</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li><a href="robots.html">Robot Design Lessons page</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner programs programmes programming programming_app programing introev3 brick software ev3 buttons centre up- down- left- right- center- ipad tablet android app introduction introduction_to_brick_and_software מבוא_ללבנה_ולתוכנה he" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">מבוא ללבנה ולתוכנה</a>')
jekyll = jekyll+1
</script> <a id="6" href="#" title="Close">מבוא ללבנה ולתוכנה</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/he/beginner/Introduction.pptx">PPTX</a>,
<a href="translations/he/beginner/Introduction.pdf">PDF</a>
</li>
<li>Edu vs. Home Edition Software: <a href="translations/en-us/guides//EDUvsHome.pdf">Quick
Guide</a> (English)
</li>
<li>EV3 and NXT Compatibility: <a href="translations/en-us/guides//EV3andNXT.pdf">Quick
Guide</a> (English)
</li>
<li>Updating Software & Firmware: <a href="translations/en-us/guides//UpdatingHome.pdf">Quick
Guide for Home Edition</a> (English), <a href="translations/en-us/guides//UpdatingEdu.pdf">Quick
Guide for Edu Edition</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner es bloque_pantalla" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Bloque Pantalla</a>')
jekyll = jekyll+1
</script> <a id="7" href="#" title="Close">Bloque Pantalla</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/es/beginner/Display.pptx">PPTX</a>,
<a href="translations/es/beginner/Display.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner robot base_robot robot_design droidbot build_a_base_robot en" style="display: block;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Build a Base Robot</a>')
jekyll = jekyll+1
</script> <a id="8" href="#" title="Close">Build a Base Robot</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li>Refer to the <a href="robots.html">Robot Design Lessons page </a> for various base models that can be used with our lessons. If you are using an EV3, we recommend that you start with EV3 Enterprise, EV3 Discovery or the base robot in the EV3 Education Core Set. If you are using an NXT, our lessons are based on Cyberbot.
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner ar السير_بشكل_مستقيم" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">السير بشكل مستقيم</a>')
jekyll = jekyll+1
</script> <a id="9" href="#" title="Close">السير بشكل مستقيم</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/ar/beginner/MovingStraight.pptx">PPTX</a>,
<a href="translations/ar/beginner/MovingStraight.pdf">PDF</a>
</li>
<li><a href="translations/ar/beginner/MovingStraight.docx">Worksheet</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner updating software firmware ev3 upload 1.07h 1.07e 1.09d en updating_software_and_firmware" style="display: block;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Updating Software and Firmware</a>')
jekyll = jekyll+1
</script> <a id="10" href="#" title="Close">Updating Software and Firmware</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li>Slides:
<a href="translations/en-us/beginner/InstallingUpdates.pptx">PPTX</a>,
<a href="translations/en-us/beginner/InstallingUpdates.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner programs programmes programming programming_app programing introev3 brick software ev3 buttons centre up- down- left- right- center- ipad tablet android app introduction introduction_to_brick_and_software introdução_ao_brick_e_software pt" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Introdução ao Brick e Software</a>')
jekyll = jekyll+1
</script> <a id="11" href="#" title="Close">Introdução ao Brick e Software</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/pt-br/beginner/Introduction.pptx">PPTX</a>,
<a href="translations/pt-br/beginner/Introduction.pdf">PDF</a>
</li>
<li>Edu vs. Home Edition Software: <a href="translations/en-us/guides//EDUvsHome.pdf">Quick
Guide</a> (English)
</li>
<li>EV3 and NXT Compatibility: <a href="translations/en-us/guides//EV3andNXT.pdf">Quick
Guide</a> (English)
</li>
<li>Updating Software & Firmware: <a href="translations/en-us/guides//UpdatingHome.pdf">Quick
Guide for Home Edition</a> (English), <a href="translations/en-us/guides//UpdatingEdu.pdf">Quick
Guide for Edu Edition</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner programs programmes programming programming_app programing introev3 brick software ev3 buttons centre up- down- left- right- center- ipad tablet android app introduction introduction_to_brick_and_software introductie_intelligente_steen_en_software nl" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Introductie Intelligente steen en software</a>')
jekyll = jekyll+1
</script> <a id="12" href="#" title="Close">Introductie Intelligente steen en software</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/nl/beginner/Introduction.pptx">PPTX</a>,
<a href="translations/nl/beginner/Introduction.pdf">PDF</a>
</li>
<li>Edu vs. Home Edition Software: <a href="translations/en-us/guides//EDUvsHome.pdf">Quick
Guide</a> (English)
</li>
<li>EV3 and NXT Compatibility: <a href="translations/en-us/guides//EV3andNXT.pdf">Quick
Guide</a> (English)
</li>
<li>Updating Software & Firmware: <a href="translations/en-us/guides//UpdatingHome.pdf">Quick
Guide for Home Edition</a> (English), <a href="translations/en-us/guides//UpdatingEdu.pdf">Quick
Guide for Edu Edition</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner moving ipad programming_app tablet android app moving_straight forward backward תנועה_ישרה he" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">תנועה ישרה</a>')
jekyll = jekyll+1
</script> <a id="13" href="#" title="Close">תנועה ישרה</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/he/beginner/MovingStraight.pptx">PPTX</a>,
<a href="translations/he/beginner/MovingStraight.pdf">PDF</a>
</li>
<li><a href="translations/he/beginner/MovingStraight.docx">Worksheet</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner es sensor_de_colores" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Sensor de Colores</a>')
jekyll = jekyll+1
</script> <a id="14" href="#" title="Close">Sensor de Colores</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/es/beginner/Color.pptx">PPTX</a>,
<a href="translations/es/beginner/Color.pdf">PDF</a>
</li>
<li>EV3 Tablet App Slides: <a href="translations/en-us/tablet-beginner/Color.pptx">PPTX</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner programs programmes programming programming_app programing introev3 brick software ev3 buttons centre up- down- left- right- center- ipad tablet android app introduction introduction_to_brick_and_software en" style="display: block;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Introduction to Brick and Software</a>')
jekyll = jekyll+1
</script> <a id="15" href="#" title="Close">Introduction to Brick and Software</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/en-us/beginner/Introduction.pptx">PPTX</a>,
<a href="translations/en-us/beginner/Introduction.pdf">PDF</a>
</li>
<li class="ng-binding">NXT Slides:
<a href="translations/en-us/beginner/IntroductionNXT.pptx">PPTX</a>,
<a href="translations/en-us/beginner/IntroductionNXT.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner programs programmes programming programming_app programing introev3 brick software ev3 buttons centre up- down- left- right- center- ipad tablet android app introduction introduction_to_brick_and_software ct ev3_bàsic_introducció_al_brick_ev3_i_al_programari" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">EV3 Bàsic Introducció al Brick Ev3 i al Programari</a>')
jekyll = jekyll+1
</script> <a id="16" href="#" title="Close">EV3 Bàsic Introducció al Brick Ev3 i al Programari</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/ct/beginner/Introduction.pptx">PPTX</a>,
<a href="translations/ct/beginner/Introduction.pdf">PDF</a>
</li>
<li>Edu vs. Home Edition Software: <a href="translations/en-us/guides//EDUvsHome.pdf">Quick
Guide</a> (English)
</li>
<li>EV3 and NXT Compatibility: <a href="translations/en-us/guides//EV3andNXT.pdf">Quick
Guide</a> (English)
</li>
<li>Updating Software & Firmware: <a href="translations/en-us/guides//UpdatingHome.pdf">Quick
Guide for Home Edition</a> (English), <a href="translations/en-us/guides//UpdatingEdu.pdf">Quick
Guide for Edu Edition</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner ar الدوران" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">الدوران</a>')
jekyll = jekyll+1
</script> <a id="17" href="#" title="Close">الدوران</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/ar/beginner/Turning.pptx">PPTX</a>,
<a href="translations/ar/beginner/Turning.pdf">PDF</a>
</li>
<li><a href="translations/ar/beginner/Turning.docx">Worksheet</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner programs programmes programming programming_app programing introev3 brick software ev3 buttons centre up- down- left- right- center- ipad tablet android app introduction en common_brick_issues" style="display: block;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Common Brick Issues</a>')
jekyll = jekyll+1
</script> <a id="18" href="#" title="Close">Common Brick Issues</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/en-us/beginner/CommonIssues.pptx">PPTX</a>,
<a href="translations/en-us/beginner/CommonIssues.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner portview port_view brick ev3 usando_dados_do_sensor_e_port_view pt" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Usando Dados Do Sensor E Port View</a>')
jekyll = jekyll+1
</script> <a id="19" href="#" title="Close">Usando Dados Do Sensor E Port View</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/pt-br/beginner/PortView.pptx">PPTX</a>,
<a href="translations/pt-br/beginner/PortView.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner moving ipad programming_app tablet android app moving_straight forward backward rechtdoor_rijden nl" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Rechtdoor rijden</a>')
jekyll = jekyll+1
</script> <a id="20" href="#" title="Close">Rechtdoor rijden</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/nl/beginner/MovingStraight.pptx">PPTX</a>,
<a href="translations/nl/beginner/MovingStraight.pdf">PDF</a>
</li>
<li><a href="translations/nl/beginner/MovingStraight.docx">Worksheet</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner es interruptores" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Interruptores</a>')
jekyll = jekyll+1
</script> <a id="21" href="#" title="Close">Interruptores</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/es/beginner/Switches.pptx">PPTX</a>,
<a href="translations/es/beginner/Switches.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner portview port_view brick ev3 en" style="display: block;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Port View</a>')
jekyll = jekyll+1
</script> <a id="22" href="#" title="Close">Port View</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/en-us/beginner/PortView.pptx">PPTX</a>,
<a href="translations/en-us/beginner/PortView.pdf">PDF</a>
</li>
<li class="ng-binding">NXT Slides:
<a href="translations/en-us/beginner/ViewNXT.pptx">PPTX</a>,
<a href="translations/en-us/beginner/ViewNXT.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner portview port_view brick ev3 el ανάγνωση_θυρών_και_δεδομένων" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Ανάγνωση θυρών και δεδομένων</a>')
jekyll = jekyll+1
</script> <a id="23" href="#" title="Close">Ανάγνωση θυρών και δεδομένων</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/el/beginner/PortView.pptx">PPTX</a>,
<a href="translations/el/beginner/PortView.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner moving ipad programming_app tablet android app moving_straight forward backward movendo_em_linha_reta pt" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Movendo em Linha Reta</a>')
jekyll = jekyll+1
</script> <a id="24" href="#" title="Close">Movendo em Linha Reta</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/pt-br/beginner/MovingStraight.pptx">PPTX</a>,
<a href="translations/pt-br/beginner/MovingStraight.pdf">PDF</a>
</li>
<li><a href="translations/pt-br/beginner/MovingStraight.docx">Worksheet</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner pseudocode nl" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Pseudocode</a>')
jekyll = jekyll+1
</script> <a id="25" href="#" title="Close">Pseudocode</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/nl/beginner/Pseudocode.pptx">PPTX</a>,
<a href="translations/nl/beginner/Pseudocode.pdf">PDF</a>
</li>
<li><a href="translations/nl/beginner/PseudocodeWorksheet.pdf">Worksheet</a>
</li>
<li>Using Comments to Improve Code: <a href="translations/en-us/guides//Comments.pdf">Quick
Guide</a> (English)
</li>
<li>Mission Planning Worksheet <a href="translations/en-us/guides//MissionPlanning.pdf">Quick
Guide</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner moving programming_app ipad app turning tablet pivot spin point android סיבוב he" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">סיבוב</a>')
jekyll = jekyll+1
</script> <a id="26" href="#" title="Close">סיבוב</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/he/beginner/Turning.pptx">PPTX</a>,
<a href="translations/he/beginner/Turning.pdf">PDF</a>
</li>
<li><a href="translations/he/beginner/Turning.docx">Worksheet</a>
</li>
<li>Truth About Turns - Pivot Turns <a href="translations/en-us/guides//PivotTurns.pdf">Quick
Guide</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner es seguidor_básicode_líneas" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Seguidor Básicode Líneas</a>')
jekyll = jekyll+1
</script> <a id="27" href="#" title="Close">Seguidor Básicode Líneas</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/es/beginner/BasicLineFollower.pptx">PPTX</a>,
<a href="translations/es/beginner/BasicLineFollower.pdf">PDF</a>
</li>
<li> <a href="translations/es/beginner/BasicLineFollower.docx">Worksheet</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner moving ipad programming_app tablet android app moving_straight forward backward en" style="display: block;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Moving Straight</a>')
jekyll = jekyll+1
</script> <a id="28" href="#" title="Close">Moving Straight</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/en-us/beginner/MovingStraight.pptx">PPTX</a>,
<a href="translations/en-us/beginner/MovingStraight.pdf">PDF</a>
</li>
<li class="ng-binding">NXT Slides:
<a href="translations/en-us/beginner/MovingStraightNXT.pptx">PPTX</a>,
<a href="translations/en-us/beginner/MovingStraightNXT.pdf">PDF</a>
</li>
<li><a href="translations/en-us/beginner/MovingStraight.docx">Worksheet</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner moving ipad programming_app tablet android app moving_straight forward backward el προχωροντας_ευθεια" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">ΠΡΟΧΩΡΟΝΤΑΣ ΕΥΘΕΙΑ</a>')
jekyll = jekyll+1
</script> <a id="29" href="#" title="Close">ΠΡΟΧΩΡΟΝΤΑΣ ΕΥΘΕΙΑ</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/el/beginner/MovingStraight.pptx">PPTX</a>,
<a href="translations/el/beginner/MovingStraight.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner pseudocode começando_com_pseudocódigo pt" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Começando com Pseudocódigo</a>')
jekyll = jekyll+1
</script> <a id="30" href="#" title="Close">Começando com Pseudocódigo</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/pt-br/beginner/Pseudocode.pptx">PPTX</a>,
<a href="translations/pt-br/beginner/Pseudocode.pdf">PDF</a>
</li>
<li><a href="translations/pt-br/beginner/PseudocodeWorksheet.pdf">Worksheet</a>
</li>
<li>Using Comments to Improve Code: <a href="translations/en-us/guides//Comments.pdf">Quick
Guide</a> (English)
</li>
<li>Mission Planning Worksheet <a href="translations/en-us/guides//MissionPlanning.pdf">Quick
Guide</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner moving programming_app ipad app turning tablet pivot spin point android draaien nl" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Draaien</a>')
jekyll = jekyll+1
</script> <a id="31" href="#" title="Close">Draaien</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/nl/beginner/Turning.pptx">PPTX</a>,
<a href="translations/nl/beginner/Turning.pdf">PDF</a>
</li>
<li><a href="translations/nl/beginner/Turning.docx">Worksheet</a>
</li>
<li>Truth About Turns - Pivot Turns <a href="translations/en-us/guides//PivotTurns.pdf">Quick
Guide</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner display programming_app displaying_text_and_graphics ipad tablet text graphics android display_block display_graphics app הצגת_מלל_וגרפיקה he" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">הצגת מלל וגרפיקה</a>')
jekyll = jekyll+1
</script> <a id="32" href="#" title="Close">הצגת מלל וגרפיקה</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/he/beginner/Display.pptx">PPTX</a>,
<a href="translations/he/beginner/Display.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner es desafios_finales" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Desafios Finales</a>')
jekyll = jekyll+1
</script> <a id="33" href="#" title="Close">Desafios Finales</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/es/beginner/FinalChallenge.pptx">PPTX</a>,
<a href="translations/es/beginner/FinalChallenge.pdf">PDF</a>
</li>
<li> <a href="translations/es/beginner/FinalAssessment.docx">Assessment</a>
</li>
<li> <a href="challenges.html">More Challenges</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner pseudocode en" style="display: block;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Pseudocode</a>')
jekyll = jekyll+1
</script> <a id="34" href="#" title="Close">Pseudocode</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/en-us/beginner/Pseudocode.pptx">PPTX</a>,
<a href="translations/en-us/beginner/Pseudocode.pdf">PDF</a>
</li>
<li><a href="translations/en-us/beginner/PseudocodeWorksheet.pdf">Worksheet</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner moving programming_app ipad app turning tablet pivot spin point android virada pt" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Virada</a>')
jekyll = jekyll+1
</script> <a id="35" href="#" title="Close">Virada</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/pt-br/beginner/Turning.pptx">PPTX</a>,
<a href="translations/pt-br/beginner/Turning.pdf">PDF</a>
</li>
<li><a href="translations/pt-br/beginner/Turning.docx">Worksheet</a>
</li>
<li>Truth About Turns - Pivot Turns <a href="translations/en-us/guides//PivotTurns.pdf">Quick
Guide</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner display programming_app displaying_text_and_graphics ipad tablet text graphics android display_block display_graphics app tekst_en_grafieken_weergeven nl" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Tekst en grafieken weergeven</a>')
jekyll = jekyll+1
</script> <a id="36" href="#" title="Close">Tekst en grafieken weergeven</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/nl/beginner/Display.pptx">PPTX</a>,
<a href="translations/nl/beginner/Display.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner touch touch_sensor sesnsors ipad tablet android programming_app app wait_block motor_on חיישן_מגע he" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">חיישן מגע</a>')
jekyll = jekyll+1
</script> <a id="37" href="#" title="Close">חיישן מגע</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/he/beginner/Touch.pptx">PPTX</a>,
<a href="translations/he/beginner/Touch.pdf">PDF</a>
</li>
<li>Using Sensors: Move Until <a href="translations/en-us/guides//MoveUntil.pdf">Quick Guide</a> (English)
</li>
</ul>
</div>
<br>
</div>
<div class="toggle intermediate es seguidor_de_pared_ultrasonico" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Seguidor de Pared Ultrasonico</a>')
jekyll = jekyll+1
</script> <a id="38" href="#" title="Close">Seguidor de Pared Ultrasonico</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/es/intermediate/UltrasonicWallFollow.pptx">PPTX</a>,
<a href="translations/es/intermediate/UltrasonicWallFollow.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner moving programming_app ipad app turning tablet pivot spin point android basic_turning en" style="display: block;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Basic Turning</a>')
jekyll = jekyll+1
</script> <a id="39" href="#" title="Close">Basic Turning</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/en-us/beginner/Turning.pptx">PPTX</a>,
<a href="translations/en-us/beginner/Turning.pdf">PDF</a>
</li>
<li class="ng-binding">NXT Slides:
<a href="translations/en-us/beginner/TurningNXT.pptx">PPTX</a>,
<a href="translations/en-us/beginner/TurningNXT.pdf">PDF</a>
</li><li><a href="translations/en-us/beginner/Turning.docx">Worksheet</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle beginner ar كيفية_التقاط_وتحريك_جسم_ما" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">كيفية التقاط وتحريك جسم ما</a>')
jekyll = jekyll+1
</script> <a id="40" href="#" title="Close">كيفية التقاط وتحريك جسم ما</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/ar/beginner/MoveObject.pptx">PPTX</a>,
<a href="translations/ar/beginner/MoveObject.pdf">PDF</a>
</li>
</ul>
</div>
<br>
</div>
<div class="toggle toggle beginner display programming_app displaying_text_and_graphics ipad tablet text graphics android display_block display_graphics app blocos_de_vizualização pt" style="display: none;">
<p class="tab-index tab-closed">
<script>
document.write(' <a id="'+jekyll+'" href="#" title="Close">Blocos de vizualização</a>')
jekyll = jekyll+1
</script> <a id="41" href="#" title="Close">Blocos de vizualização</a>
</p>
<div class="content-tab closed indent" style="display: none;">
<ul>
<li class="ng-binding">Slides:
<a href="translations/pt-br/beginner/Display.pptx">PPTX</a>,