-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
1559 lines (1344 loc) · 88.9 KB
/
index.html
File metadata and controls
1559 lines (1344 loc) · 88.9 KB
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
<!DOCTYPE HTML>
<!-- START html -->
<!--[if IE 8]>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#" class="ie ie8">
<![endif]-->
<!--[if !IE]>-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<!--<![endif]-->
<!-- START head -->
<head>
<!-- START meta -->
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<meta charset="UTF-8" />
<meta name="keywords" content="SwitchDoc Labs" />
<meta name="description" content="Grove Devices, Solar Power, Boards and Blogs" />
<!-- END meta -->
<!-- Favicon and apple-touch Icons -->
<link rel="stylesheet" href="https://www.switchdoc.com/wp-content/themes/Child%20Theme/style.css" type="text/css" media="screen" />
<!--[if IE]>
<link rel="stylesheet" href="https://www.switchdoc.com/wp-content/themes/AegaeusWP/css/font-awesome-ie7.css" type="text/css" media="all"/>
<![endif]-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style type="text/css">
.tooltip, a:hover, a h6:hover, #footer a:hover, .from-the-portfolio-title h3, #sort-categories .current-category a, #sort-categories .current-category a:hover, .link-post:hover .service-arrow, .page-pagination a.inactive:hover, .breadcrumb-wrapper a:hover, .page-not-found-box h1, .page-not-found-box h4 span, .hb-tour .tab-select li a:hover, .hb-tour .tab-select li.current_page_item a, #redirect-span, ul.tabs li.active a, .plan-item:hover .plan-item-price, .trigger.active a, .trigger-button.active, .focus-sep-text, .fullwidth-service:hover .icon-image span, .fullwidth-service:hover h4 a, #nav li a:hover, #nav li.current-menu-item a, #nav li.sfHover a, #nav li.current-menu-ancestor>a, #nav ul a:hover, #nav li.sfHover li>a:hover, #nav ul li.sfHover>a, #nav ul li.current-menu-ancestor>a, #nav ul li.current-menu-item>a, #nav-resp li a:hover, .from-the-portfolio-sec-text a:hover, .page-numbers:hover, .blog-pagination div a:hover, .blog-pagination div.alignleft a:hover, .blog-pagination div.alignright a:hover, .page-pagination a:hover, .page-pagination-wrap a:hover { color: #ff6838 }
#nav li a:hover, #nav li.current-menu-item a, #nav li.sfHover a, #nav li.current-menu-ancestor>a, #bottom-line a:hover { border-color: #ff6838 }
blockquote, .callout-box, .testimonial-header .testimonial-content, .tipsy-arrow-e { border-left-color: #ff6838 }
.tipsy-arrow-w { border-right-color: #ff6838 }
.blog-post:hover .blog-post-meta, .link-post:hover .blog-post-excerpt, .bypostauthor>.comment-body:hover, #wrapper, #nav ul, .tipsy-arrow-n { border-bottom-color: #ff6838 }
.arrow-down, .plan-item:hover, .focus-plan, .fullwidth-service:hover, .tipsy-arrow-s { border-top-color: #ff6838 }
.page-pagination a.current, #header-dropdown, .newsletter-box-inner input[type=submit]:hover, .tipsy-inner, .plan-item-button a:hover, .page-pagination a.current { background-color: #ff6838 }
::-moz-selection, ::-webkit-selection, ::selection { background-color: #ff6838 }
.button:hover, .blog-type-icon-format:hover, .newsletter-box input[type=submit]:hover, .progress-bar .progress span { background: #ff6838 }
.focus-heading, .focus-color, .focus-plan .plan-item-header { color: #ff6838 !important }
#header-dropdown { background-color: #ff6838 !important }
</style>
<!-- Custom CSS -->
<!-- Custom CSS END -->
<!-- This site is optimized with the Yoast SEO plugin v5.8 - https://yoast.com/wordpress/plugins/seo/ -->
<title>SDL - SwitchDoc Labs</title>
<meta name="description" content="SwitchDoc Labs - Great Blog! Solar Power, Weather Instruments and Really, Really Useful Breakout boards for Raspberry Pi and Arduino"/>
<link rel="canonical" href="https://www.switchdoc.com/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="SDL - SwitchDoc Labs" />
<meta property="og:description" content="SwitchDoc Labs - Great Blog! Solar Power, Weather Instruments and Really, Really Useful Breakout boards for Raspberry Pi and Arduino" />
<meta property="og:url" content="https://www.switchdoc.com/" />
<meta property="og:site_name" content="SwitchDoc Labs" />
<meta property="fb:admins" content="100004833435316" />
<meta property="og:image" content="http://www.switchdoc.com/wp-content/uploads/2016/03/GroveAlone-1-150x150.png" />
<script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"WebSite","@id":"#website","url":"https:\/\/www.switchdoc.com\/","name":"SwitchDoc Labs","potentialAction":{"@type":"SearchAction","target":"https:\/\/www.switchdoc.com\/?s={search_term_string}","query-input":"required name=search_term_string"}}</script>
<script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"Organization","url":"https:\/\/www.switchdoc.com\/","sameAs":[],"@id":"#organization","name":"SwitchDoc Labs","logo":"http:\/\/www.switchdoc.com\/wp-content\/uploads\/2014\/07\/cropped-SwitchDoc-Labs-Logo-300dpi-wShadow-Solid.png"}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//assets.pinterest.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="SwitchDoc Labs » Feed" href="https://www.switchdoc.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="SwitchDoc Labs » Comments Feed" href="https://www.switchdoc.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="SwitchDoc Labs » SDL Comments Feed" href="https://www.switchdoc.com/switchdoc-labs-home-page/feed/" />
<!-- This site uses the Google Analytics by MonsterInsights plugin v7.2.0 - Using Analytics tracking - https://www.monsterinsights.com/ -->
<script type="text/javascript" data-cfasync="false">
var mi_version = '7.2.0';
var mi_track_user = true;
var mi_no_track_reason = '';
var disableStr = 'ga-disable-UA-40551668-1';
/* Function to detect opted out users */
function __gaTrackerIsOptedOut() {
return document.cookie.indexOf(disableStr + '=true') > -1;
}
/* Disable tracking if the opt-out cookie exists. */
if ( __gaTrackerIsOptedOut() ) {
window[disableStr] = true;
}
/* Opt-out function */
function __gaTrackerOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
}
if ( mi_track_user ) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','__gaTracker');
__gaTracker('create', 'UA-40551668-1', 'auto');
__gaTracker('set', 'forceSSL', true);
__gaTracker('require', 'displayfeatures');
__gaTracker('send','pageview');
} else {
console.log( "" );
(function() {
/* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
var noopfn = function() {
return null;
};
var noopnullfn = function() {
return null;
};
var Tracker = function() {
return null;
};
var p = Tracker.prototype;
p.get = noopfn;
p.set = noopfn;
p.send = noopfn;
var __gaTracker = function() {
var len = arguments.length;
if ( len === 0 ) {
return;
}
var f = arguments[len-1];
if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
console.log( 'Not running function __gaTracker(' + arguments[0] + " ....) because you are not being tracked. " + mi_no_track_reason );
return;
}
try {
f.hitCallback();
} catch (ex) {
}
};
__gaTracker.create = function() {
return new Tracker();
};
__gaTracker.getByName = noopnullfn;
__gaTracker.getAll = function() {
return [];
};
__gaTracker.remove = noopfn;
window['__gaTracker'] = __gaTracker;
})();
}
</script>
<!-- / Google Analytics by MonsterInsights -->
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/11\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.switchdoc.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.9.8"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55358,56760,9792,65039],[55358,56760,8203,9792,65039]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wgs-css' href='https://www.switchdoc.com/wp-content/plugins/wp-google-search/wgs.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='wgs2-css' href='https://www.switchdoc.com/wp-content/plugins/wp-google-search/wgs2.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='bbpl_public-css' href='https://www.switchdoc.com/wp-content/plugins/bbpress-like-button/css/bbpl_style.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='bbp-parent-bbpress-css' href='https://www.switchdoc.com/wp-content/themes/AegaeusWP/css/bbpress.css?ver=2.5.12-6148' type='text/css' media='screen' />
<link rel='stylesheet' id='contact-form-7-css' href='https://www.switchdoc.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.0' type='text/css' media='all' />
<link rel='stylesheet' id='dobsondev-shortcodes-css-css' href='https://www.switchdoc.com/wp-content/plugins/dobsondev-shortcodes/css/dobsondev-shortcodes.min.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='dobsondev-shortcodes-font-awesome-css' href='//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='easy_author_image-css' href='https://www.switchdoc.com/wp-content/plugins/easy-author-image/css/easy-author-image.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='owl_style-css' href='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/css/owl.carousel.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='owl_style_2-css' href='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/css/owl.theme.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='owl_style_3-css' href='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/css/owl.transitions.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='swipebox_css-css' href='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/css/swipebox.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='grid_fallback-css' href='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/css/grid_fallback.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='grid_style-css' href='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/css/grid_style.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='rs-plugin-settings-css' href='https://www.switchdoc.com/wp-content/plugins/revslider/rs-plugin/css/settings.css?ver=4.6.5' type='text/css' media='all' />
<style id='rs-plugin-settings-inline-css' type='text/css'>
.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}
</style>
<link rel='stylesheet' id='rps-blog-info-styles-css' href='https://www.switchdoc.com/wp-content/plugins/rps-blog-info/rps-blog-info.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='ce_responsive-css' href='https://www.switchdoc.com/wp-content/plugins/simple-embed-code/css/video-container.css?ver=4.9.8' type='text/css' media='all' />
<link rel='stylesheet' id='sfmsb-style-css' href='https://www.switchdoc.com/wp-content/plugins/simple-follow-me-social-buttons-widget/assets/css/style.css?ver=3.3.3' type='text/css' media='all' />
<link rel='stylesheet' id='sfmsb-icons-css' href='https://www.switchdoc.com/wp-content/plugins/simple-follow-me-social-buttons-widget/assets/css/icons.css?ver=3.3.3' type='text/css' media='all' />
<link rel='stylesheet' id='hb_fontawesome_style-css' href='https://www.switchdoc.com/wp-content/themes/AegaeusWP/css/font-awesome.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='hb_fancybox_style-css' href='https://www.switchdoc.com/wp-content/themes/AegaeusWP/css/fancybox/fancybox.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='hb_flexslider_style-css' href='https://www.switchdoc.com/wp-content/themes/AegaeusWP/css/flexslider.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='hb_animate_style-css' href='https://www.switchdoc.com/wp-content/themes/AegaeusWP/css/animate.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='hb_responsive_style-css' href='https://www.switchdoc.com/wp-content/themes/AegaeusWP/css/queries.css?ver=1.0' type='text/css' media='all' />
<!-- Inline jetpack_facebook_likebox -->
<style id='jetpack_facebook_likebox-inline-css' type='text/css'>
.widget_facebook_likebox {
overflow: hidden;
}
</style>
<link rel='stylesheet' id='tablepress-default-css' href='https://www.switchdoc.com/wp-content/plugins/tablepress/css/default.min.css?ver=1.9' type='text/css' media='all' />
<link rel='stylesheet' id='social-logos-css' href='https://www.switchdoc.com/wp-content/plugins/jetpack/_inc/social-logos/social-logos.min.css?ver=1' type='text/css' media='all' />
<link rel='stylesheet' id='jetpack_css-css' href='https://www.switchdoc.com/wp-content/plugins/jetpack/css/jetpack.css?ver=5.9' type='text/css' media='all' />
<script type='text/javascript' src='https://www.switchdoc.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var monsterinsights_frontend = {"js_events_tracking":"true","is_debug_mode":"false","download_extensions":"doc,exe,js,pdf,ppt,tgz,zip,xls","inbound_paths":"","home_url":"https:\/\/www.switchdoc.com","track_download_as":"event","internal_label":"int","hash_tracking":"false"};
/* ]]> */
</script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/google-analytics-for-wordpress/assets/js/frontend.min.js?ver=7.2.0'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/dobsondev-shortcodes/js/dobsondev-shortcodes.min.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/js/modernizr.custom.26633.js?ver=4.9.8'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var GridRotator = {"pluginsUrl":"https:\/\/www.switchdoc.com\/wp-content\/plugins"};
/* ]]> */
</script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/js/jquery.gridrotator.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/js/owl.carousel.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/js/jquery.swipebox.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/js/ios-orientationchange-fix.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/revslider/rs-plugin/js/jquery.themepunch.tools.min.js?ver=4.6.5'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/revslider/rs-plugin/js/jquery.themepunch.revolution.min.js?ver=4.6.5'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/plugins/simple-follow-me-social-buttons-widget/assets/js/front-widget.js?ver=3.3.3'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/themes/AegaeusWP/scripts/libs/jquery-backstretch/jquery.backstretch.js?ver=1.0'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/themes/AegaeusWP/scripts/libs/jquery-isotope/jquery.isotope.js?ver=1.0'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var MyAjax = {"ajaxurl":"https:\/\/www.switchdoc.com\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/themes/AegaeusWP/scripts/ajax.js?ver=4.9.8'></script>
<script type='text/javascript' src='https://www.switchdoc.com/wp-content/themes/AegaeusWP/scripts/jquery.custom.js?ver=1.0'></script>
<link rel='https://api.w.org/' href='https://www.switchdoc.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.switchdoc.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.switchdoc.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 4.9.8" />
<link rel='shortlink' href='https://www.switchdoc.com/' />
<link rel="alternate" type="application/json+oembed" href="https://www.switchdoc.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.switchdoc.com%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.switchdoc.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.switchdoc.com%2F&format=xml" />
<script type="text/javascript">
/* <![CDATA[ */
jQuery(document).ready( function() {
/* Use backticks instead of <code> for the Code button in the editor */
if ( typeof( edButtons ) !== 'undefined' ) {
edButtons[110] = new QTags.TagButton( 'code', 'code', '`', '`', 'c' );
QTags._buttonsInit();
}
/* Tab from topic title */
jQuery( '#bbp_topic_title' ).bind( 'keydown.editor-focus', function(e) {
if ( e.which !== 9 )
return;
if ( !e.ctrlKey && !e.altKey && !e.shiftKey ) {
if ( typeof( tinymce ) !== 'undefined' ) {
if ( ! tinymce.activeEditor.isHidden() ) {
var editor = tinymce.activeEditor.editorContainer;
jQuery( '#' + editor + ' td.mceToolbar > a' ).focus();
} else {
jQuery( 'textarea.bbp-the-content' ).focus();
}
} else {
jQuery( 'textarea.bbp-the-content' ).focus();
}
e.preventDefault();
}
});
/* Shift + tab from topic tags */
jQuery( '#bbp_topic_tags' ).bind( 'keydown.editor-focus', function(e) {
if ( e.which !== 9 )
return;
if ( e.shiftKey && !e.ctrlKey && !e.altKey ) {
if ( typeof( tinymce ) !== 'undefined' ) {
if ( ! tinymce.activeEditor.isHidden() ) {
var editor = tinymce.activeEditor.editorContainer;
jQuery( '#' + editor + ' td.mceToolbar > a' ).focus();
} else {
jQuery( 'textarea.bbp-the-content' ).focus();
}
} else {
jQuery( 'textarea.bbp-the-content' ).focus();
}
e.preventDefault();
}
});
});
/* ]]> */
</script>
<script type="text/javascript">
jQuery(function($) {
$(".swipebox_grid").swipebox({
hideBarsDelay : 0
});
});
jQuery(function(){
/*
jQuery(document.body)
.on('click touchend','#swipebox-slider .current img', function(e){
jQuery('#swipebox-next').click();
return false;
})
.on('click touchend','#swipebox-slider .current', function(e){
jQuery('#swipebox-close').trigger('click');
});
*/
});
</script>
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '228702000988306');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=228702000988306&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<meta name="p:domain_verify" content="b1c3e26aa56fd21421f798d31af8e694"/> <script type="text/javascript">
jQuery(document).ready(function() {
// CUSTOM AJAX CONTENT LOADING FUNCTION
var ajaxRevslider = function(obj) {
// obj.type : Post Type
// obj.id : ID of Content to Load
// obj.aspectratio : The Aspect Ratio of the Container / Media
// obj.selector : The Container Selector where the Content of Ajax will be injected. It is done via the Essential Grid on Return of Content
var content = "";
data = {};
data.action = 'revslider_ajax_call_front';
data.client_action = 'get_slider_html';
data.token = 'c10627869d';
data.type = obj.type;
data.id = obj.id;
data.aspectratio = obj.aspectratio;
// SYNC AJAX REQUEST
jQuery.ajax({
type:"post",
url:"https://www.switchdoc.com/wp-admin/admin-ajax.php",
dataType: 'json',
data:data,
async:false,
success: function(ret, textStatus, XMLHttpRequest) {
if(ret.success == true)
content = ret.data;
},
error: function(e) {
console.log(e);
}
});
// FIRST RETURN THE CONTENT WHEN IT IS LOADED !!
return content;
};
// CUSTOM AJAX FUNCTION TO REMOVE THE SLIDER
var ajaxRemoveRevslider = function(obj) {
return jQuery(obj.selector+" .rev_slider").revkill();
};
// EXTEND THE AJAX CONTENT LOADING TYPES WITH TYPE AND FUNCTION
var extendessential = setInterval(function() {
if (jQuery.fn.tpessential != undefined) {
clearInterval(extendessential);
if(typeof(jQuery.fn.tpessential.defaults) !== 'undefined') {
jQuery.fn.tpessential.defaults.ajaxTypes.push({type:"revslider",func:ajaxRevslider,killfunc:ajaxRemoveRevslider,openAnimationSpeed:0.3});
// type: Name of the Post to load via Ajax into the Essential Grid Ajax Container
// func: the Function Name which is Called once the Item with the Post Type has been clicked
// killfunc: function to kill in case the Ajax Window going to be removed (before Remove function !
// openAnimationSpeed: how quick the Ajax Content window should be animated (default is 0.3)
}
}
},30);
});
</script>
<link rel="stylesheet" type="text/css" href="https://www.switchdoc.com/wp-content/plugins/wp-code-highlight/css/wp-code-highlight.css" media="screen" />
<link rel='dns-prefetch' href='//i0.wp.com'/>
<link rel='dns-prefetch' href='//i1.wp.com'/>
<link rel='dns-prefetch' href='//i2.wp.com'/>
<link rel='dns-prefetch' href='//widgets.wp.com'/>
<link rel='dns-prefetch' href='//s0.wp.com'/>
<link rel='dns-prefetch' href='//0.gravatar.com'/>
<link rel='dns-prefetch' href='//1.gravatar.com'/>
<link rel='dns-prefetch' href='//2.gravatar.com'/>
<link rel="icon" href="https://i1.wp.com/www.switchdoc.com/wp-content/uploads/2015/02/047a58ee2f12fa46f5b1739e4e8dcf31_large-54e656d8v1_site_icon.png?fit=32%2C32&ssl=1" sizes="32x32" />
<link rel="icon" href="https://i1.wp.com/www.switchdoc.com/wp-content/uploads/2015/02/047a58ee2f12fa46f5b1739e4e8dcf31_large-54e656d8v1_site_icon.png?fit=192%2C192&ssl=1" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="https://i1.wp.com/www.switchdoc.com/wp-content/uploads/2015/02/047a58ee2f12fa46f5b1739e4e8dcf31_large-54e656d8v1_site_icon.png?fit=180%2C180&ssl=1" />
<meta name="msapplication-TileImage" content="https://i1.wp.com/www.switchdoc.com/wp-content/uploads/2015/02/047a58ee2f12fa46f5b1739e4e8dcf31_large-54e656d8v1_site_icon.png?fit=270%2C270&ssl=1" />
<style type="text/css" media="screen">
html { margin-top: 0px !important; }
* html body { margin-top: 0px !important; }
</style>
</head>
<!-- END head -->
<!-- START body -->
<body class="home page-template page-template-page-landing page-template-page-landing-php page page-id-1825 kikkey-top">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-49587916-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-49587916-1');
</script>
<style type="text/css">
body
{
background-image: url("http://www.switchdoc.com/wp-content/themes/AegaeusWP/images/textures/body/dots1.png") !important;
}
</style>
<!-- START #wrapper -->
<div id="wrapper" class="stretched-layout page-no-title right-sidebar">
<!-- START #header-dropdown -->
<div id="header-dropdown">
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#map").gMap({
controls: {
panControl: 1,
zoomControl: 1,
zoomControlOptions: {
style: google.maps.ZoomControlStyle.SMALL
},
mapTypeControl: 1,
streetViewControl: 1,
overviewMapControl: 1
},
maptype: 'ROADMAP',
zoom: 10,
latitude: 50,
longitude: 50,
});
});
</script> <div id="map"></div>
<div class="arrow-down"></div>
</div>
<!-- END #header-dropdown -->
<!-- START #content -->
<div id="content">
<!-- START #content-inner -->
<div id="content-inner" class="container clearfix">
<!-- START #header -->
<div id="header" class="hb_sticky_nav clearfix">
<!-- START #logo-wrap-->
<div id="logo-wrap">
<div id="logo" style="margin-top:0px;">
<a href="#">
<img src="http://www.switchdoc.com/wp-content/uploads/2015/04/Untitled-design-4.png" /> </a>
</div>
</div>
<!-- END #logo-wrap -->
<!-- START #social-wrap -->
<div id="social-wrap">
<div id="header-social">
<ul class="social clearfix">
<li><a class="facebook" href="https://www.facebook.com/switchdoclabs/" target="_blank"></a></li>
<li><a class="googleplus" href="https://plus.google.com/+Switchdoc" target="_blank"></a></li>
<li><a class="twitter" href="https://twitter.com/switchdoclabs" target="_blank"></a></li>
</ul>
</div>
<div class="clear"></div><form action="https://www.switchdoc.com" role="search" method="get" id="search-404"><input type="text" placeholder="Search..." name="s" id="search" /><input type="submit" id="submit-search" value="" /></form> </div>
<!-- END #social-wrap -->
<!-- BEGIN RESPONSIVE NAVIGATION -->
<div id="nav-wrap" class="navigation-class">
<div id="menu-icon"><span class="image-icon"></span></div>
<ul id="nav-resp">
<div class="triangle"></div>
</ul>
</div>
<!-- END RESPONSIVE NAVIGATION --> </div>
<!-- END #header -->
<div id="main-navigation-wrapper" class="navigation-class clearfix"><ul id="nav" class="menu clearfix"><li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-84"><a href="http://www.switchdoc.com/">Home</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-641"><a href="https://www.switchdoc.com/category/projectcat/">Projects</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-22660"><a href="https://www.switchdoc.com/2016/12/tutorial-part-1-building-a-solar-powered-raspberry-pi-weather-station-groveweatherpi/">GroveWeatherPi</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-post menu-item-22659"><a href="https://www.switchdoc.com/2017/03/project-curacao2-raspberrypi-and-arduino-based-environmental-station-part-1/">Project Curacao2</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2902"><a href="https://www.switchdoc.com/project-curacao-project-page/">Project Curacao</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2973"><a href="https://www.switchdoc.com/beaconair-ibeacons/">BeaconAir / iBeacons</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2934"><a href="https://www.switchdoc.com/mouseair-project-page/">MouseAir</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2307"><a href="https://www.switchdoc.com/category/sunrover/">SunRover</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2922"><a href="https://www.switchdoc.com/weatherpi-solar-powered-raspberry-pi-project/">WeatherPi</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-713"><a href="https://www.switchdoc.com/category/weatherpiarduino/">WeatherPiArduino</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27877"><a href="https://www.switchdoc.com/switchdoc-labs-really-useful-blogs/">Blogs</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5327"><a href="https://www.switchdoc.com/tutorials/">Tutorials</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-3753"><a href="https://shop.switchdoc.com/">Store</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3754"><a href="https://shop.switchdoc.com/">SwitchDoc Labs Products</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-23562"><a href="http://forum.switchdoc.com">Support</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-23561"><a href="http://forum.switchdoc.com">SwitchDoc Labs Support Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3790"><a href="https://www.switchdoc.com/support-forums/">Historical Read-Only Forum</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3334"><a href="https://www.switchdoc.com/distributors/">Distributors</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-133"><a href="https://www.switchdoc.com/about/">About</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-24597"><a href="https://www.switchdoc.com/contact-us-2/">Contact Us</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10382"><a href="http://groveweekly.switchdoc.com">NewsLetter</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3008"><a href="https://www.switchdoc.com/switchdoc-labs-in-the-media/">In the News</a></li>
</ul>
</li>
</ul></div> <div id="header-separator" class="separator"></div>
<!-- START #main-content -->
<div id="main-content" class="clearfix" >
<!-- START #main-inner-wrapper -->
<div id="main-inner-wrapper" class="col-12 clearfix page-with-sidebar">
<!-- START #sidebar-page-wrapper-->
<div id="sidebar-page-wrapper" class="clearfix">
<!-- START #main-content-with-sidebar" -->
<div id="main-content-with-sidebar" class="col-8">
<div class="section clearfix">
<div id="rev_slider_1_1_wrapper" class="rev_slider_wrapper fullwidthbanner-container" style="margin:0px auto;background-color:#E9E9E9;padding:0px;margin-top:0px;margin-bottom:0px;max-height:350px;">
<!-- START REVOLUTION SLIDER 4.6.5 fullwidth mode -->
<div id="rev_slider_1_1" class="rev_slider fullwidthabanner" style="display:none;max-height:350px;height:350px;">
<ul> <!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-link="https://shop.switchdoc.com/products/the-bc24-esp32-based-24-rgbw-pixels-with-grove-connectors" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="https://i2.wp.com/www.switchdoc.com/wp-content/plugins/revslider/images/transparent.png?w=930&ssl=1" alt="IMG_5883" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-recalc-dims="1">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-fade"
data-x="6"
data-y="0"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 5;"><img src="https://i0.wp.com/www.switchdoc.com/wp-content/uploads/2018/05/IMG_5883.jpg?w=930&ssl=1" alt="" data-ww="600" data-hh="338" data-recalc-dims="1">
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-link="https://www.kickstarter.com/projects/sunair/the-thunder-board-iot-lightning-detection-for-make?ref=bag2by" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="https://i2.wp.com/www.switchdoc.com/wp-content/plugins/revslider/images/transparent.png?w=930&ssl=1" style='background-color:#ffffff' alt="Thumbnail-clear-cloud-dark-pants" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-recalc-dims="1">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption bigblack tp-fade tp-resizeme"
data-x="42"
data-y="18"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-end="8700"
data-endspeed="300"
style="z-index: 5; max-width: auto; max-height: auto; white-space: nowrap;">
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption tp-fade"
data-x="257"
data-y="46"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 6;"><img src="https://i2.wp.com/www.switchdoc.com/wp-content/uploads/2017/11/thunderboard7.png?w=930&ssl=1" alt="" data-ww="512" data-hh="288" data-recalc-dims="1">
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-link="http://www.switchdoc.com/smartplantpi/" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="https://i2.wp.com/www.switchdoc.com/wp-content/plugins/revslider/images/transparent.png?w=930&ssl=1" style='background-color:#ffffff' alt="Thumbnail-clear-cloud-dark-pants" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-recalc-dims="1">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption bigblack tp-fade tp-resizeme"
data-x="42"
data-y="18"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 5; max-width: auto; max-height: auto; white-space: nowrap;">Smart Plant Pi! NO soldering kit
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption tp-fade"
data-x="50"
data-y="50"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 6;"><a href="http://www.switchdoc.com/smartplantpi/"><img src="https://i2.wp.com/www.switchdoc.com/wp-content/uploads/2016/12/KS9Image.png?w=930&ssl=1" alt="" data-ww="500" data-hh="NaN" data-recalc-dims="1"></a>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption tp-fade"
data-x="409"
data-y="53"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 7;"><img src="https://i1.wp.com/www.switchdoc.com/wp-content/uploads/2017/01/IMG_4881Anno.jpg?w=930&ssl=1" alt="" data-ww="400" data-hh="300" data-recalc-dims="1">
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-link="http://www.switchdoc.com/2016/12/tutorial-using-an-analog-to-digital-converter-with-your-raspberry-pi/" data-target="_blank" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="https://i2.wp.com/www.switchdoc.com/wp-content/plugins/revslider/images/transparent.png?w=930&ssl=1" style='background-color:#E7E7E7' alt="weather3d" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-recalc-dims="1">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption bigblack tp-fade tp-resizeme"
data-x="55"
data-y="0"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-end="8700"
data-endspeed="300"
style="z-index: 5; max-width: 144px; max-height: 10px; white-space: normal;">Featured Blog: Tutorial Use an Analog to Digital Converter with your Raspberry Pi
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption bigblack tp-fade tp-resizeme"
data-x="125"
data-y="286"
data-speed="300"
data-start="700"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-end="8700"
data-endspeed="300"
style="z-index: 6; max-width: ; max-height: ; white-space: normal;"><a href='#' class='tp-button blue small'>Learn More</a>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption tp-fade"
data-x="282"
data-y="12"
data-speed="300"
data-start="700"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-end="8700"
data-endspeed="300"
style="z-index: 7;"><img src="https://i0.wp.com/www.switchdoc.com/wp-content/uploads/2016/12/IMG_7529anno.jpg?w=930&ssl=1" alt="" data-ww="432" data-hh="303" data-recalc-dims="1">
</div>
<!-- LAYER NR. 4 -->
<div class="tp-caption tp-fade"
data-x="735"
data-y="38"
data-speed="300"
data-start="700"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-end="8700"
data-endspeed="300"
style="z-index: 8;"><img src="https://i0.wp.com/www.switchdoc.com/wp-content/uploads/2015/11/raspberry_pi_logo_rgb_552x650-212x250.png?resize=212%2C250&ssl=1" alt="" data-recalc-dims="1">
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-link="http://www.switchdoc.com/2015/04/turning-the-pi-on-and-off-weatherpi-solar-power/" data-target="_blank" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="https://i2.wp.com/www.switchdoc.com/wp-content/plugins/revslider/images/transparent.png?w=930&ssl=1" style='background-color:#E7E7E7' alt="weather3d" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-recalc-dims="1">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-fade"
data-x="265"
data-y="105"
data-speed="300"
data-start="1700"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-end="8500"
data-endspeed="300"
style="z-index: 5;"><img src="https://i1.wp.com/www.switchdoc.com/wp-content/uploads/2015/04/IMG_3385.jpg?w=930&ssl=1" alt="" data-ww="400" data-hh="300" data-recalc-dims="1">
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption tp-fade"
data-x="530"
data-y="50"
data-speed="300"
data-start="700"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-end="8500"
data-endspeed="300"
style="z-index: 6;"><img src="https://i2.wp.com/www.switchdoc.com/wp-content/uploads/2015/04/IMG_3384.jpg?w=930&ssl=1" alt="" data-ww="400" data-hh="300" data-recalc-dims="1">
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption tp-fade"
data-x="325"
data-y="25"
data-speed="300"
data-start="2700"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 7;"><img src="https://i2.wp.com/www.switchdoc.com/wp-content/uploads/2015/03/IMG_0863.jpg?w=930&ssl=1" alt="" data-ww="400" data-hh="251" data-recalc-dims="1">
</div>
<!-- LAYER NR. 4 -->
<div class="tp-caption bigblack tp-fade tp-resizeme"
data-x="54"
data-y="1"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 8; max-width: 144px; max-height: 10px; white-space: normal;">Power and the Pi: Setting On and Off Power values for Solar Powered Raspberry Pi - WeatherPi
</div>
<!-- LAYER NR. 5 -->
<div class="tp-caption bigblack tp-fade tp-resizeme"
data-x="125"
data-y="286"
data-speed="300"
data-start="2700"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 9; max-width: ; max-height: ; white-space: normal;"><a href='#' class='tp-button blue small'>Learn More</a>
</div>
<!-- LAYER NR. 6 -->
<div class="tp-caption tp-fade"
data-x="608"
data-y="120"
data-speed="300"
data-start="1900"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 10;"><img src="https://i2.wp.com/www.switchdoc.com/wp-content/uploads/2015/04/IMG_0885-GraphCut.png?w=930&ssl=1" alt="" data-ww="400" data-hh="211" data-recalc-dims="1">
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="https://i2.wp.com/www.switchdoc.com/wp-content/plugins/revslider/images/transparent.png?w=930&ssl=1" style='background-color:#E7E7E7' alt="IMG_0876" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-recalc-dims="1">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-fade"
data-x="211"
data-y="1"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 5;"><img src="https://i0.wp.com/www.switchdoc.com/wp-content/uploads/2015/03/IMG_0876.jpg?w=930&ssl=1" alt="" data-recalc-dims="1">
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption bigblack tp-fade tp-resizeme"
data-x="30"
data-y="14"
data-speed="300"
data-start="900"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 6; max-width: 160px; max-height: 156px; white-space: normal;">Really, Really Useful Boards and Blogs
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption black tp-fade tp-resizeme"
data-x="84"
data-y="256"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 7; max-width: auto; max-height: auto; white-space: nowrap;">
<a href='#' class='tp-button blue small'>Learn More</a>
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="https://i2.wp.com/www.switchdoc.com/wp-content/plugins/revslider/images/transparent.png?w=930&ssl=1" style='background-color:#E7E7E7' alt="magpi-ad-04132015-exploration-v1" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-recalc-dims="1">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-fade fadeout"
data-x="13"
data-y="0"
data-speed="300"
data-start="0"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 5;"><img src="https://i1.wp.com/www.switchdoc.com/wp-content/uploads/2015/04/RSMaarqueeimageforSDL.jpg?w=930&ssl=1" alt="" data-ww="930" data-hh="NaN" data-recalc-dims="1">
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="7" data-masterspeed="300" data-link="http://www.switchdoc.com/2016/02/tutorial-installing-and-testing-mosquitto-mqtt-on-raspberry-pi/" data-saveperformance="off" >
<!-- MAIN IMAGE -->
<img src="https://i2.wp.com/www.switchdoc.com/wp-content/plugins/revslider/images/transparent.png?w=930&ssl=1" style='background-color:#E7E7E7' alt="IMG_2834-2-copy" data-bgposition="center top" data-bgfit="cover" data-bgrepeat="no-repeat" data-recalc-dims="1">
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div class="tp-caption bigblack tp-fade tp-resizeme"
data-x="27"
data-y="92"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-end="8700"
data-endspeed="300"
style="z-index: 5; max-width: 267px; max-height: 78px; white-space: normal;">MQTT Tutorial for the
Raspberry Pi
</div>
<!-- LAYER NR. 2 -->
<div class="tp-caption bigblack tp-fade tp-resizeme"
data-x="150"
data-y="200"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-end="8700"
data-endspeed="300"
style="z-index: 6; max-width: ; max-height: ; white-space: normal;"><a href='http://www.switchdoc.com/2016/02/tutorial-installing-and-testing-mosquitto-mqtt-on-raspberry-pi/' class='tp-button blue small'>Learn More</a>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption tp-fade"
data-x="300"
data-y="1"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 7;"><img src="https://i1.wp.com/www.switchdoc.com/wp-content/uploads/2016/02/MQTT-Mosquitto2.jpg?w=930&ssl=1" alt="" data-recalc-dims="1">
</div>
<!-- LAYER NR. 4 -->
<div class="tp-caption tp-fade"
data-x="659"
data-y="1"
data-speed="300"
data-start="500"
data-easing="Power3.easeInOut"
data-elementdelay="0.1"
data-endelementdelay="0.1"
data-endspeed="300"
style="z-index: 8;"><img src="https://i1.wp.com/www.switchdoc.com/wp-content/uploads/2016/02/mqtt-hub.jpg?w=930&ssl=1" alt="" data-ww="467" data-hh="400" data-recalc-dims="1">