-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
873 lines (796 loc) · 52.4 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/x-icon" href="https://brtchip.com/wp-content/uploads/2021/07/favicon.png">
<!-- Bootstrap CSS -->
<link target="_blank" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous">
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script> -->
<!-- <link rel="stylesheet" target="_blank" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> -->
<link rel="stylesheet" target="_blank" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" target="_blank" href="https://jqueryui.com/jquery-wp-content/themes/jqueryui.com/style.css">
<link rel="stylesheet" target="_blank"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" target="_blank" href="slick-1.8.0/slick.css" />
<link rel="stylesheet" type="text/css" target="_blank" href="slick-1.8.0/slick-theme.css" />
<link rel="stylesheet" type="text/css" target="_blank" href="wodry/wodry.css" />
<link rel="stylesheet" type="text/css" target="_blank" href="index.css" />
<style>
.toggler {
width: 500px;
height: 200px;
position: relative;
}
#button {
padding: .5em 1em;
text-decoration: none;
}
#effect {
width: 240px;
height: 170px;
padding: 0.4em;
position: relative;
}
#effect h3 {
margin: 0;
padding: 0.4em;
text-align: center;
}
.ui-effects-transfer {
border: 2px dotted gray;
}
body,
a {
color: #74b1be;
font-size: 20px;
}
a {
text-decoration: none;
}
/* bootstrap navbar overlapping */
body {
padding-top: 60px;
font-size: 20px;
}
@media screen and (max-width: 768px) {
body {
padding-top: 0px;
}
}
.slick-slide img {
margin: 0 auto;
/* it centers any block level element */
max-width: 60%;
}
.navbar .active:not(#communitylink) {
color: white !important;
}
#communitylink{
-color: #74b1be;
}
#communitylink{
background: none;
}
#communitylink:hover{
text-decoration: underline;
}
</style>
<title>Bridgetek Open Source</title>
</head>
<body data-spy="scroll" data-target=".navbar" data-offsset="50">
<!-- menu bar -------------------------------------------------------------------------->
<nav id="navbar-example2" class="navbar navbar-expand-lg nav-pills fixed-top navbar-light bg-light">
<div class="container">
<a class="navbar-brand" target="_blank" href="https://brtchip.com/">
<img src="Bridgetek_FA.svg" alt="..." height="36">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent" style="font-size: 16px;">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" target="_blank" href="#overview">Overview</a>
</li>
<li class="nav-item"><a class="nav-link" href="#an">Application Note</a></li>
<li class="nav-item"><a class="nav-link" href="#mcu">MCU (FT9xx)</a></li>
<li class="nav-item"><a class="nav-link" href="#eve">EVE</a></li>
<li class="nav-item"><a class="nav-link" href="#embedded_world">Embedded World</a></li>
<li class="nav-item"><a class="nav-link" href="#tutorials">Tutorials</a></li>
<li class="nav-item"><a id="communitylink" class="nav-link" target="_blank" href="http://www.brtcommunity.com">Community</a></li>
<!-- <li class="nav-item"><a class="nav-link" href="#screenshot">Screenshot</a></li> -->
<li class="nav-item dropdown style-hidden">
<a class="nav-link dropdown-toggle" href="#screenshot" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Screenshot
</a>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" target="_blank" href="#screenshot_sa">SampleApp of EveApps</a></li>
<li><a class="dropdown-item" target="_blank" href="#screenshot_da">DemoApps of EveApps</a></li>
<li><a class="dropdown-item" target="_blank" href="#screenshot_ew">EW Demos</a></li>
<li>
<hr class="dropdown-divider style-hidden">
</li>
<li><a class="dropdown-item style-hidden" target="_blank" href="#">Something else here</a></li>
</ul>
</li>
</ul>
<form class="d-flex- searchform- style-hidden" role="search" action="https://www.google.com/search" method="get"
name="searchform" target="_blank">
<input name="sitesearch" type="hidden" value="brtchip.com">
<input class="form-control me-2 form-control search" name="q" autocomplete="on" type="text"
placeholder="Search in brtchip.com" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- banner animation -------------------------------------------------------------------------->
<div id="banner-container" class="container style-bg-gray2"
style="height: 85vh;overflow: hidden; background: url(banner_images/geometric-g288b4a753_1920.jpg) no-repeat center;">
<div class="container style-fullh">
<div class="row style-fullwh style-color-white align-items-center" \ style="overflow: hidden; ">
<div class="col-12 style-text-center-middle " style="z-index:3;top: -15%">
<svg style="z-index:2; height:auto; width:50vw;" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 704.8667 213.38667"
height="213.38667" width="704.8667" xml:space="preserve" id="svg2" version="1.1">
<metadata id="metadata8">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs id="defs6" />
<g transform="matrix(1.3333333,0,0,-1.3333333,0,213.38667)" id="g10">
<g transform="scale(0.1)" id="g12">
<path id="path14" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 783.457,192.039 192.074,783.426 c -9.261,9.258 -9.261,24.285 -0.015,33.527 l 591.382,591.377 c 4.664,4.67 10.688,6.99 16.711,7 v 114.7 c -35.582,-0.01 -71.16,-13.46 -98.05,-40.35 L 110.719,898.293 C 56.8047,844.379 56.7734,756.047 110.734,702.086 L 702.117,110.699 C 729.066,83.75 764.609,70.2813 800.152,70.2813 V 185.129 c -6.047,0.012 -12.097,2.32 -16.695,6.91" />
<path id="path16" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 791.809,1281.92 318.488,808.598 c -4.621,-4.621 -4.636,-12.168 -0.015,-16.789 l 473.336,-473.34 c 2.296,-2.297 5.32,-3.438 8.343,-3.438 v 970.349 c -3.023,-0.01 -6.043,-1.16 -8.343,-3.46" />
<path id="path18" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 179.672,1059.81 81.3398,1158.14 0,1076.8 l 98.332,-98.331 81.34,81.341" />
<path id="path20" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 327.094,1207.23 -98.332,98.33 -81.34,-81.33 98.332,-98.34 81.34,81.34" />
<path id="path22" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 474.516,1354.65 -98.332,98.33 -81.34,-81.34 98.332,-98.32 81.34,81.33" />
<path id="path24" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 621.922,1502.06 -98.332,98.33 -81.324,-81.32 98.332,-98.34 81.324,81.33" />
<path id="path26" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 98.3516,621.934 0,523.59 81.3398,442.25 179.691,540.602 98.3516,621.934" />
<path id="path28" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 245.754,474.531 -98.348,-98.351 81.34,-81.34 98.348,98.351 -81.34,81.34" />
<path id="path30" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 393.191,327.09 -98.347,-98.34 81.34,-81.34 98.347,98.34 -81.34,81.34" />
<path id="path32" style="opacity:0; fill:#ed1c24;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 442.246,81.3398 523.59,0 621.938,98.3516 540.598,179.691 442.246,81.3398" />
<path id="path34" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1264.65,213.852 h 9.29 c 16.51,0 22.19,6.199 22.19,26.828 0,20.64 -5.68,26.57 -22.19,26.57 h -9.29 c -1.04,0 -1.54,-0.52 -1.54,-1.551 v -50.301 c 0,-1.027 0.5,-1.546 1.54,-1.546 z m 9.29,77.128 c 15.22,0 20.37,4.641 20.37,23.989 0,19.351 -5.15,24.25 -20.37,24.25 h -9.29 c -1.04,0 -1.54,-0.52 -1.54,-1.559 v -45.129 c 0,-1.031 0.5,-1.551 1.54,-1.551 z m -38.42,70.68 c 0,1.551 1.01,2.57 2.58,2.57 h 38.41 c 31.48,0 45.41,-14.191 45.41,-45.378 0,-21.672 -7.47,-32.25 -20.36,-37.93 v -0.524 c 13.15,-3.859 22.44,-16.757 22.44,-39.976 0,-38.953 -17.04,-51.582 -51.1,-51.582 h -34.8 c -1.57,0 -2.58,1.031 -2.58,2.57 v 170.25" />
<path id="path36" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1482.31,312.129 c 0,20.641 -6.72,27.09 -22.19,27.09 h -9.04 c -1.03,0 -1.54,-0.52 -1.54,-1.559 v -51.058 c 0,-1.043 0.51,-1.551 1.54,-1.551 h 9.04 c 15.47,0 22.19,6.187 22.19,27.078 z m 6.18,-123.289 c -1.54,0 -2.32,0.512 -2.83,1.801 l -21.43,69.91 h -4.36 -8.79 c -1.03,0 -1.54,-0.52 -1.54,-1.551 v -67.59 c 0,-1.539 -1.03,-2.57 -2.57,-2.57 h -22.44 c -1.57,0 -2.58,1.031 -2.58,2.57 v 170.25 c 0,1.551 1.01,2.57 2.58,2.57 h 35.34 c 31.19,0 50.03,-13.671 50.03,-52.101 0,-22.957 -7.73,-37.391 -20.91,-44.879 l 24.77,-75.84 c 0.53,-1.289 0,-2.57 -1.29,-2.57 h -23.98" />
<path id="path38" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1610.71,361.66 c 0,1.551 1,2.57 2.57,2.57 h 22.44 c 1.54,0 2.58,-1.019 2.58,-2.57 V 191.41 c 0,-1.539 -1.04,-2.57 -2.58,-2.57 h -22.44 c -1.57,0 -2.57,1.031 -2.57,2.57 v 170.25" />
<path id="path40" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1771.09,213.852 h 11.11 c 9.79,0 15.47,3.878 18.55,12.648 2.07,6.449 3.1,14.949 3.1,50.039 0,35.07 -1.03,43.59 -3.1,50.043 -3.08,8.77 -8.76,12.637 -18.55,12.637 h -11.11 c -1.04,0 -1.54,-0.52 -1.54,-1.559 V 215.398 c 0,-1.027 0.5,-1.546 1.54,-1.546 z m -29.13,147.808 c 0,1.551 1.01,2.57 2.58,2.57 h 40.48 c 22.97,0 36.38,-9.281 42.56,-28.109 3.11,-9.539 4.39,-21.422 4.39,-59.582 0,-38.18 -1.28,-50.039 -4.39,-59.578 -6.18,-18.832 -19.59,-28.121 -42.56,-28.121 h -40.48 c -1.57,0 -2.58,1.031 -2.58,2.57 v 170.25" />
<path id="path42" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1929.43,276.539 c 0,48.742 0.78,54.941 3.36,62.68 5.68,17.269 19.86,27.332 41.52,27.332 25.26,0 40.77,-13.403 43.59,-41 0.25,-1.563 -0.78,-2.84 -2.07,-3.09 l -20.87,-3.609 c -1.57,-0.274 -2.6,0.5 -2.86,2.046 -1.28,13.672 -7.21,20.641 -17.54,20.641 -7.47,0 -13.4,-3.879 -15.22,-9.809 -1.54,-4.902 -1.79,-6.949 -1.79,-55.191 0,-48.238 0.25,-50.309 1.79,-55.199 1.82,-5.942 8.25,-9.801 15.47,-9.801 7.5,0 13.94,3.859 15.76,9.801 1.28,4.39 1.79,6.961 1.79,39.461 0,1.039 -0.51,1.551 -1.54,1.551 h -13.69 c -1.53,0 -2.57,1.027 -2.57,2.578 v 19.082 c 0,1.547 1.04,2.59 2.57,2.59 h 39.23 c 1.54,0 2.58,-1.043 2.58,-2.59 v -7.742 c 0,-48.489 -0.79,-54.668 -3.36,-62.418 -5.68,-17.282 -19.87,-27.34 -41.27,-27.34 -21.66,0 -35.84,10.058 -41.52,27.34 -2.58,7.75 -3.36,13.929 -3.36,62.687" />
<path id="path44" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2118.71,361.66 c 0,1.551 1.01,2.57 2.58,2.57 h 22.44 c 1.54,0 2.57,-1.019 2.57,-2.57 V 191.41 c 0,-1.539 -1.03,-2.57 -2.57,-2.57 h -22.44 c -1.57,0 -2.58,1.031 -2.58,2.57 v 170.25" />
<path id="path46" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2249.97,361.66 c 0,1.551 1.01,2.57 2.57,2.57 h 27.34 c 2.07,0 3.11,-0.769 3.61,-2.57 L 2316,240.422 h 1.29 V 361.66 c 0,1.551 1.03,2.57 2.57,2.57 h 19.09 c 1.53,0 2.57,-1.019 2.57,-2.57 V 191.41 c 0,-1.539 -1.04,-2.57 -2.57,-2.57 h -25.55 c -2.04,0 -3.08,0.769 -3.61,2.57 l -34.05,121.238 h -1.54 V 191.41 c 0,-1.539 -1.04,-2.57 -2.57,-2.57 h -19.09 c -1.56,0 -2.57,1.031 -2.57,2.57 v 170.25" />
<path id="path48" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2442.08,276.539 c 0,48.742 0.78,54.941 3.36,62.68 5.68,17.269 19.86,27.332 41.52,27.332 25.27,0 40.77,-13.403 43.59,-41 0.25,-1.563 -0.78,-2.84 -2.07,-3.09 l -20.87,-3.609 c -1.57,-0.274 -2.6,0.5 -2.85,2.046 -1.29,13.672 -7.22,20.641 -17.55,20.641 -7.47,0 -13.4,-3.879 -15.22,-9.809 -1.54,-4.902 -1.79,-6.949 -1.79,-55.191 0,-48.238 0.25,-50.309 1.79,-55.199 1.82,-5.942 8.25,-9.801 15.47,-9.801 7.5,0 13.94,3.859 15.76,9.801 1.28,4.39 1.79,6.961 1.79,39.461 0,1.039 -0.51,1.551 -1.54,1.551 h -13.68 c -1.54,0 -2.58,1.027 -2.58,2.578 v 19.082 c 0,1.547 1.04,2.59 2.58,2.59 h 39.22 c 1.54,0 2.58,-1.043 2.58,-2.59 v -7.742 c 0,-48.489 -0.79,-54.668 -3.36,-62.418 -5.68,-17.282 -19.87,-27.34 -41.27,-27.34 -21.66,0 -35.84,10.058 -41.52,27.34 -2.58,7.75 -3.36,13.929 -3.36,62.687" />
<path id="path50" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3596.01,188.84 c -1.54,0 -2.58,1.031 -2.58,2.57 v 146.25 c 0,1.039 -0.5,1.559 -1.54,1.559 h -26.83 c -1.54,0 -2.57,1.031 -2.57,2.57 v 19.871 c 0,1.551 1.03,2.57 2.57,2.57 h 84.36 c 1.54,0 2.58,-1.019 2.58,-2.57 v -19.871 c 0,-1.539 -1.04,-2.57 -2.58,-2.57 h -26.83 c -1.04,0 -1.54,-0.52 -1.54,-1.559 V 191.41 c 0,-1.539 -1.04,-2.57 -2.57,-2.57 h -22.47" />
<path id="path52" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3745.59,361.66 c 0,1.551 1.01,2.57 2.57,2.57 h 71.97 c 1.54,0 2.57,-1.019 2.57,-2.57 v -19.871 c 0,-1.539 -1.03,-2.57 -2.57,-2.57 h -45.41 c -1.04,0 -1.54,-0.52 -1.54,-1.559 V 291.5 c 0,-1.039 0.5,-1.559 1.54,-1.559 h 39.22 c 1.54,0 2.58,-1.019 2.58,-2.57 V 267.5 c 0,-1.539 -1.04,-2.57 -2.58,-2.57 h -39.22 c -1.04,0 -1.54,-0.52 -1.54,-1.551 v -47.981 c 0,-1.027 0.5,-1.546 1.54,-1.546 h 45.41 c 1.54,0 2.57,-1.02 2.57,-2.571 V 191.41 c 0,-1.539 -1.03,-2.57 -2.57,-2.57 h -71.97 c -1.56,0 -2.57,1.031 -2.57,2.57 v 170.25" />
<path id="path54" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3917.05,276.539 c 0,48.742 1.04,55.973 3.36,63.191 5.4,16.758 18.3,26.821 39.73,26.821 25.01,0 40.74,-12.879 42.28,-42.039 0.28,-1.551 -0.25,-2.84 -1.79,-3.09 l -20.9,-3.613 c -1.54,-0.27 -2.83,0.523 -2.83,2.32 -0.78,14.961 -5.93,21.41 -16,21.41 -7.73,0 -11.87,-3.359 -13.94,-9.809 -1.29,-4.128 -1.79,-7.742 -1.79,-55.191 0,-47.469 0.5,-51.078 1.79,-55.199 2.07,-6.449 6.21,-9.801 13.94,-9.801 10.07,0 15.22,6.441 16,21.41 0,1.801 1.29,2.571 2.83,2.321 l 20.9,-3.61 c 1.54,-0.269 2.07,-1.551 1.79,-3.109 -1.54,-29.141 -17.27,-42.039 -42.28,-42.039 -21.43,0 -34.33,10.058 -39.73,26.84 -2.32,7.218 -3.36,14.429 -3.36,63.187" />
<path id="path56" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4096.29,361.66 c 0,1.551 1.01,2.57 2.58,2.57 h 22.44 c 1.53,0 2.57,-1.019 2.57,-2.57 v -69.129 c 0,-1.031 0.5,-1.551 1.54,-1.551 h 29.66 c 1.03,0 1.56,0.52 1.56,1.551 v 69.129 c 0,1.551 1.04,2.57 2.58,2.57 h 22.44 c 1.54,0 2.57,-1.019 2.57,-2.57 V 191.41 c 0,-1.539 -1.03,-2.57 -2.57,-2.57 h -22.44 c -1.54,0 -2.58,1.031 -2.58,2.57 v 73 c 0,1.039 -0.53,1.551 -1.56,1.551 h -29.66 c -1.04,0 -1.54,-0.512 -1.54,-1.551 v -73 c 0,-1.539 -1.04,-2.57 -2.57,-2.57 h -22.44 c -1.57,0 -2.58,1.031 -2.58,2.57 v 170.25" />
<path id="path58" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4287.87,361.66 c 0,1.551 1.01,2.57 2.58,2.57 h 27.33 c 2.07,0 3.11,-0.769 3.61,-2.57 l 32.51,-121.238 h 1.29 V 361.66 c 0,1.551 1.04,2.57 2.58,2.57 h 19.08 c 1.54,0 2.57,-1.019 2.57,-2.57 V 191.41 c 0,-1.539 -1.03,-2.57 -2.57,-2.57 h -25.55 c -2.04,0 -3.08,0.769 -3.61,2.57 l -34.05,121.238 h -1.54 V 191.41 c 0,-1.539 -1.03,-2.57 -2.57,-2.57 h -19.08 c -1.57,0 -2.58,1.031 -2.58,2.57 v 170.25" />
<path id="path60" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4539.55,221.34 c 1.57,4.89 1.82,6.961 1.82,55.199 0,48.242 -0.25,50.289 -1.82,55.191 -1.79,5.93 -7.47,9.809 -14.69,9.809 -7.47,0 -13.15,-3.879 -14.97,-9.809 -1.54,-4.902 -1.79,-6.949 -1.79,-55.191 0,-48.238 0.25,-50.309 1.79,-55.199 1.82,-5.942 7.5,-9.801 14.97,-9.801 7.22,0 12.9,3.859 14.69,9.801 z m -56.21,-7.488 c -2.57,7.75 -3.36,13.929 -3.36,62.687 0,48.742 0.79,54.941 3.36,62.68 5.68,17.269 19.87,27.332 41.52,27.332 21.41,0 35.59,-10.063 41.27,-27.332 2.58,-7.739 3.36,-13.938 3.36,-62.68 0,-48.758 -0.78,-54.937 -3.36,-62.687 -5.68,-17.282 -19.86,-27.34 -41.27,-27.34 -21.65,0 -35.84,10.058 -41.52,27.34" />
<path id="path62" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4670.05,361.66 c 0,1.551 1.01,2.57 2.58,2.57 h 22.44 c 1.53,0 2.57,-1.019 2.57,-2.57 V 215.398 c 0,-1.027 0.5,-1.546 1.54,-1.546 h 45.41 c 1.54,0 2.57,-1.02 2.57,-2.571 V 191.41 c 0,-1.539 -1.03,-2.57 -2.57,-2.57 h -71.96 c -1.57,0 -2.58,1.031 -2.58,2.57 v 170.25" />
<path id="path64" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4892.6,221.34 c 1.54,4.89 1.8,6.961 1.8,55.199 0,48.242 -0.26,50.289 -1.8,55.191 -1.81,5.93 -7.49,9.809 -14.71,9.809 -7.47,0 -13.15,-3.879 -14.97,-9.809 -1.54,-4.902 -1.79,-6.949 -1.79,-55.191 0,-48.238 0.25,-50.309 1.79,-55.199 1.82,-5.942 7.5,-9.801 14.97,-9.801 7.22,0 12.9,3.859 14.71,9.801 z m -56.23,-7.488 c -2.58,7.75 -3.36,13.929 -3.36,62.687 0,48.742 0.78,54.941 3.36,62.68 5.67,17.269 19.86,27.332 41.52,27.332 21.4,0 35.59,-10.063 41.27,-27.332 2.57,-7.739 3.36,-13.938 3.36,-62.68 0,-48.758 -0.79,-54.937 -3.36,-62.687 -5.68,-17.282 -19.87,-27.34 -41.27,-27.34 -21.66,0 -35.85,10.058 -41.52,27.34" />
<path id="path66" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 5019.97,276.539 c 0,48.742 0.78,54.941 3.36,62.68 5.68,17.269 19.86,27.332 41.52,27.332 25.27,0 40.77,-13.403 43.59,-41 0.26,-1.563 -0.78,-2.84 -2.07,-3.09 l -20.87,-3.609 c -1.57,-0.274 -2.6,0.5 -2.85,2.046 -1.29,13.672 -7.22,20.641 -17.55,20.641 -7.47,0 -13.4,-3.879 -15.22,-9.809 -1.54,-4.902 -1.79,-6.949 -1.79,-55.191 0,-48.238 0.25,-50.309 1.79,-55.199 1.82,-5.942 8.26,-9.801 15.47,-9.801 7.5,0 13.94,3.859 15.76,9.801 1.28,4.39 1.79,6.961 1.79,39.461 0,1.039 -0.51,1.551 -1.54,1.551 h -13.68 c -1.54,0 -2.58,1.027 -2.58,2.578 v 19.082 c 0,1.547 1.04,2.59 2.58,2.59 h 39.22 c 1.54,0 2.58,-1.043 2.58,-2.59 v -7.742 c 0,-48.489 -0.78,-54.668 -3.36,-62.418 -5.68,-17.282 -19.86,-27.34 -41.27,-27.34 -21.66,0 -35.84,10.058 -41.52,27.34 -2.58,7.75 -3.36,13.929 -3.36,62.687" />
<path id="path68" style="opacity:0; fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 5227.81,188.84 c -1.57,0 -2.58,1.031 -2.58,2.57 v 69.391 l -33.55,100.859 c -0.5,1.551 0,2.57 2.07,2.57 h 22.7 c 1.82,0 2.57,-0.769 3.1,-2.57 l 19.59,-67.84 h 0.78 l 19.08,67.84 c 0.54,1.801 1.29,2.57 3.11,2.57 h 22.19 c 2.04,0 2.57,-1.019 2.04,-2.57 L 5252.82,260.801 V 191.41 c 0,-1.539 -1.03,-2.57 -2.57,-2.57 h -22.44" />
<path id="path70" style="opacity:0; fill:#0A25F3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1413.48,632.223 h 53.35 c 44.63,0 55.52,13.054 55.52,72.929 v 58.786 c 0,58.789 -13.07,71.855 -55.52,71.855 h -53.35 z m 0,332.027 h 43.56 c 52.24,0 58.76,17.418 58.76,69.67 v 47.89 c 0,51.16 -6.52,68.59 -58.76,68.59 h -43.56 z m -180.7,321.13 h 266.71 c 156.74,0 197.03,-32.66 197.03,-190.5 0,-103.419 -7.61,-168.739 -117.57,-187.247 v -2.168 c 112.12,-8.719 130.64,-88.184 130.64,-183.985 0,-165.46 -38.11,-224.25 -180.72,-224.25 h -296.09 v 788.15" />
<path id="path72" style="opacity:0; fill:#0A25F3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1809.81,1052.41 h 154.57 v -55.508 h 2.18 c 21.77,51.158 47.9,64.228 109.96,64.228 57.69,0 93.62,-14.16 94.68,-82.735 V 828.168 h -134.97 v 82.738 c 0,17.414 -15.25,21.766 -32.65,21.766 -18.53,0 -32.66,-6.531 -32.66,-29.391 V 497.23 h -161.11 v 555.18" />
<path id="path74" style="opacity:0; fill:#0A25F3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2233.32,1052.41 h 161.11 V 497.23 h -161.11 z m 0,232.97 h 161.11 v -128.46 h -161.11 v 128.46" />
<path id="path76" style="opacity:0; fill:#0A25F3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 2664.41,647.457 c 0,-20.676 13.07,-30.484 37.02,-30.484 23.95,0 37.02,9.808 37.02,30.484 v 254.731 c 0,20.691 -13.07,30.484 -37.02,30.484 -23.95,0 -37.02,-9.793 -37.02,-30.484 z M 2496.78,949 c 0,86 52.24,112.13 120.82,112.13 57.69,0 92.53,-20.69 118.66,-57.7 h 2.19 v 281.95 h 161.1 V 497.23 h -153.49 v 57.7 h -2.19 c -31.56,-57.7 -59.87,-66.399 -117.57,-66.399 -97.96,0 -129.52,38.098 -129.52,151.305 V 949" />
<path id="path78" style="opacity:0; fill:#0A25F3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3163.07,640.926 c 0,-23.953 10.89,-32.653 40.26,-32.653 29.41,0 40.3,8.7 40.3,32.653 v 265.629 c 0,23.937 -10.89,32.652 -40.3,32.652 -29.37,0 -40.26,-8.715 -40.26,-32.652 z m -161.11,274.332 c 0,95.802 42.45,145.872 117.55,145.872 63.15,0 99.07,-13.07 133.91,-59.88 h 2.18 v 51.16 h 149.14 V 448.238 c 0,-126.269 -70.77,-155.668 -217.72,-155.668 -127.36,0 -167.65,50.09 -167.65,123.02 v 29.39 h 141.52 V 433 c 0,-17.41 11.97,-25.039 41.35,-25.039 29.41,0 41.39,7.629 41.39,37.019 v 99.059 h -2.19 c -25.04,-33.738 -62.06,-51.16 -109.96,-51.16 -101.23,0 -129.52,62.051 -129.52,136.07 v 286.309" />
<path id="path80" style="opacity:0; fill:#0A25F3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3663.89,837.961 h 89.25 v 81.644 c 0,22.86 -7.61,32.668 -44.62,32.668 -37.02,0 -44.63,-9.808 -44.63,-32.668 z m -167.63,46.809 c 0,149.15 74.01,176.36 212.26,176.36 176.35,0 212.28,-66.411 212.28,-153.497 V 735.637 h -256.91 v -93.621 c 0,-29.395 6.54,-38.094 47.9,-38.094 31.56,0 45.72,6.519 45.72,39.183 v 26.122 h 163.29 v -31.563 c 0,-116.484 -48.99,-149.133 -212.28,-149.133 -138.25,0 -212.26,27.207 -212.26,176.344 V 884.77" />
<path id="path82" style="opacity:0; fill:#0A25F3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3986.19,1052.41 h 45.72 v 144.79 h 161.11 v -144.79 h 93.62 V 930.492 h -93.62 V 652.898 c 0,-28.3 6.52,-42.457 41.35,-42.457 14.16,0 28.32,2.18 41.39,3.274 V 492.879 c -30.47,-1.09 -68.58,-4.348 -102.33,-4.348 -97.98,0 -141.52,37 -141.52,121.91 v 320.051 h -45.72 v 121.918" />
<path id="path84" style="opacity:0; fill:#0A25F3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4512.02,837.961 h 89.26 v 81.644 c 0,22.86 -7.61,32.668 -44.63,32.668 -37.02,0 -44.63,-9.808 -44.63,-32.668 z m -167.63,46.809 c 0,149.15 74.01,176.36 212.26,176.36 176.36,0 212.28,-66.411 212.28,-153.497 V 735.637 h -256.91 v -93.621 c 0,-29.395 6.55,-38.094 47.9,-38.094 31.56,0 45.72,6.519 45.72,39.183 v 26.122 h 163.29 v -31.563 c 0,-116.484 -48.99,-149.133 -212.28,-149.133 -138.25,0 -212.26,27.207 -212.26,176.344 V 884.77" />
<path id="path86" style="opacity:0; fill:#0A25F3;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4860.46,1285.38 h 161.11 V 848.844 h 2.18 l 72.91,203.566 h 158.96 L 5172.88,808.566 5281.72,497.23 h -171.99 l -85.98,274.333 h -2.18 V 497.23 h -161.11 v 788.15" />
</g>
</g>
</svg>
</br>
<p id="" class="row banner-text"
style="font-family: 'Fugaz One', cursive; opacity:0; display: block; width: 100%; position: absolute; bottom: -7vh; left: 7px; font-size: 30px">
<!-- some text -->
</p>
<p id="" class="row banner-text- style-hidden"
style="font-family: 'Fugaz One', cursive; opacity:0; display: block; width: 100%; position: absolute; bottom: -15vh; left: 7px; font-size: 20px">
This website provides an overview of the open source repositories, which are created or forked by Bridgetek
for customers. You may find the desired repositories easily via it.
<!-- some text -->
</p>
</div>
</div>
</div>
</div>
<div data-bs-spy="scroll" data-bs-target="#navbar-example2" data-bs-offset="0" class="scrollspy-example" tabindex="0">
<!-- overview -------------------------------------------------------------------------->
<div id="overview" class="container-fluid style-bg-white style-padding-top-50 " style="height-: 100vh;">
<div class="container">
<div class="f0-light text-center style-color-blue2 style-height-100"
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146; ">
Overview
</div>
<div class="row style-color-black style-fullw justify-content-center" style="margin:auto;">
<div class="col-12 style-text-center-middle" style=" font-size: 20px;">
This website provides an overview of the open source repositories, which are created or forked by Bridgetek
for customers.
</div>
<div class="col-12 style-text-center-middle style-margin-top-30" style=" font-size: 20px;">
Here you can find information of:
</div>
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4" style=" font-size: 20px;">
<ul style=" font-size: 16px;">
<li><a href="#an">Application notes</a></li>
<li><a href="#mcu">MCU (FT9xx) related</a></li>
<li><a href="#eve">EVE (FT8xx/BT8xx) related</a></li>
<li><a href="#embedded_world">Embedded World Demos</a></li>
<li><a href="#tutorials">Tutorials</a></li>
</ul>
</div>
</div>
<div class="row style-height-100 style-color-white "></div>
</div>
</div>
<!-- Application Note -------------------------------------------------------------------------->
<div id="an" class="container-fluid style-bg-gray3 style-padding-top-50">
<div class="container style-fullh">
<div class="f0-light text-center style-color-blue2 "
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146 ">
Application Note related repositories
</div>
<div class="row style-color-black style-fullw justify-content-center " style="margin:auto; padding-top: 50px;">
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
<h5>Eve specific: (BRT_AN_012)</h5>
<ul>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_012-Example-Pico">EVE-MCU-BRT_AN_012-Example-Pico</a>
</li>
</ul>
</div>
<div class="col-xs-12 col-sm-12 col-md-5 col-lg-5" style="display: block; padding:auto;">
<h5>Eve specific: (BRT_AN_025)</h5>
<ul>
<li><a target="_blank" href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025">EVE-MCU-BRT_AN_025</a></li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-common">EVE-MCU-BRT_AN_025-Example-common</a>
</li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-PIC18F46K22">EVE-MCU-BRT_AN_025-Example-PIC18F46K22</a>
</li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-FT900">EVE-MCU-BRT_AN_025-Example-FT900</a>
</li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-Beaglebone">EVE-MCU-BRT_AN_025-Example-Beaglebone</a>
</li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-ESP32">EVE-MCU-BRT_AN_025-Example-ESP32</a>
</li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-libMPSSE">EVE-MCU-BRT_AN_025-Example-libMPSSE</a>
</li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-Pico">EVE-MCU-BRT_AN_025-Example-Pico</a>
</li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-RPi">EVE-MCU-BRT_AN_025-Example-RPi</a>
</li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-MSP430">EVE-MCU-BRT_AN_025-Example-MSP430</a>
</li>
<li><a target="_blank"
href="https://github.com/Bridgetek/EVE-MCU-BRT_AN_025-Example-STM32">EVE-MCU-BRT_AN_025-Example-STM32</a>
</li>
</ul>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<h5>ESD related</h5>
<ul>
<li><a target="_blank"
href="https://github.com/Bridgetek/BRT_AN_073-ESD-exported-Project-Porting-Guide">BRT_AN_073-ESD-exported-Project-Porting-Guide</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- mcu -------------------------------------------------------------------------->
<div id="mcu" class="container-fluid style-bg-white style-padding-top-50 style-text-middle" style="height-: 100vh;">
<div class="container">
<div class="f0-light text-center style-color-blue2"
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146 ">
MCU (FT9xx) related repositories
</div>
<div class="row style-color-black style-fullw" style="margin:auto; padding-top: 50px;">
<div class="col-xs-0 col-sm-0 col-md-2 col-lg-2 style-text-center-msiddle"></div>
<div class="col-xs-12 col-sm-12 col-md-10 col-lg-10 style-text-center-msiddle">
<ul>
<li>How to use visual studio Code to compile and debug code for FT9xx : <a target="_blank"
href="https://github.com/Bridgetek/ft9xx-vscode">ft9xx-vscode</a></li>
<li>Hardware library and examples for FT9xx: <a target="_blank"
href="https://github.com/Bridgetek/ft9xx-sdk">ft9xx-sdk</a></li>
<li>Example code for Bridgetek FT9xx USB device emulation: <a target="_blank"
href="https://github.com/Bridgetek/ft9xx-usbd-examples">ft9xx-usbd-examples</a></li>
<li>A windows application to view and analyse information from the linker generated Map file: <a
target="_blank" href="https://github.com/Bridgetek/MapViewer">MapViewer
</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- eve -------------------------------------------------------------------------->
<div id="eve" class="container-fluid style-bg-gray3 style-padding-top-50">
<div class="container style-fullh">
<div class="f0-light text-center style-color-blue2 "
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146 ">
EVE (FT8xx/BT8xx) related repositories
</div>
<div class="row style-color-black style-fullw justify-content-center style-text-center-middl"
style="margin:auto; padding-top: 50px;">
<div class="col-xs-0 col-sm-0 col-md-2 col-lg-2 style-text-center-msiddle"></div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<h5>Official sample and examples:</h5>
<ul>
<li><a target="_blank" href="https://github.com/Bridgetek/EveApps">EveApps</a></li>
<li><a target="_blank" href="https://github.com/Bridgetek/pico-brteve">pico-brteve</a> (C, CPython, <a
href="https://readthedocs.org/projects/bteve/">CircuitPython</a>)</li>
<li>CircuitPython built-in <a target="_blank" href="https://github.com/jamesbowman/py-bteve">_EVE
class</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
<h5>GUI Framework:</h5>
<ul>
<li><a target="_blank" href="https://github.com/Bridgetek/nuklear_eve">nuklear_eve</a></li>
<li><a target="_blank" href="https://github.com/Bridgetek/lvgl-EVE">LVGL-Eve</a></li>
</ul>
</div>
<div class="col-xs-0 col-sm-0 col-md-12 col-lg-12 mt-10 style-height-10"></div>
<div class="col-xs-0 col-sm-0 col-md-2 col-lg-2 style-text-center-msiddle "></div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<h5>Arduino library: </h5>
<ul>
<li><a target="_blank" href="https://github.com/Bridgetek/RP2040-BrtEve">Arduino library</a> for RP2040
and Eve
</li>
</ul>
</div>
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
<h5>Telemtetrix:</h5>
<ul>
<li>Client: <a target="_blank"
href="https://github.com/Bridgetek/telemetrix-rpi-pico">telemetrix-rpi-pico</a></li>
<li>Server: <a target="_blank"
href="https://github.com/Bridgetek/Telemetrix4RpiPico">Telemetrix4RpiPico</a></li>
<br>
<!-- The server runs on an RP2040 mcu connecting to an EVE and the client runs on a PC (Window/Linux/Mac...) -->
</ul>
</div>
</div>
</div>
</div>
<!-- Embedded world -------------------------------------------------------------------------->
<div id="embedded_world" class="container-fluid style-bg-white style-padding-top-50 style-text-middle"
style="height-: 100vh;">
<div class="container">
<div class="f0-light text-center style-color-blue2"
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146 ">
Embedded World Demos
</div>
<div class="row style-color-black style-fullw style-text-center" style="margin:auto; padding-top: 50px;">
<!-- <div class="col-xs-12"> -->
<h5><a target="_blank" href="https://github.com/Bridgetek/IDM2040-7A-EW2022">EW 2022</a></h5>
<h5><a target="_blank" href="https://github.com/Bridgetek/EW2023">EW 2023</a></h5>
<h5><a target="_blank" href="https://github.com/Bridgetek/EW2024">EW 2024</a></h5>
<!-- <ul>
<li><a target="_blank" href="https://github.com/Bridgetek/IDM2040-7A-EW2022">EW 2022</a></li>
<li><a target="_blank" href="https://github.com/Bridgetek/EW2023">EW 2023</a></li>
<br>
</ul> -->
<!-- </div> -->
</div>
<div class="row style-padding-top-20 style-padding-bottom-30">
<div class="col-xs-0 col-sm-0 col-md-2 col-lg-2"></div>
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8">
<div class="ratio ratio-16x9 style-text-center style-bg-gray">
<iframe src="https://www.youtube.com/embed/u4mMFuEfTN4?rel=0" title="EW 2023" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Tutorials -------------------------------------------------------------------------->
<div id="tutorials" class="container-fluid style-bg-gray3 style-padding-top-50">
<div class="container style-fullh">
<div class="f0-light text-center style-color-blue2 "
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146 ">
Tutorials
</div>
<div class="row style-color-black style-fullw style-text-center" style="margin:auto;">
<h5>
<div class="row style-color-black style-fullw justify-content-center " style="margin:auto; padding-top: 50px;">
<div class="col-xs-12 col-sm-12 col-md-5 col-lg-5" style="display: block; padding:auto;">
<h5>ESD tutorials</h5>
<ul>
<li><a target="_blank" href="./tutorials/esd_idm2040_21r/index.html">ESD for IDM2040-21R tutorials</a></li>
</ul>
</div>
</div>
</h5>
<h5>
<div class="row style-color-black style-fullw justify-content-center " style="margin:auto;">
<div class="col-xs-12 col-sm-12 col-md-5 col-lg-5" style="display: block; padding:auto;">
<h5>Embedded World</h5>
<ul>
<li><a target="_blank" href="./tutorials/ew2024_photobooth/html/index.html">Embedded World 2024 Photobooth</a></li>
</ul>
</div>
</div>
</h5>
</div>
</div>
</div>
<!-- screenshot -------------------------------------------------------------------------->
<div id="screenshot" class="container-fluid style-bg-white style-padding-top-50 style-text-midddle style-hidden"
style="min-height-: 100vh;">
<div class="container">
<div class="f0-light text-center style-color-blue2"
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146 ">
Screenshots
</div>
<h5 id="screenshot_sa" class="row col-12 style-text-center-middle- style-padding-top-30">SampleApp of EveApps
</h5>
<div class="row style-color-black">
<div id="cycler-del" class="style-hidden style-fullh scrolling-div- col col-6 align-items-start">
<div class="scrolling-div-content- style-text-left style-padding-left-30">
<style>
.scrolling-div {
height: 60%;
overflow: hidden;
position: relative;
}
.scrolling-div-content {
position: relative;
}
</style>
</div>
</div>
<div class="row style-color-black justify-content-center style-padding-10">
<div class="row style-color-black justify-content-center " style="font-size:20px; font-weight:300">
<div class="col-12 style-text-left style-hidden">
Image viewer, Media Player, Audio Playback, Meta Balls, Graph, Refrigerator ... etc, and much more
examples waiting for your exploring.
</div>
<div class="col-12">
<div class="autoplay ">
<div class="right- style-text-center-middle justify-content-center col-12">
<img class="roundeds" src="demo_images/video.png " />Media Player
(SampleApp)
</div>
<div class="right- style-text-center-middle col-12">
<img class="rounded" src="demo_images/meter.png " />Image Viewer
(SampleApp)
</div>
<div class="right- style-text-center-middle col-12">
<img class="rounded" src="demo_images/menu.png " />Demo Main Menu
</div>
<div class="right- style-text-center-middle col-12">
<img class="rounded" src="demo_images/lift.png " />Demo Lift
</div>
<div class="right- style-text-center-middle col-12">
<img class="rounded" src="demo_images/keyboard.png " />Demo Keyboard Unicode
</div>
<div class="right- style-text-center-middle col-12">
<img class="rounded" src="demo_images/image.png " />Demo Image Viewer
</div>
<div class="right- style-text-center-middle col-12">
<img class="rounded" src="demo_images/graph.png " />Demo Graph
</div>
<div class="right- style-text-center-middle col-12">
<img class="rounded" src="demo_images/button.png " />Demo Meter
</div>
</div>
<style>
.slick-arrow:before {
color: black
}
</style>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid style-bg-white style-padding-top-50 style-text-center-middle" style="height-: 100vh;">
<div class="container ">
<div class="row f0-light justify-content-center style-color-blue2 style-mh-150"
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146 ">
<div class="col-12 col-sm-12 col-md-1 col-lg-1 col-xl-1 style-text-center">
<img class="style-height-100" src="images/opensource.png" />
</div>
<div class="col-12 col-sm-12 col-md-5 col-lg-5 col-xl-3 style-text-center-middle">Open source </div>
</div>
<div class="row style-color-black style-fullw justify-content-center " style="margin:auto;">
<div class="col style-text-center">
<div> </div>
<span>You are freely allowed to modify and distribute the source code</span>
</div>
</div>
<div class="row style-height-100 style-color-white"></div>
</div>
</div>
<div class="container-fluid style-bg-gray3 style-padding-top-50">
<div class="container style-fullh">
<div class="f0-light text-center style-color-blue2 style-height-60"
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146 ">
Any Questions?</div>
<div class="row style-color-black style-fullw justify-content-center "
style-="font-size:20px; font-weight:300; margin:auto;">
<div class="col-10 style-text-center">
Ask questions and start discussion in our forum <a target="_blank"
href="http://www.brtcommunity.com">www.brtcommunity.com</a></br>
Documentation and product information can be found in our official website <a target="_blank"
href="http://www.brtchip.com">brtchip.com</a></br>
Follow us on <a target="_blank" href="http://www.twitter.com/bridgetek1">Twitter</a> for important
announcements</br></br>
E-Mail (Support): <a href="mailto:support.emea@brtchip.com">support.emea@brtchip.com</a>
</div>
</div>
<div class="row style-height-100 style-color-white"></div>
</div>
</div>
<div class="container-fluid style-padding-top-50 style-bg-gray2">
<div class="container style-fullh style-text-center-middle-">
<div class="row ">
<div class="style-fullw style-height-50 style-text-center-middle">
<a target="_blank" href="https://www.facebook.com/Bridgetek1"
class="fa fa-facebook style-margin-left-50-"></a>
<!--a target="_blank" href="http://www.twitter.com/bridgetek1" class="fa fa-twittesr ">
<svg style="max-width: 30px;" viewBox="0 0 24 24" aria-hidden="true" class="r-k200y r-18jsvk2 r-4qtqp9 r-yyyyoo r-5sfk15 r-dnmrzs r-kzbkwu r-bnwqim r-1plcrui r-lrvibr"><g><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></g></svg>
</a-->
<a target="_blank" href="http://www.twitter.com/bridgetek1" class="fa fa-twittesr ">𝕏</a>
<a target="_blank" href="https://www.youtube.com/c/bridgetek" class="fa fa-youtube "></a>
<a target="_blank" href="https://www.linkedin.com/company/brtchip" class="fa fa-linkedin "></a>
<style>
.fa {
padding: 0px 20px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
}
.fa:hover {
opacity: 0.7;
}
</style>
</div>
<div class="style-fullw style-padding-top-50 style-text-center">
<div class="style-padding-top-10">
Bridgetek Pte Ltd </br>
Address: 1 Tai Seng Avenue, Tower A #03-05 Singapore 536464</br>
Tel No : (+65) 6547 4827</br>
website : <a href="https://www.brtchip.com">www.brtchip.com</a></br>
</div>
<!--div class="">CONTACT US</div>
<div class="style-padding-top-10">178 Paya Lebar Road, #07-03
Singapore 409030</div>
<div class="style-padding-top-10">Enquiry</div>
<div class="">Tel: +65 6547 4827</div>
<div class="">Fax: +65 6841 6071</div-->
</div>
</div>
</div>
</div>
<div class="container-fluid style-padding-top-10" style="background:#333333;">
<div class="container style-fullh">
<div class="f0-light text-center style-color-blue2 style-height-30"
style="background: deepskyblue-;font-size: 40px;font-weight: 300; color:#3c4146 ">
<div class="row style-fullh" style="color:#eeeeee;">
<div class="col-12 style-text-denter-middle" style="font-size: 14px;">
Copyright 2023 © Bridgetek Pte Ltd. All rights reserved. <a class="style-hidden style-margin-left-20" target="_blank"
href="http://brtchip.com/disclaimer/" style="color:yellow;">Disclaimer</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<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>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
<!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script> -->
<script src="https://code.jquery.com/jquery-migrate-1.2.1.js"></script>
<script type="text/javascript" src="slick-1.8.0/slick.min.js"></script>
<script type="text/javascript" src="wodry/wodry.js"></script>
<script type="text/javascript" src="jQuery-Plugin-To-Draw-and-Animate-SVG-Paths-zPath-js/jquery.zpath.js"></script>
<style>
.zoom {
transition: transform .2s;
/* Animation */
}
.zoom:hover {
transform: scale(1.1);
/* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
</style>
<script>
$(function () {
delay = 0
step = 200
var count = 0
var colors = ["white", "white", "white", "white", "white", "white", "white", "white", "white",
"red",
"white", "white", "white", "white", "white", "white", "white", "white", "white", "white", "white", "white", "white", "white", "white", "white", "white", "white",
"#0A25F3", "#0A25F3", "#0A25F3", "#0A25F3", "#0A25F3", "#0A25F3", "#0A25F3", "#0A25F3", "#0A25F3"
];
function makeTimeoutFunc(param, count) {
return function () {
param.animate({'stroke-dashoffset': 0}, 1000).css({opacity: 1, fill: colors[count], 'transition': 'fill 1s'});
console.log(colors[count])
}
}
$('svg').find('path').each(function () {
var content = $(this)
setTimeout(makeTimeoutFunc(content, count), delay);
delay += step
count += 1
step -= 10
})
setTimeout(function () {$('.banner-text').animate({opacity: 1}, 1000);}, 2000);
});
</script>
<script> // examples animation
$(document).ready(function () {
w = $(document).width();
var slidesToShow = 1;
if (w < 768) {slidesToShow = 1;}
else if (w >= 768) {slidesToShow = 3;}
else if (w >= 992) {slidesToShow = 3;}
else if (w >= 1200) {slidesToShow = 3}
slidesToShow = 1;
$('.autoplay').slick({
slidesToShow: slidesToShow,
slidesToScroll: 1,
autoplay: 0,
autoplaySpeed: 2000,
centerMode: true
});
$('.autoplay').click(function () {
$(this).children(' .slick-next').click();
});
});
</script>
<script> // Release animation
$(document).ready(function () {
$(".flex-container > div").stop().animate({
value: 1
}, {
duration: 500,
step: function (now, fx) {
$(this).css("flex-grow", now);
}
});
$(".flex-container > div").on("mouseover", function () {
$(this).stop().animate({
value: 2
}, {
duration: 200,
step: function (now, fx) {
$(this).css("flex-grow", now);
}
});
});
$(".flex-container > div").on("mouseleave", function () {
$(this).stop().animate({
value: 1
}, {
duration: 200,
step: function (now, fx) {
$(this).css("flex-grow", now);
}
});
});
});
</script>
<script>
(function ($) {
$.fn.rollup = function (options) {
var settings = $.extend({
$wrapper: this,
$content: $('.scrolling-div-content'),
speed: 5000
}, options);
return this.each(function () {
var $content = settings.$content,
$content_height = $content.height(),
$wrapper = settings.$wrapper,
$wrapper_height = $wrapper.height(),
$clone = $content.clone(),
$merge = $.merge($content, $clone);
$wrapper.append($clone);
function rollUp() {
$merge.animate({
top: -($content_height),
}, settings.speed, 'linear', function () {
$merge.css({
top: 0
});
rollUp();
});
}
rollUp();
});
};
})(jQuery)
$('.scrolling-div').rollup({speed: 80000});
</script>
<script>
$(document).ready(function () {
$('a[href*="#"]').click(function (event) {
event.preventDefault();
$('html,body').animate({scrollTop: $(this.hash).offset().top}, 30);
});
});
</script>
<script>
$(document).ready(function () {
$(".navbar .nav-link").on("click", function () {
$(".navbar").find(".active").removeClass("active");
$(this).addClass("active");
});
});
</script>
</body>
</html>