-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlinkupController.html
1526 lines (1525 loc) · 116 KB
/
BlinkupController.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
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>
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>BlinkupController (blinkup 6.5.0 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="declaration: package: com.electricimp.blinkup, class: BlinkupController">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../script-dir/jquery-ui.min.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
<script type="text/javascript" src="../../../script-dir/jquery-3.6.1.min.js"></script>
<script type="text/javascript" src="../../../script-dir/jquery-ui.min.js"></script>
</head>
<body class="class-declaration-page">
<script type="text/javascript">var evenRowColor = "even-row-color";
var oddRowColor = "odd-row-color";
var tableTab = "table-tab";
var activeTableTab = "active-table-tab";
var pathtoroot = "../../../";
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="flex-box">
<div class="flex-content">
<main role="main">
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="sub-title"><span class="package-label-in-type">Package</span> <a href="package-summary.html">com.electricimp.blinkup</a></div>
<h1 title="Class BlinkupController" class="title">Class BlinkupController</h1>
</div>
<div class="inheritance" title="Inheritance Tree"><a href="http://d.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
<div class="inheritance">com.electricimp.blinkup.BlinkupController</div>
</div>
<section class="class-description" id="class-description">
<hr>
<div class="type-signature"><span class="modifiers">public class </span><span class="element-name type-name-label">BlinkupController</span>
<span class="extends-implements">extends <a href="http://d.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
</section>
<section class="summary">
<ul class="summary-list">
<!-- =========== FIELD SUMMARY =========== -->
<li>
<section class="field-summary" id="field-summary">
<h2>Field Summary</h2>
<div class="caption"><span>Fields</span></div>
<div class="summary-table three-column-summary">
<div class="table-header col-first">Modifier and Type</div>
<div class="table-header col-second">Field</div>
<div class="table-header col-last">Description</div>
<div class="col-first even-row-color"><code>static final double</code></div>
<div class="col-second even-row-color"><code><a href="#BLINKUP_VERSION_NUMBER" class="member-name-link">BLINKUP_VERSION_NUMBER</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#BLINKUP_VERSION_STRING" class="member-name-link">BLINKUP_VERSION_STRING</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>int</code></div>
<div class="col-second even-row-color"><code><a href="#countdownSeconds" class="member-name-link">countdownSeconds</a></code></div>
<div class="col-last even-row-color">
<div class="block">Number of seconds to count down before BlinkUp.</div>
</div>
<div class="col-first odd-row-color"><code>int</code></div>
<div class="col-second odd-row-color"><code><a href="#drawableCountdown" class="member-name-link">drawableCountdown</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the image on the count down page.</div>
</div>
<div class="col-first even-row-color"><code>int</code></div>
<div class="col-second even-row-color"><code><a href="#drawableIdInterstitial" class="member-name-link">drawableIdInterstitial</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the image to activate the interstitial page.</div>
</div>
<div class="col-first odd-row-color"><code>boolean</code></div>
<div class="col-second odd-row-color"><code><a href="#enablePowerSaveMessage" class="member-name-link">enablePowerSaveMessage</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Show warning message before BlinkUp on detecting a low frame rate.</div>
</div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#FIELD_DNS_1" class="member-name-link">FIELD_DNS_1</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#FIELD_DNS_2" class="member-name-link">FIELD_DNS_2</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#FIELD_ERROR" class="member-name-link">FIELD_ERROR</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#FIELD_GATEWAY" class="member-name-link">FIELD_GATEWAY</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#FIELD_IP_ADDRESS" class="member-name-link">FIELD_IP_ADDRESS</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#FIELD_MODE" class="member-name-link">FIELD_MODE</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#FIELD_NETMASK" class="member-name-link">FIELD_NETMASK</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#FIELD_PASSWORD" class="member-name-link">FIELD_PASSWORD</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#FIELD_PIN" class="member-name-link">FIELD_PIN</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#FIELD_PORT" class="member-name-link">FIELD_PORT</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#FIELD_PROXY_PASSWORD" class="member-name-link">FIELD_PROXY_PASSWORD</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#FIELD_PROXY_USERNAME" class="member-name-link">FIELD_PROXY_USERNAME</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#FIELD_SERVER" class="member-name-link">FIELD_SERVER</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#FIELD_SSID" class="member-name-link">FIELD_SSID</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#FIELD_TOKEN" class="member-name-link">FIELD_TOKEN</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/android/content/Intent.html" title="class or interface in android.content" class="external-link">Intent</a></code></div>
<div class="col-second odd-row-color"><code><a href="#intentBlinkupComplete" class="member-name-link">intentBlinkupComplete</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Intent to launch your activity after flashing the wifi settings via
BlinkUp.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/android/content/Intent.html" title="class or interface in android.content" class="external-link">Intent</a></code></div>
<div class="col-second even-row-color"><code><a href="#intentClearComplete" class="member-name-link">intentClearComplete</a></code></div>
<div class="col-last even-row-color">
<div class="block">Intent to launch your activity after clearing the wifi settings via
BlinkUp.</div>
</div>
<div class="col-first odd-row-color"><code>protected <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#lastMode" class="member-name-link">lastMode</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#MODE_CLEAR" class="member-name-link">MODE_CLEAR</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#MODE_ETHERNET" class="member-name-link">MODE_ETHERNET</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#MODE_WIFI" class="member-name-link">MODE_WIFI</a></code></div>
<div class="col-last even-row-color"> </div>
<div class="col-first odd-row-color"><code>static final <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#MODE_WPS" class="member-name-link">MODE_WPS</a></code></div>
<div class="col-last odd-row-color"> </div>
<div class="col-first even-row-color"><code>boolean</code></div>
<div class="col-second even-row-color"><code><a href="#setFullScreenBrightness" class="member-name-link">setFullScreenBrightness</a></code></div>
<div class="col-last even-row-color">
<div class="block">Set screen brightness to 100%.</div>
</div>
<div class="col-first odd-row-color"><code>int</code></div>
<div class="col-second odd-row-color"><code><a href="#setScreenBrightnessPercent" class="member-name-link">setScreenBrightnessPercent</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Set screen brightness to this percentage.</div>
</div>
<div class="col-first even-row-color"><code>boolean</code></div>
<div class="col-second even-row-color"><code><a href="#showClearConfig" class="member-name-link">showClearConfig</a></code></div>
<div class="col-last even-row-color">
<div class="block">Show clear device settings in the wifi select interface.</div>
</div>
<div class="col-first odd-row-color"><code>boolean</code></div>
<div class="col-second odd-row-color"><code><a href="#showLegacyMode" class="member-name-link">showLegacyMode</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Show checkbox to enable legacy mode.</div>
</div>
<div class="col-first even-row-color"><code>boolean</code></div>
<div class="col-second even-row-color"><code><a href="#showPassword" class="member-name-link">showPassword</a></code></div>
<div class="col-last even-row-color">
<div class="block">Show checkbox to show password.</div>
</div>
<div class="col-first odd-row-color"><code>boolean</code></div>
<div class="col-second odd-row-color"><code><a href="#smallBlinkupWindow" class="member-name-link">smallBlinkupWindow</a></code></div>
<div class="col-last odd-row-color">
<div class="block">BlinkUp in small window instead of full screen.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdBlinkUpDesc" class="member-name-link">stringIdBlinkUpDesc</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for the BlinkUp description.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdChangeNetwork" class="member-name-link">stringIdChangeNetwork</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for change network.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdChooseWiFiNetwork" class="member-name-link">stringIdChooseWiFiNetwork</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string to choose wifi network.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdClearDeviceSettings" class="member-name-link">stringIdClearDeviceSettings</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string to clear device settings.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdClearWireless" class="member-name-link">stringIdClearWireless</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for clear device button.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdConnectUsingWps" class="member-name-link">stringIdConnectUsingWps</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for connect using WPS.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdCountdownDesc" class="member-name-link">stringIdCountdownDesc</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for countdown description.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdLegacyMode" class="member-name-link">stringIdLegacyMode</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for legacy mode.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdLegacyModeDesc" class="member-name-link">stringIdLegacyModeDesc</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for legacy mode description.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdLowFrameRateDesc" class="member-name-link">stringIdLowFrameRateDesc</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for description in low frame rate dialog.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdLowFrameRateGoToSettings" class="member-name-link">stringIdLowFrameRateGoToSettings</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for go to settings in low frame rate
dialog.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdLowFrameRateProceedAnyway" class="member-name-link">stringIdLowFrameRateProceedAnyway</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for proceed anyway in low frame rate
dialog.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdLowFrameRateTitle" class="member-name-link">stringIdLowFrameRateTitle</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for title in low frame rate dialog.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdNext" class="member-name-link">stringIdNext</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for next when using interstitial page.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdOk" class="member-name-link">stringIdOk</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for OK.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdPasswordHint" class="member-name-link">stringIdPasswordHint</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for password hint.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdRememberPassword" class="member-name-link">stringIdRememberPassword</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for remember password.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdSendBlinkUp" class="member-name-link">stringIdSendBlinkUp</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for the Send BlinkUp button.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdShowPassword" class="member-name-link">stringIdShowPassword</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for show password.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdSsidHint" class="member-name-link">stringIdSsidHint</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for SSID hint.</div>
</div>
<div class="col-first even-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second even-row-color"><code><a href="#stringIdWpsInfo" class="member-name-link">stringIdWpsInfo</a></code></div>
<div class="col-last even-row-color">
<div class="block">Resource Id for the custom string for wps info.</div>
</div>
<div class="col-first odd-row-color"><code><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color"><code><a href="#stringIdWpsPinHint" class="member-name-link">stringIdWpsPinHint</a></code></div>
<div class="col-last odd-row-color">
<div class="block">Resource Id for the custom string for WPS pin hint.</div>
</div>
</div>
</section>
</li>
<!-- ========== METHOD SUMMARY =========== -->
<li>
<section class="method-summary" id="method-summary">
<h2>Method Summary</h2>
<div id="method-summary-table">
<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab1" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab1', 3)" class="table-tab">Static Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
<div id="method-summary-table.tabpanel" role="tabpanel" aria-labelledby="method-summary-table-tab0">
<div class="summary-table three-column-summary">
<div class="table-header col-first">Modifier and Type</div>
<div class="table-header col-second">Method</div>
<div class="table-header col-last">Description</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#acquireSetupToken(android.app.Activity,java.lang.String,com.electricimp.blinkup.TokenAcquireCallback)" class="member-name-link">acquireSetupToken</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="TokenAcquireCallback.html" title="interface in com.electricimp.blinkup">TokenAcquireCallback</a> tokenAcquireCallback)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Acquire a setup token.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#cancelTokenStatusPolling()" class="member-name-link">cancelTokenStatusPolling</a>()</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Stop the current token status fetching.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#clearDevice(android.app.Activity)" class="member-name-link">clearDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp directly to clear device settings on the Imp.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#clearDevice(android.app.Activity,boolean)" class="member-name-link">clearDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
boolean legacyMode)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp directly to clear device settings on the Imp.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#clearSavedData(android.content.Context)" class="member-name-link">clearSavedData</a><wbr>(<a href="http://d.android.com/reference/android/content/Context.html" title="class or interface in android.content" class="external-link">Context</a> context)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Clear cached and persistent data (saved passwords, most recent blinkup,
etc)</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static <a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#getCurrentWifiSSID(android.content.Context)" class="member-name-link">getCurrentWifiSSID</a><wbr>(<a href="http://d.android.com/reference/android/content/Context.html" title="class or interface in android.content" class="external-link">Context</a> context)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">
<div class="block">Get the SSID of the connected wifi network</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static <a href="BlinkupController.html" title="class in com.electricimp.blinkup">BlinkupController</a></code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#getInstance()" class="member-name-link">getInstance</a>()</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">
<div class="block">Get a BlinkupController instance.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getTokenStatus(com.electricimp.blinkup.TokenStatusCallback)" class="member-name-link">getTokenStatus</a><wbr>(<a href="TokenStatusCallback.html" title="interface in com.electricimp.blinkup">TokenStatusCallback</a> callback)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Fetch the agent url, impee ID and verified date after BlinkUp.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getTokenStatus(com.electricimp.blinkup.TokenStatusCallback,long)" class="member-name-link">getTokenStatus</a><wbr>(<a href="TokenStatusCallback.html" title="interface in com.electricimp.blinkup">TokenStatusCallback</a> callback,
long timeoutMs)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Fetch the agent url, impee ID and verified date after BlinkUp.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getTokenStatus(java.lang.String,com.electricimp.blinkup.TokenStatusCallback)" class="member-name-link">getTokenStatus</a><wbr>(<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> token,
<a href="TokenStatusCallback.html" title="interface in com.electricimp.blinkup">TokenStatusCallback</a> callback)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Fetch the agent url, impee ID and verified date after BlinkUp.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getTokenStatus(java.lang.String,com.electricimp.blinkup.TokenStatusCallback,long)" class="member-name-link">getTokenStatus</a><wbr>(<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> token,
<a href="TokenStatusCallback.html" title="interface in com.electricimp.blinkup">TokenStatusCallback</a> callback,
long timeoutMs)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Fetch the agent url, impee ID and verified date after BlinkUp.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#handleActivityResult(android.app.Activity,int,int,android.content.Intent)" class="member-name-link">handleActivityResult</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
int requestCode,
int resultCode,
<a href="http://d.android.com/reference/android/content/Intent.html" title="class or interface in android.content" class="external-link">Intent</a> data)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Call this from <a href="http://d.android.com/reference/android/app/Activity.html#onActivityResult-int-int-android.content.Intent-" title="class or interface in android.app" class="external-link"><code>onActivityResult</code></a>
of your activity if you have specified a custom complete activity via
<a href="#intentBlinkupComplete"><code>intentBlinkupComplete</code></a> or
<a href="#intentClearComplete"><code>intentClearComplete</code></a></div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#selectWifi(android.app.Activity,java.lang.String,int,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">selectWifi</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
int requestCode,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Bring up the wifi select interface and return the collected parameters
in onActivityResult</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#selectWifiAndSetupDevice(android.app.Activity,java.lang.String,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">selectWifiAndSetupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Bring up the wifi select interface to configure an Imp.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setBaseUrl(java.lang.String)" class="member-name-link">setBaseUrl</a><wbr>(<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> baseUrl)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Set the base url of the BlinkupController.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setBaseUrl(java.lang.String,java.lang.String%5B%5D)" class="member-name-link">setBaseUrl</a><wbr>(<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> baseUrl,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>[] pins)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Set the base url of the BlinkupController with certificate pinning.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setPlanID(java.lang.String)" class="member-name-link">setPlanID</a><wbr>(<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> planID)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Set planID for all requests.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDevice(android.app.Activity,java.lang.String,com.electricimp.blinkup.Proxy,com.electricimp.blinkup.StaticIp,boolean,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="Proxy.html" title="class in com.electricimp.blinkup">Proxy</a> proxy,
<a href="StaticIp.html" title="class in com.electricimp.blinkup">StaticIp</a> staticIp,
boolean legacyMode,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp with Ethernet.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDevice(android.app.Activity,java.lang.String,com.electricimp.blinkup.Proxy,com.electricimp.blinkup.StaticIp,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="Proxy.html" title="class in com.electricimp.blinkup">Proxy</a> proxy,
<a href="StaticIp.html" title="class in com.electricimp.blinkup">StaticIp</a> staticIp,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp with Ethernet.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDevice(android.app.Activity,java.lang.String,java.lang.String,boolean,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> wpsPin,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
boolean legacyMode,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp directly without going through the wifi select interface.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDevice(android.app.Activity,java.lang.String,java.lang.String,com.electricimp.blinkup.Proxy,com.electricimp.blinkup.StaticIp,boolean,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> wpsPin,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="Proxy.html" title="class in com.electricimp.blinkup">Proxy</a> proxy,
<a href="StaticIp.html" title="class in com.electricimp.blinkup">StaticIp</a> staticIp,
boolean legacyMode,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp directly without going through the wifi select interface.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDevice(android.app.Activity,java.lang.String,java.lang.String,com.electricimp.blinkup.Proxy,com.electricimp.blinkup.StaticIp,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> wpsPin,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="Proxy.html" title="class in com.electricimp.blinkup">Proxy</a> proxy,
<a href="StaticIp.html" title="class in com.electricimp.blinkup">StaticIp</a> staticIp,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp directly without going through the wifi select interface.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDevice(android.app.Activity,java.lang.String,java.lang.String,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> wpsPin,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp directly without going through the wifi select interface.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDevice(android.app.Activity,java.lang.String,java.lang.String,java.lang.String,boolean,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> ssid,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> password,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
boolean legacyMode,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp directly without going through the wifi select interface.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDevice(android.app.Activity,java.lang.String,java.lang.String,java.lang.String,com.electricimp.blinkup.Proxy,com.electricimp.blinkup.StaticIp,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> ssid,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> password,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="Proxy.html" title="class in com.electricimp.blinkup">Proxy</a> proxy,
<a href="StaticIp.html" title="class in com.electricimp.blinkup">StaticIp</a> staticIp,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp directly without going through the wifi select interface.</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDevice(android.app.Activity,java.lang.String,java.lang.String,java.lang.String,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDevice</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> ssid,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> password,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp directly without going through the wifi select interface.</div>
</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>void</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setupDeviceWithCustomApn(android.app.Activity,java.lang.String,com.electricimp.blinkup.Proxy,com.electricimp.blinkup.StaticIp,boolean,java.lang.String,com.electricimp.blinkup.ServerErrorHandler)" class="member-name-link">setupDeviceWithCustomApn</a><wbr>(<a href="http://d.android.com/reference/android/app/Activity.html" title="class or interface in android.app" class="external-link">Activity</a> activity,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apiKey,
<a href="Proxy.html" title="class in com.electricimp.blinkup">Proxy</a> proxy,
<a href="StaticIp.html" title="class in com.electricimp.blinkup">StaticIp</a> staticIp,
boolean legacyMode,
<a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a> apn,
<a href="ServerErrorHandler.html" title="interface in com.electricimp.blinkup">ServerErrorHandler</a> errorHandler)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">Show BlinkUp with Cellular custom APN.</div>
</div>
</div>
</div>
</div>
<div class="inherited-list">
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="http://d.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
<code><a href="http://d.android.com/reference/java/lang/Object.html#clone--" title="class or interface in java.lang" class="external-link">clone</a>, <a href="http://d.android.com/reference/java/lang/Object.html#equals-java.lang.Object-" title="class or interface in java.lang" class="external-link">equals</a>, <a href="http://d.android.com/reference/java/lang/Object.html#finalize--" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="http://d.android.com/reference/java/lang/Object.html#getClass--" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="http://d.android.com/reference/java/lang/Object.html#hashCode--" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="http://d.android.com/reference/java/lang/Object.html#notify--" title="class or interface in java.lang" class="external-link">notify</a>, <a href="http://d.android.com/reference/java/lang/Object.html#notifyAll--" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="http://d.android.com/reference/java/lang/Object.html#toString--" title="class or interface in java.lang" class="external-link">toString</a>, <a href="http://d.android.com/reference/java/lang/Object.html#wait--" title="class or interface in java.lang" class="external-link">wait</a>, <a href="http://d.android.com/reference/java/lang/Object.html#wait-long-" title="class or interface in java.lang" class="external-link">wait</a>, <a href="http://d.android.com/reference/java/lang/Object.html#wait-long-int-" title="class or interface in java.lang" class="external-link">wait</a></code></div>
</section>
</li>
</ul>
</section>
<section class="details">
<ul class="details-list">
<!-- ============ FIELD DETAIL =========== -->
<li>
<section class="field-details" id="field-detail">
<h2>Field Details</h2>
<ul class="member-list">
<li>
<section class="detail" id="drawableCountdown">
<h3>drawableCountdown</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">int</span> <span class="element-name">drawableCountdown</span></div>
<div class="block">Resource Id for the image on the count down page. Default is the Electric Imp logo.</div>
</section>
</li>
<li>
<section class="detail" id="BLINKUP_VERSION_STRING">
<h3>BLINKUP_VERSION_STRING</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">BLINKUP_VERSION_STRING</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.BLINKUP_VERSION_STRING">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="BLINKUP_VERSION_NUMBER">
<h3>BLINKUP_VERSION_NUMBER</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type">double</span> <span class="element-name">BLINKUP_VERSION_NUMBER</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.BLINKUP_VERSION_NUMBER">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_MODE">
<h3>FIELD_MODE</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_MODE</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_MODE">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="MODE_WIFI">
<h3>MODE_WIFI</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">MODE_WIFI</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.MODE_WIFI">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="MODE_WPS">
<h3>MODE_WPS</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">MODE_WPS</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.MODE_WPS">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="MODE_ETHERNET">
<h3>MODE_ETHERNET</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">MODE_ETHERNET</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.MODE_ETHERNET">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="MODE_CLEAR">
<h3>MODE_CLEAR</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">MODE_CLEAR</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.MODE_CLEAR">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_SSID">
<h3>FIELD_SSID</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_SSID</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_SSID">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_PASSWORD">
<h3>FIELD_PASSWORD</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_PASSWORD</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_PASSWORD">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_PIN">
<h3>FIELD_PIN</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_PIN</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_PIN">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_TOKEN">
<h3>FIELD_TOKEN</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_TOKEN</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_TOKEN">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_ERROR">
<h3>FIELD_ERROR</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_ERROR</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_ERROR">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_PORT">
<h3>FIELD_PORT</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_PORT</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_PORT">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_SERVER">
<h3>FIELD_SERVER</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_SERVER</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_SERVER">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_PROXY_USERNAME">
<h3>FIELD_PROXY_USERNAME</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_PROXY_USERNAME</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_PROXY_USERNAME">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_PROXY_PASSWORD">
<h3>FIELD_PROXY_PASSWORD</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_PROXY_PASSWORD</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_PROXY_PASSWORD">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_IP_ADDRESS">
<h3>FIELD_IP_ADDRESS</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_IP_ADDRESS</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_IP_ADDRESS">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_NETMASK">
<h3>FIELD_NETMASK</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_NETMASK</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_NETMASK">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_GATEWAY">
<h3>FIELD_GATEWAY</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_GATEWAY</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_GATEWAY">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_DNS_1">
<h3>FIELD_DNS_1</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_DNS_1</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_DNS_1">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="FIELD_DNS_2">
<h3>FIELD_DNS_2</h3>
<div class="member-signature"><span class="modifiers">public static final</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">FIELD_DNS_2</span></div>
<dl class="notes">
<dt>See Also:</dt>
<dd>
<ul class="see-list">
<li><a href="../../../constant-values.html#com.electricimp.blinkup.BlinkupController.FIELD_DNS_2">Constant Field Values</a></li>
</ul>
</dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="showLegacyMode">
<h3>showLegacyMode</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">showLegacyMode</span></div>
<div class="block">Show checkbox to enable legacy mode.
A few older Imp cards need this mode to BlinkUp the first time. Once
they're online (indicated by a green light) they'll be automatically
updated to the latest version of the imp OS and won't need Legacy
BlinkUp Mode again.</div>
</section>
</li>
<li>
<section class="detail" id="showPassword">
<h3>showPassword</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type">boolean</span> <span class="element-name">showPassword</span></div>
<div class="block">Show checkbox to show password.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdChooseWiFiNetwork">
<h3>stringIdChooseWiFiNetwork</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdChooseWiFiNetwork</span></div>
<div class="block">Resource Id for the custom string to choose wifi network.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdWpsInfo">
<h3>stringIdWpsInfo</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdWpsInfo</span></div>
<div class="block">Resource Id for the custom string for wps info.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdClearDeviceSettings">
<h3>stringIdClearDeviceSettings</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdClearDeviceSettings</span></div>
<div class="block">Resource Id for the custom string to clear device settings.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdClearWireless">
<h3>stringIdClearWireless</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdClearWireless</span></div>
<div class="block">Resource Id for the custom string for clear device button.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdSendBlinkUp">
<h3>stringIdSendBlinkUp</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdSendBlinkUp</span></div>
<div class="block">Resource Id for the custom string for the Send BlinkUp button.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdBlinkUpDesc">
<h3>stringIdBlinkUpDesc</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdBlinkUpDesc</span></div>
<div class="block">Resource Id for the custom string for the BlinkUp description.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdLegacyMode">
<h3>stringIdLegacyMode</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdLegacyMode</span></div>
<div class="block">Resource Id for the custom string for legacy mode.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdLegacyModeDesc">
<h3>stringIdLegacyModeDesc</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdLegacyModeDesc</span></div>
<div class="block">Resource Id for the custom string for legacy mode description.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdOk">
<h3>stringIdOk</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdOk</span></div>
<div class="block">Resource Id for the custom string for OK.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdNext">
<h3>stringIdNext</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdNext</span></div>
<div class="block">Resource Id for the custom string for next when using interstitial page.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdSsidHint">
<h3>stringIdSsidHint</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdSsidHint</span></div>
<div class="block">Resource Id for the custom string for SSID hint.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdPasswordHint">
<h3>stringIdPasswordHint</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdPasswordHint</span></div>
<div class="block">Resource Id for the custom string for password hint.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdRememberPassword">
<h3>stringIdRememberPassword</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdRememberPassword</span></div>
<div class="block">Resource Id for the custom string for remember password.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdShowPassword">
<h3>stringIdShowPassword</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdShowPassword</span></div>
<div class="block">Resource Id for the custom string for show password.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdWpsPinHint">
<h3>stringIdWpsPinHint</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdWpsPinHint</span></div>
<div class="block">Resource Id for the custom string for WPS pin hint.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdChangeNetwork">
<h3>stringIdChangeNetwork</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdChangeNetwork</span></div>
<div class="block">Resource Id for the custom string for change network.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdConnectUsingWps">
<h3>stringIdConnectUsingWps</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdConnectUsingWps</span></div>
<div class="block">Resource Id for the custom string for connect using WPS.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdCountdownDesc">
<h3>stringIdCountdownDesc</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdCountdownDesc</span></div>
<div class="block">Resource Id for the custom string for countdown description.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdLowFrameRateTitle">
<h3>stringIdLowFrameRateTitle</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdLowFrameRateTitle</span></div>
<div class="block">Resource Id for the custom string for title in low frame rate dialog.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdLowFrameRateDesc">
<h3>stringIdLowFrameRateDesc</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdLowFrameRateDesc</span></div>
<div class="block">Resource Id for the custom string for description in low frame rate dialog.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdLowFrameRateGoToSettings">
<h3>stringIdLowFrameRateGoToSettings</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdLowFrameRateGoToSettings</span></div>
<div class="block">Resource Id for the custom string for go to settings in low frame rate
dialog.</div>
</section>
</li>
<li>
<section class="detail" id="stringIdLowFrameRateProceedAnyway">
<h3>stringIdLowFrameRateProceedAnyway</h3>
<div class="member-signature"><span class="modifiers">public</span> <span class="return-type"><a href="http://d.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span> <span class="element-name">stringIdLowFrameRateProceedAnyway</span></div>