-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManual_ArduinoESP32Nano.htm
5000 lines (3810 loc) · 486 KB
/
Manual_ArduinoESP32Nano.htm
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
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=unicode">
<meta name=Generator content="Microsoft Word 15 (filtered)">
<title>Manual Arduino ESP32-Nano word clock</title>
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Verdana;
panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
{font-family:"Segoe UI";
panose-1:2 11 5 2 4 2 4 2 2 3;}
@font-face
{font-family:Consolas;
panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
h1
{mso-style-link:"Heading 1 Char";
margin-right:0cm;
margin-left:0cm;
font-size:24.0pt;
font-family:"Segoe UI",sans-serif;
font-weight:bold;}
h2
{mso-style-link:"Heading 2 Char";
margin-top:2.0pt;
margin-right:0cm;
margin-bottom:0cm;
margin-left:0cm;
page-break-after:avoid;
font-size:13.0pt;
font-family:"Calibri Light",sans-serif;
color:#2F5496;
font-weight:normal;}
p.MsoHeader, li.MsoHeader, div.MsoHeader
{mso-style-link:"Header Char";
margin:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.MsoFooter, li.MsoFooter, div.MsoFooter
{mso-style-link:"Footer Char";
margin:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{color:purple;
text-decoration:underline;}
p
{margin-right:0cm;
margin-left:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
pre
{mso-style-link:"HTML Preformatted Char";
margin:0cm;
font-size:10.0pt;
font-family:"Courier New";}
p.MsoNoSpacing, li.MsoNoSpacing, div.MsoNoSpacing
{margin:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
{margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
{margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
{margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
{margin-top:0cm;
margin-right:0cm;
margin-bottom:0cm;
margin-left:36.0pt;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.msonormal0, li.msonormal0, div.msonormal0
{mso-style-name:msonormal;
margin-right:0cm;
margin-left:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.auto-style1, li.auto-style1, div.auto-style1
{mso-style-name:auto-style1;
margin-right:0cm;
margin-left:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.auto-style2, li.auto-style2, div.auto-style2
{mso-style-name:auto-style2;
margin-right:0cm;
margin-left:0cm;
border:none;
padding:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.auto-style3, li.auto-style3, div.auto-style3
{mso-style-name:auto-style3;
margin-right:0cm;
margin-left:0cm;
font-size:10.0pt;
font-family:"Segoe UI",sans-serif;}
p.auto-style4, li.auto-style4, div.auto-style4
{mso-style-name:auto-style4;
margin-right:0cm;
margin-left:0cm;
border:none;
padding:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.auto-style5, li.auto-style5, div.auto-style5
{mso-style-name:auto-style5;
margin-right:0cm;
margin-left:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
p.auto-style6, li.auto-style6, div.auto-style6
{mso-style-name:auto-style6;
margin-right:0cm;
margin-left:0cm;
font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
span.Heading1Char
{mso-style-name:"Heading 1 Char";
mso-style-link:"Heading 1";
font-family:"Calibri Light",sans-serif;
color:#2F5496;}
span.auto-style51
{mso-style-name:auto-style51;
font-family:"Segoe UI",sans-serif;}
span.auto-style31
{mso-style-name:auto-style31;
font-family:"Segoe UI",sans-serif;}
span.auto-style61
{mso-style-name:auto-style61;
font-family:"Segoe UI",sans-serif;
border:none windowtext 1.0pt;
padding:0cm;}
span.auto-style11
{mso-style-name:auto-style11;
border:none windowtext 1.0pt;
padding:0cm;}
span.HTMLPreformattedChar
{mso-style-name:"HTML Preformatted Char";
mso-style-link:"HTML Preformatted";
font-family:Consolas;}
span.HeaderChar
{mso-style-name:"Header Char";
mso-style-link:Header;
font-family:"Times New Roman",serif;}
span.FooterChar
{mso-style-name:"Footer Char";
mso-style-link:Footer;
font-family:"Times New Roman",serif;}
span.Heading2Char
{mso-style-name:"Heading 2 Char";
mso-style-link:"Heading 2";
font-family:"Calibri Light",sans-serif;
color:#2F5496;}
.MsoChpDefault
{font-size:12.0pt;
font-family:"Segoe UI",sans-serif;}
/* Page Definitions */
@page WordSection1
{size:595.3pt 841.9pt;
margin:24.95pt 72.0pt 35.45pt 72.0pt;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
ol
{margin-bottom:0cm;}
ul
{margin-bottom:0cm;}
-->
</style>
</head>
<body lang=en-NL link=blue vlink=purple style='word-wrap:break-word'>
<div class=WordSection1>
<h1><span lang=EN-GB>Arduino ESP32-Nano word clock</span></h1>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>A clock that
displays time in words in the languages Dutch, English, French and German in a
large 4-language clock or as a single language clock.<br>
The Arduino ESP32 Nano is used to drive the clock. <br>
Time is synchronized with the Network Time Protocol (NTP) from the internet. </span></span><span
lang=EN-GB><br>
<span class=auto-style51>Settings can be controlled with a webpage, a PC or a
Bluetooth Low Energy (BLE) serial terminal app installed on a phone, PC or
tablet.</span><br>
<br>
</span></p>
<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 width=636
style='width:477.0pt;border-collapse:collapse;border:none'>
<tr style='height:238.85pt'>
<td width=326 valign=top style='width:244.8pt;border:solid windowtext 1.0pt;
padding:0cm 5.4pt 0cm 5.4pt;height:238.85pt'>
<p class=MsoNoSpacing><span lang=EN-GB><img width=308 height=310
src="Manual_ArduinoESP32Nano_files/image001.jpg"></span></p>
</td>
<td width=310 valign=top style='width:232.2pt;border:solid windowtext 1.0pt;
border-left:none;padding:0cm 5.4pt 0cm 5.4pt;height:238.85pt'>
<p class=MsoNoSpacing><span lang=EN-GB><img width=316 height=310
id="Picture 2" src="Manual_ArduinoESP32Nano_files/image002.jpg"></span></p>
</td>
</tr>
<tr style='height:14.05pt'>
<td width=326 valign=top style='width:244.8pt;border:solid windowtext 1.0pt;
border-top:none;padding:0cm 5.4pt 0cm 5.4pt;height:14.05pt'>
<p class=MsoNoSpacing><span lang=EN-GB>4-language clock</span></p>
</td>
<td width=310 valign=top style='width:232.2pt;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
padding:0cm 5.4pt 0cm 5.4pt;height:14.05pt'>
<p class=MsoNoSpacing><span lang=EN-GB>Dutch language clock</span></p>
</td>
</tr>
</table>
<table class=MsoNormalTable border=0 cellpadding=0 width=662 style='width:496.15pt'>
<tr>
<td width=252 style='width:189.15pt;padding:.75pt .75pt .75pt .75pt'>
<p class=MsoNoSpacing><span lang=EN-GB> </span></p>
</td>
<td width=403 style='width:302.5pt;padding:.75pt .75pt .75pt .75pt'>
<p class=MsoNoSpacing><span lang=EN-GB> </span></p>
</td>
</tr>
</table>
<p class=MsoNoSpacing><span class=auto-style51><b><span lang=EN-GB><img
width=406 height=305 id="Picture 5"
src="Manual_ArduinoESP32Nano_files/image003.jpg"></span></b></span><span
class=auto-style51><span lang=EN-GB><br>
Arduino ESP32 Nano on the PCB inside the clock. <br>
<br>
</span></span></p>
<span class=auto-style51><b><span lang=EN-GB style='font-size:12.0pt'><br
clear=all style='page-break-before:always'>
</span></b></span>
<p class=MsoNoSpacing><b><span lang=EN-GB><img width=602 height=254
src="Manual_ArduinoESP32Nano_files/image004.jpg"></span></b></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>Small PCB
design with Rotary and DS3231 RTC attached</span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><b><span lang=EN-GB> </span></b></span></p>
<p class=MsoNoSpacing><span class=auto-style51><b><span lang=EN-GB>Before
starting<br>
</span></b></span><span class=auto-style51><span lang=EN-GB><br>
The clock receives time from the internet when there is a WIFI connection. </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>When a DS3231
time module is attached to the circuit board an internet connection is not
obliged. A rotary encoder or 3-button switch and the Bluetooth terminal app can
be used to set time.</span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>To connect to
the internet the name of the WIFI station and its password must be entered in
the clock software to be able to connect to a WIFI router.<br>
The name of the WIFI-station and password has to be entered once. </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>These
credentials will be stored in memory of the microprocessor. (See </span></span><strong><span
lang=EN-GB style='font-family:"Segoe UI",sans-serif'>Operation of the clock</span></strong><span
class=auto-style51><span lang=EN-GB>)</span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>To make life
easy it is preferred to use a phone or tablet and a Bluetooth communication app
to enter the WIFI credentials into the clock.</span></span></p>
<p class=MsoNoSpacing><a name="_Hlk187679167"><span class=auto-style51><span
lang=EN-GB>But with software version V068 or later the clock can also be
controlled via a browser</span></span></a></p>
<p class=MsoNoSpacing><span lang=EN-GB> </span></p>
<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
style='border-collapse:collapse;border:none'>
<tr>
<td width=186 valign=top style='width:139.25pt;border:solid windowtext 1.0pt;
padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB><img
width=181 height=185 src="Manual_ArduinoESP32Nano_files/image005.png"></span></span></p>
</td>
<td width=213 valign=top style='width:160.05pt;border:solid windowtext 1.0pt;
border-left:none;padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB><img
width=210 height=186 src="Manual_ArduinoESP32Nano_files/image006.png"></span></span></p>
</td>
<td width=202 valign=top style='width:151.5pt;border:solid windowtext 1.0pt;
border-left:none;padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB><img
width=197 height=161 src="Manual_ArduinoESP32Nano_files/image007.png"></span></span></p>
</td>
</tr>
<tr>
<td width=186 valign=top style='width:139.25pt;border:solid windowtext 1.0pt;
border-top:none;padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>BLESerial nRF</span></span></p>
</td>
<td width=213 valign=top style='width:160.05pt;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>BLE Serial
Pro</span></span></p>
</td>
<td width=202 valign=top style='width:151.5pt;border-top:none;border-left:
none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>Serial
Bluetooth Terminal</span></span></p>
</td>
</tr>
</table>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>- Download a
Bluetooth UART serial terminal app on your phone, PC, or tablet.<br>
For IOS: BLE Serial Pro or BLESerial nRF.<br>
For Android: Serial Bluetooth Terminal.<br>
<br>
</span></span></p>
<p class=MsoNormal><span class=auto-style51><b><span lang=EN-GB>First operation</span></b></span></p>
<p class=MsoNormal><span class=auto-style51><b><span lang=EN-GB> </span></b></span></p>
<p class=MsoListParagraph style='margin-left:18.0pt;text-indent:-18.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'> </span></span></span><span
class=auto-style51><span lang=EN-GB>Plug in the power of the clock.</span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNormal><span class=auto-style51><b><span lang=EN-GB>When there is
no internet of Bluetooth connection</span></b></span><span class=auto-style51><span
lang=EN-GB> the clock can be controlled with the rotary encoder or a three
button switch.</span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-left:18.0pt;text-indent:-18.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'> </span></span></span><span
class=auto-style51><span lang=EN-GB>Press the rotary shaft or the middle button
of the switch.</span></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:7.1pt'><span
class=auto-style51><span lang=EN-GB>UUR will light up 3 times and the hours can
be set by turning the shaft or pressing the up or down button.</span></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:7.1pt'><span
class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:21.8pt;text-indent:-21.8pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><span class=auto-style51><span lang=EN-GB>A second press
on the shaft or middle button will blink HETISWAS and the minutes can be
changed. </span></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:7.1pt'><span
class=auto-style51><span lang=EN-GB>Seconds are set to 0. So to be exact turn
the last minute exact at 0 seconds </span></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:21.8pt;text-indent:-21.8pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><span class=auto-style51><span lang=EN-GB> With a third
press TWAALF will blink three times and the light intensity of the LEDs can be
set</span></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:21.8pt;text-indent:-21.8pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><span class=auto-style51><span lang=EN-GB>With a fourth
press the characters NTP and RTC will blink three times. One can switch from
RTC to NTP time.</span></span></p>
<p class=MsoListParagraphCxSpLast style='margin-left:21.8pt;text-indent:-21.8pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><span class=auto-style51><span lang=EN-GB>Pressing nine
times will Reset the clock to it factory settings and the clock will use the
not very accurate clock that will drift seconds a day.</span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><b><span lang=EN-GB> </span></b></span></p>
<p class=MsoNoSpacing><span class=auto-style51><b><span lang=EN-GB>Via WIFI
connection</span></b></span></p>
<p class=MsoNoSpacing><span class=auto-style51><b><span lang=EN-GB> </span></b></span></p>
<p class=MsoNoSpacing><span class=auto-style51>When the clock is started for
the first time, a WIFI connection will have to be made.</span></p>
<p class=MsoNoSpacing style='text-indent:21.3pt'><span class=auto-style51><span
style='font-size:10.0pt'>If there are still old connection data in the clock,
enter 3 capital R in the menu (RRR) to delete it.</span></span></p>
<p class=MsoNoSpacing style='text-indent:21.3pt'><span class=auto-style51><span
style='font-size:10.0pt'>The clock settings will then be set to:</span></span></p>
<p class=MsoNoSpacing style='text-indent:21.3pt'><span class=auto-style51><span
style='font-size:10.0pt'>SSID and password are empty</span></span></p>
<p class=MsoNoSpacing style='text-indent:21.3pt'><span lang=EN-GB
style='font-size:10.0pt'>Timezone:CET-1CEST,M3.5.0,M10.5.0/3</span></p>
<p class=MsoNoSpacing style='text-indent:21.3pt'><span lang=FI
style='font-size:10.0pt'>WIFI=On NTP=On BLE=On</span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=FI style='font-size:
10.0pt'> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51>With the WIFI connections in the
phone (tablet on PC) there will be a "StartWordclock" station at the
router you are connected to.</span></p>
<p class=MsoNoSpacing style='margin-left:36.0pt;text-indent:-36.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><span class=auto-style51>Connect to the
"StartWordclock" station. Use as password 12345678.</span></p>
<p class=MsoNoSpacing style='margin-left:36.0pt;text-indent:-36.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><span class=auto-style51>Open a browser and type:
192.168.4.1 and press enter.</span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span lang=NL><img width=346 height=184
src="Manual_ArduinoESP32Nano_files/image008.jpg"></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=NL> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=NL> </span></span></p>
<p class=MsoNoSpacing style='margin-left:36.0pt;text-indent:-36.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:Symbol'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span></span><span class=auto-style51>Type in the SSID and password of
the WIFI router in this screen and press Submit</span></p>
<p class=MsoNoSpacing style='margin-left:36.0pt'><span class=auto-style51><span
style='font-size:11.0pt'>This data is often located at the bottom of the
router.</span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=NL><img width=265
height=297 src="Manual_ArduinoESP32Nano_files/image009.png"></span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=NL> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=NL>De klok zal
herstarten en de juiste tijd weergeven.</span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=NL> </span></span></p>
<p class=MsoNormal><span class=auto-style51><b><span lang=EN-GB>When the
Bluetooth app is installed on your phone or tablet</span></b></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-left:18.0pt;text-indent:-18.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'> </span></span></span><span
class=auto-style51><span lang=EN-GB>Start de Bluetooth terminal app on your
phone or tablet</span></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:18.0pt;text-indent:-18.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'> </span></span></span><span
class=auto-style51><span lang=EN-GB>Click on the connection named ‘wordclock’
in the serial terminal app.</span></span></p>
<p class=MsoListParagraphCxSpLast style='margin-left:18.0pt;text-indent:-18.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'> </span></span></span><span
class=auto-style51><span lang=EN-GB>Find your WIFI router login credentials.
Find the SSID of the router WIFI and its password. They are normally printed at
the bottom of your WIFI router</span></span></p>
<p class=MsoNormal style='margin-left:7.1pt'><span class=auto-style51><span
lang=EN-GB> </span></span></p>
<p class=MsoNormal style='margin-left:7.1pt'><span class=auto-style51><span
lang=EN-GB>Type in:</span></span></p>
<p class=MsoListParagraphCxSpFirst style='margin-left:18.0pt;text-indent:-18.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'> </span></span></span><span
class=auto-style51><span lang=EN-GB>aSSID and press Send. <br>
SSID is the name of the SSID you can find for instance in your phone. It is
the name WIFI is connected to.</span></span></p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:18.0pt;text-indent:-18.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'> </span></span></span><span
class=auto-style51><span lang=EN-GB>bPASSWORD and press send. <br>
PASSWORD is the password you can find at the bottom of your router .</span></span></p>
<p class=MsoListParagraphCxSpLast style='margin-left:18.0pt;text-indent:-18.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'> </span></span></span><span
class=auto-style51><span lang=EN-GB>cBLENAME<br>
The BLENAME will be the name of your clock in the BLE serial terminal app and
in the WIFI router connected. </span></span></p>
<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
style='border-collapse:collapse;border:none'>
<tr>
<td width=301 valign=top style='width:225.4pt;padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB><img width=264
height=136 src="Manual_ArduinoESP32Nano_files/image010.png"></span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoListParagraph style='margin-left:18.0pt;text-indent:-18.0pt'><span
class=auto-style51><span lang=EN-GB style='font-family:"Verdana",sans-serif'>-<span
style='font:7.0pt "Times New Roman"'> </span></span></span><span
class=auto-style51><span lang=EN-GB>In the FRITZBox WIFI router example
above “SteelClock-01” </span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB>You can access
the web page menu of the clock by typing in a browser:</span></span></p>
<p class=MsoNormal><a href="http://SteelClock-01"><span lang=EN-GB>http://SteelClock-01</span></a><span
class=auto-style51><span lang=EN-GB> or SteelClock-01.local.</span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
</td>
<td width=301 valign=top style='width:225.4pt;padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB><img border=0
width=304 height=482 src="Manual_ArduinoESP32Nano_files/image011.png"></span></span></p>
</td>
</tr>
<tr>
<td width=301 valign=top style='width:225.4pt;padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
</td>
<td width=301 valign=top style='width:225.4pt;padding:0cm 5.4pt 0cm 5.4pt'>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB>Web page in a
browser</span></span></p>
</td>
</tr>
</table>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<span class=auto-style51><span lang=EN-GB style='font-size:12.0pt'><br
clear=all style='page-break-before:always'>
</span></span>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNormal><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><b><span lang=EN-GB>Building the
clock</span></b></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB>The building of
the clock case with lighting can be found here:</span></span></p>
<p class=MsoNoSpacing><a
href="https://ednieuw.home.xs4all.nl/Woordklok/Bouwpakket/WoordklokSK6812.htm"><span
lang=EN-GB>https://ednieuw.home.xs4all.nl/Woordklok/Bouwpakket/WoordklokSK6812.htm</span></a><span
class=MsoHyperlink> </span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>or </span><span
lang=EN-GB>in this repository</span></p>
<p class=MsoNoSpacing><span class=MsoHyperlink><span lang=EN-GB> https://github.com/ednieuw/Arduino-ESP32-Nano-Wordclock</span></span></p>
<p class=MsoNoSpacing><span class=auto-style51><span lang=EN-GB> </span></span></p>
<p class=MsoNoSpacing><span lang=EN-GB>Build instruction of 4-language word
clock with SK6812 LEDs in UK, NL, DE, FR with Nano<span style='color:#1F2328'>.
</span>. <span class=MsoHyperlink>https://github.com/ednieuw/FourLanguageClock</span><span
class=auto-style51><br>
<br>
</span></span></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'>These build instruction are also used for
clock with a Arduino Nano Every.</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'> </span></strong></p>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'>The rotary encoder and DS3231 RTC are
optional and not necessary.</span></strong></p>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'>They are recommended if a clock cannot
receive WIFI.</span></strong></p>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'> </span></strong></p>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'>In the clock menu, the rotary encoder can be
switched on or off. </span></strong></p>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'>Switch the option off if no rotary encoder is
installed.</span></strong></p>
<p class=MsoNormal><span style='color:#1F2328'>H Toggle use rotary encoder</span></p>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'> </span></strong></p>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'>With option </span></strong><span
style='color:#1F2328'>J Toggle use DS3231 RTC module</span></p>
<p class=MsoNormal><strong><span style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'>The use of the attached DS3231 can be
switched On and Off. When switched On the NTP updates will be turned Off</span></strong></p>
<p class=MsoNormal><strong><span style='font-family:"Segoe UI",sans-serif;
color:#1F2328;font-weight:normal'>Turn NTP updates On again ,with option </span></strong><span
style='color:#1F2328'>X NTP<strong><span style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>, when the DS3231 option is turned Off again otherwise the
clock will drift minutes a day.</span></strong></span></p>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328'> </span></strong></p>
<strong><span lang=EN-GB style='font-size:12.0pt;font-family:"Segoe UI",sans-serif;
color:#1F2328'><br clear=all style='page-break-before:always'>
</span></strong>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328'> </span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
color:#1F2328'>Compilation and uploading</span></strong></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>For every board
that can be programmed with the Arduino IDE a compiler is available. The compiler
can be selected from the boards manager menu</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>For the Arduino
Nano ESP32 two versions are available. </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>One from Arduino
itself that uses core version 2. This board is safe to use.</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing><b><span lang=EN-GB style='font-size:10.0pt;color:#1F2328'>Optional</span></b></p>
<p class=MsoNoSpacing><span lang=EN-GB style='font-size:10.0pt;color:#1F2328'>The
manufacturer of the ESP32 microcontroller Espressif develops (in 2024) core
version 3. Since version 3.0.5 this core compiles the word clock sketch V056.</span></p>
<p class=MsoNoSpacing><b><span lang=EN-GB style='font-size:10.0pt;color:#1F2328'>But
not with version 3.1.0</span></b></p>
<p class=MsoNoSpacing style='margin-left:36.0pt;text-indent:-18.0pt'><span
lang=EN-GB style='font-size:10.0pt;font-family:"Verdana",sans-serif;color:#1F2328'>-<span
style='font:7.0pt "Times New Roman"'> </span></span><span
lang=EN-GB style='font-size:10.0pt;color:#1F2328'>Search for ESP32 in the board
manager.</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='font-size:10.0pt;color:#1F2328'> </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='font-size:10.0pt;color:#1F2328'>The
settings of the Arduino Nano ESP32 board is as follows:<br>
<br>
</span></p>
<p class=MsoNoSpacing style='margin-left:36.0pt;text-indent:-18.0pt'><span
lang=EN-GB style='font-size:10.0pt;font-family:"Verdana",sans-serif;color:#1F2328'>-<span
style='font:7.0pt "Times New Roman"'> </span></span><span
lang=EN-GB style='font-size:10.0pt;color:#1F2328'>Install ESP32 boards. The
Arduino Nano ESP32 can be found somewhere around the bottom of that long list
of boards if the Espressif core V3 is used. </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'><img border=0
width=509 height=391 src="Manual_ArduinoESP32Nano_files/image012.png"></span></p>
<p class=MsoNoSpacing style='margin-left:36.0pt;text-indent:-18.0pt'><span
lang=EN-GB style='font-family:"Verdana",sans-serif;color:#1F2328'>-<span
style='font:7.0pt "Times New Roman"'> </span></span><span
lang=EN-GB style='color:#1F2328'>Load the ESP32Arduino_WordClockV0xx.INO file
in the IDE</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>Select one of the
three word clocks</span></p>
<p class=MsoNoSpacing><a name="_Hlk184722086"><span lang=EN-GB
style='color:#1F2328'>//#define FOURLANGUAGECLOCK</span></a></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>#define NL144CLOCK</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>//#define
NLM1M2M3M4L114 // NL clock with four extra LEDs for the minutes to light up</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing style='margin-left:36.0pt;text-indent:-18.0pt'><a
name="_Hlk184722585"><span lang=EN-GB style='font-size:10.0pt;font-family:Symbol;
color:#1F2328'>·<span style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-GB style='color:#1F2328'>#define NL144CLOCK -> </span></a><span
lang=EN-GB style='color:#1F2328'>a 144 LED single language clock. Default
language is Dutch. For French, German and English copy the coding from the
four-language clock between the NL144CLOCK defines.<br>
</span><a
href="https://ednieuw.home.xs4all.nl/Woordklok/Bouwpakket/WoordklokSK6812.htm"><span
lang=EN-GB>Build instruction for the clock in Dutch and English</span></a><span
lang=EN-GB style='color:#1F2328'> or </span><a
href="https://github.com/ednieuw/Arduino-ESP32-Nano-Wordclock/blob/main/Manual-Instructions"><span
lang=EN-GB>here in this repository</span></a></p>
<p class=MsoNoSpacing style='margin-left:36.0pt;text-indent:-18.0pt'><span
lang=EN-GB style='font-size:10.0pt;font-family:Symbol;color:#1F2328'>·<span
style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-GB style='color:#1F2328'>#define NLM1M2M3M4L114
-> a 114 LED single language clock with 4 extra LEDs for the minutes and a
slightly different design</span></p>
<p class=MsoNoSpacing style='margin-left:36.0pt;text-indent:-18.0pt'><a
name="_Hlk184722601"><span lang=EN-GB style='font-size:10.0pt;font-family:Symbol;
color:#1F2328'>·<span style='font:7.0pt "Times New Roman"'>
</span></span><span lang=EN-GB style='color:#1F2328'>#define
FOURLANGUAGECLOCK-> </span></a><span lang=EN-GB style='color:#1F2328'>a
4-language clock with 625 LEDs in a 25 x 25 grid.<br>
</span><a href="https://github.com/ednieuw/FourLanguageClock"><span lang=EN-GB>Build
instruction of 4-language word clock with SK6812 LEDs in UK, NL, DE, FR with
Nano</span></a><span lang=EN-GB style='color:#1F2328'>.</span></p>
<p class=MsoNoSpacing style='margin-left:36.0pt'><span lang=EN-GB
style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>In the
libraries.zip are the libraries to compile the software. Unpack them in your
libraries folder.</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>Board: Arduino
Nano ESP32</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>Partition Scheme:
With FAT</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>Pin Numbering: By
GPIO number (legacy) </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>(if By Arduino pin
(default) is chosen the LED-strip may not turn on and the RGB LED on the Nano
ESP32 may not work)</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'>If the LEDs do not
turn on then it is most probably this pin settings that is wrong.</span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'><img border=0
width=310 height=224 src="Manual_ArduinoESP32Nano_files/image013.png"></span><span
lang=EN-GB> <span style='color:#1F2328'><img border=0 width=229 height=224
src="Manual_ArduinoESP32Nano_files/image014.png"></span></span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNoSpacing><span lang=EN-GB style='color:#1F2328'> </span></p>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif'> </span></strong></p>
<strong><span lang=EN-GB style='font-size:12.0pt;font-family:"Segoe UI",sans-serif'><br
clear=all style='page-break-before:always'>
</span></strong>
<p class=MsoNormal><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif'> </span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif'>Alternative
software installation</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif'> </span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif'><img
border=0 width=552 height=377 src="Manual_ArduinoESP32Nano_files/image015.png"></span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif'> </span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>As described further on, software can also be placed on the
Nano ESP32 ‘Over the Air’.</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>The advantage is that you do not have to install the
libraries and in a few years you will have problems with incompatible
libraries.</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'> </span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>The compilation is already done and the file that is
uploaded to the Nano ESP32 is saved as a .bin file. </span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>Various .bin file versions of this software can be found on
GitHub.</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>https://github.com/ednieuw/Arduino-ESP32-Nano-Wordclock</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'> </span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif'>Short
instructions</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>- Select the Nano ESP32 as board
(Tools->Board-ArduinoESPboards->Arduino Nano ESP32)</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>- Search in Examples for ArduinoOTA -> and open the
program OTAWebUpdater</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>- Choose Sketch->Upload or press the upload button at
the top left</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>- Open the serial monitor and see which IP-address is
printed. (Press the white reset button on the Nano ESP32 if nothing is printed)</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>- Type this IP-address into the URL of a browser (eg:
192.168. 0. 123)</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>- Login with admin and admin</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>- Find the .bin file and press update</span></strong></p>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif;
font-weight:normal'>(For example ‘ESP32Arduino_WordClockV057.inoNL114.bin’ This
is version V057 with settings for the NL114 clock).</span></strong></p>
<strong><span lang=EN-GB style='font-size:12.0pt;font-family:"Segoe UI",sans-serif'><br
clear=all style='page-break-before:always'>
</span></strong>
<p class=MsoNoSpacing><strong><span lang=EN-GB style='font-family:"Segoe UI",sans-serif'> </span></strong></p>
<p class=MsoNormal> </p>
<p class=MsoNormal><b>Longer </b><strong><span lang=EN-GB style='font-family:
"Segoe UI",sans-serif'>instructions</span></strong></p>
<p class=MsoNormal>The sample implementation has been done using:</p>
<ul style='margin-top:0cm' type=disc>
<li class=MsoNormal>Example sketch `OTAWebUpdater.ino`.</li>
<li class=MsoNormal>ESP32 Board.</li>
</ul>
<p class=MsoNormal> </p>
<p class=MsoNormal> </p>
<p class=MsoNormal>Before you begin, please make sure that you have the
following software installed:</p>
<ul style='margin-top:0cm' type=disc>
<li class=MsoNormal>Arduino IDE</li>
<li class=MsoNormal><b>Host software depending on O/S you use</b></li>
</ul>
<ul style='margin-top:0cm' type=disc>
<ul style='margin-top:0cm' type=circle>
<li class=MsoNormal><a href="http://avahi.org/">Avahi</a> for Linux</li>
</ul>
</ul>
<ul style='margin-top:0cm' type=disc>
<ul style='margin-top:0cm' type=circle>
<li class=MsoNormal><a href="http://www.apple.com/support/bonjour/">Bonjour</a> for
Windows</li>
</ul>
</ul>
<ul style='margin-top:0cm' type=disc>
<ul style='margin-top:0cm' type=circle>
<li class=MsoNormal>Mac OSX and iOS - support is already built in / no any
extra s/w is required</li>
</ul>
</ul>
<p class=MsoNormal>Prepare the sketch and configuration for initial upload with
a serial port - Start Arduino IDE and load sketch OTAWebUpdater.ino available
under File > Examples > OTAWebUpdater.ino - Update ssid and pass in the
sketch so the module can join your Wi-Fi network - Open File > Preferences,
look for “Show verbose output during:” and check out “compilation” option</p>
<p class=MsoNormal><img border=0 width=602 height=230 id="Picture 16"
src="Manual_ArduinoESP32Nano_files/image016.png"></p>
<ul style='margin-top:0cm' type=disc>
<li class=MsoNormal>Upload sketch (Ctrl+U)</li>
<li class=MsoNormal>Now open web browser and enter the url, i.e. <a
href="http://esp32.local/">http://esp32.local</a>. Once entered, browser
should display a form</li>
</ul>
<p class=MsoNormal><img border=0 width=602 height=239 id="Picture 15"
src="Manual_ArduinoESP32Nano_files/image017.png"></p>
<ul style='margin-top:0cm' type=disc>
<li class=MsoNormal>username = admin</li>
<li class=MsoNormal>password = admin</li>
</ul>
<p class=MsoNormal><b>Note</b></p>
<p class=MsoNormal><i>If entering “http://ESP32.local” does not work, try
replacing “ESP32” with module’s IP address. This workaround is useful in case
the host software installed does not work</i>.</p>
<p class=MsoNormal>Now click on the Login button and browser will display an
upload form</p>
<p class=MsoNormal><img border=0 width=602 height=133 id="Picture 14"
src="Manual_ArduinoESP32Nano_files/image018.png"></p>
<p class=MsoNormal>For Uploading the New Firmware, you need to provide the
Binary File of your Code.</p>
<p class=MsoNormal>Exporting Binary file of the Firmware (Code) - Open up the
Arduino IDE - Open up the Code, for Exporting up Binary file - Now go to Sketch
> export compiled Binary</p>