-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_product_5001.json
1125 lines (1125 loc) · 48.7 KB
/
example_product_5001.json
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
{
"jsonapi": {
"version": "1.0"
},
"meta": {
"supported_formats": [
"json",
"yaml",
"csv"
],
"pololu_customer_id": "0J4"
},
"links": {
"self": "https://www.pololu.com/api/v2/product/5001.json"
},
"data": {
"type": "product",
"id": "5001",
"attributes": {
"modification_time": "2023-11-21T13:39:12.000-08:00",
"on_website_date": "2023-05-24",
"name": "3pi+ 2040 Robot - Standard Edition (30:1 MP Motors), Assembled",
"status": "Active and Preferred",
"rohs3_compliant": "yes",
"short_description": "<p>The Pololu 3pi+ 2040 robot is a palm-sized, high-performance mobile platform based on the Raspberry Pi RP2040 MCU. Its many features include dual quadrature encoders for closed-loop speed or position control, line sensors, front bump sensors, a full IMU (3-axis accelerometer, magnetometer, and gyro), six RGB LEDs, and a graphical OLED display. This <strong>Standard Edition</strong> version is assembled with 30:1 MP 6V Micro Metal Gearmotors, which offer a good combination of speed and controllability.</p>\n",
"web_page": "<h2>Overview</h2>\n<p>The 3pi+ 2040 is a versatile, high-performance, user-programmable robot that measures just 9.7 cm (3.8″) in diameter. At its heart is a Raspberry Pi RP2040 microcontroller (like the one on the Raspberry Pi Pico), a 32-bit dual-core Arm Cortex-M0+ processor running at 125 MHz, which can be programmed with C, C++, Arduino, or Python. The 3pi+ 2040 has 16 MB (128 Mbit) of flash memory that ships preloaded with a MicroPython interpreter, so you can get started right away by plugging into its USB C port and editing the included example Python programs. For advanced users who want to customize or enhance their robots with additional peripherals, the robot’s power rails, power system controls, and microcontroller’s I/O lines can be accessed via several 0.1″-pitch expansion ports.</p>\n<table class=\"side_by_side_pics\">\n\t<tr>\n\t\t<td><table class=\"picture_with_caption right\"><tr><td style=\"max-width: 220px\"><a href=\"/picture/0J12006.1200.jpg?6393c76c25b38cfddb9bce3ac10428fe\" class=\"noscript-fallback\"><img alt=\"\" class=\"zoomable\" data-gallery-pictures=\"[{"id":"0J12006","caption":"\\u003cp\\u003e3pi+ 2040 Robot, front view.\\u003c/p\\u003e","url_tiny":"/picture/0J12006.98x98.jpg?6393c76c25b38cfddb9bce3ac10428fe","url_medium":"/picture/0J12006.600x480.jpg?6393c76c25b38cfddb9bce3ac10428fe","url_full":"/picture/0J12006.1200.jpg?6393c76c25b38cfddb9bce3ac10428fe","longest_side":1200}]\" data-picture-id=\"0J12006\" data-picture-longest_side=\"1200\" src=\"/picture/0J12006.220.jpg?6393c76c25b38cfddb9bce3ac10428fe\" /></a></td></tr><tr><th style=\"max-width: 220px\"><p>3pi+ 2040 Robot, front view.</p></th></tr></table></td>\n\t\t<td><table class=\"picture_with_caption right\"><tr><td style=\"max-width: 220px\"><a href=\"/picture/0J12007.1200.jpg?c4b69707ad345a134bbe042997da7ecc\" class=\"noscript-fallback\"><img alt=\"\" class=\"zoomable\" data-gallery-pictures=\"[{"id":"0J12007","caption":"\\u003cp\\u003e3pi+ 2040 Robot, side view.\\u003c/p\\u003e","url_tiny":"/picture/0J12007.98x98.jpg?c4b69707ad345a134bbe042997da7ecc","url_medium":"/picture/0J12007.600x480.jpg?c4b69707ad345a134bbe042997da7ecc","url_full":"/picture/0J12007.1200.jpg?c4b69707ad345a134bbe042997da7ecc","longest_side":1200}]\" data-picture-id=\"0J12007\" data-picture-longest_side=\"1200\" src=\"/picture/0J12007.220.jpg?c4b69707ad345a134bbe042997da7ecc\" /></a></td></tr><tr><th style=\"max-width: 220px\"><p>3pi+ 2040 Robot, side view.</p></th></tr></table></td>\n\t\t<td><table class=\"picture_with_caption right\"><tr><td style=\"max-width: 220px\"><a href=\"/picture/0J12008.1200.jpg?e92efa8b917af15352a391274b2d8177\" class=\"noscript-fallback\"><img alt=\"\" class=\"zoomable\" data-gallery-pictures=\"[{"id":"0J12008","caption":"\\u003cp\\u003e3pi+ 2040 Robot, rear view.\\u003c/p\\u003e","url_tiny":"/picture/0J12008.98x98.jpg?e92efa8b917af15352a391274b2d8177","url_medium":"/picture/0J12008.600x480.jpg?e92efa8b917af15352a391274b2d8177","url_full":"/picture/0J12008.1200.jpg?e92efa8b917af15352a391274b2d8177","longest_side":1200}]\" data-picture-id=\"0J12008\" data-picture-longest_side=\"1200\" src=\"/picture/0J12008.220.jpg?e92efa8b917af15352a391274b2d8177\" /></a></td></tr><tr><th style=\"max-width: 220px\"><p>3pi+ 2040 Robot, rear view.</p></th></tr></table></td>\n\t</tr>\n</table>\n<p>The 3pi+ (or 3𝜋+) 2040 features two H-bridge motor drivers and a variety of integrated sensors, including a pair of quadrature encoders for closed-loop motor control, a complete inertial measurement unit (3-axis accelerometer, gyro, and magnetometer), five downward-facing reflectance sensors for line-following or edge-detection, and left and right bump sensors along the front face of the robot. Three on-board pushbuttons offer a convenient interface for user input, and a 128×64 graphical OLED display, buzzer, and six RGB LEDs allow the robot to provide feedback.</p>\n<table class=\"picture_with_caption center wide\"><tr><td><a href=\"/picture/0J12017.1200.jpg?d1c609085b6b7fe8ca0e44a8ea946d2e\" class=\"noscript-fallback\"><img alt=\"\" class=\"wide zoomable\" data-gallery-pictures=\"[{"id":"0J12017","caption":"\\u003cp\\u003e3pi+ 2040 Robot features, top view.\\u003c/p\\u003e","url_tiny":"/picture/0J12017.98x98.jpg?d1c609085b6b7fe8ca0e44a8ea946d2e","url_medium":"/picture/0J12017.600x480.jpg?d1c609085b6b7fe8ca0e44a8ea946d2e","url_full":"/picture/0J12017.1200.jpg?d1c609085b6b7fe8ca0e44a8ea946d2e","longest_side":1200}]\" data-picture-id=\"0J12017\" data-picture-longest_side=\"1200\" src=\"/picture/0J12017.700.jpg?d1c609085b6b7fe8ca0e44a8ea946d2e\" /></a></td><p></tr></table>\n<table class=\"picture_with_caption center wide\"><tr><td><a href=\"/picture/0J12018.1200.jpg?40bb0a53e13fc25df4b5bda1dc77d390\" class=\"noscript-fallback\"><img alt=\"\" class=\"wide zoomable\" data-gallery-pictures=\"[{"id":"0J12018","caption":"\\u003cp\\u003e3pi+ 2040 Robot features, bottom view.\\u003c/p\\u003e","url_tiny":"/picture/0J12018.98x98.jpg?40bb0a53e13fc25df4b5bda1dc77d390","url_medium":"/picture/0J12018.600x480.jpg?40bb0a53e13fc25df4b5bda1dc77d390","url_full":"/picture/0J12018.1200.jpg?40bb0a53e13fc25df4b5bda1dc77d390","longest_side":1200}]\" data-picture-id=\"0J12018\" data-picture-longest_side=\"1200\" src=\"/picture/0J12018.700.jpg?40bb0a53e13fc25df4b5bda1dc77d390\" /></a></td></tr></table></p>\n<p>The robot also features a unique power system that runs the motors at a constant 8 V independent of the battery charge level, so the speed of the motors does not vary with the battery voltage.</p>\n<p>The 3pi+ 2040 robot is available as a kit or fully assembled:</p>\n<table style=\"line-height:100%; text-align: right;\" class=\"reference\">\n\t<tr style=\"line-height: 150%;\">\n\t\t<th>3pi+ 2040 Version</th>\n\t\t<th>Products</th>\n\t\t<th>Micro Metal Gearmotor</th>\n\t\t<th>Top Speed</th>\n\t\t<th>Comments</th>\n\t</tr>\n\t<tr>\n\t\t<th>Standard Edition</th>\n\t\t<td style=\"text-align:center;\"><a href=\"https://www.pololu.com/product/5001\">assembled</a> or <a href=\"https://www.pololu.com/product/5004\">kit</a></td>\n\t\t<td style=\"text-align:center;\"><a href=\"https://www.pololu.com/product/2378\">30:1 MP 6V</a></td>\n\t\t<td>1.5 m/s</td>\n\t\t<td style=\"text-align:left;\">good combination of speed and controllability</td>\n\t</tr>\n\t<tr>\n\t\t<th>Turtle Edition</th>\n\t\t<td style=\"text-align:center;\"><a href=\"https://www.pololu.com/product/5002\">assembled</a> or <a href=\"https://www.pololu.com/product/5005\">kit</a></td>\n\t\t<td style=\"text-align:center;\"><a href=\"https://www.pololu.com/product/2209\">75:1 LP 6V</a></td>\n\t\t<td>0.4 m/s</td>\n\t\t<td style=\"text-align:left;\">longest battery life, easiest to control, good for swarm robots or introductory robotics courses</td>\n\t</tr>\n\t<tr>\n\t\t<th>Hyper Edition</th>\n\t\t<td style=\"text-align:center;\"><a href=\"https://www.pololu.com/product/5000\">assembled</a> or <a href=\"https://www.pololu.com/product/5003\">kit</a></td>\n\t\t<td style=\"text-align:center;\"><a href=\"https://www.pololu.com/product/4787\">15:1 HPCB 6V</a></td>\n\t\t<td>~4 m/s</td>\n\t\t<td style=\"text-align:left;\"><strong>very fast and difficult to control, easy to damage</strong>; only recommended for advanced users</td>\n\t</tr>\n</table>\n<p>For those who would prefer to use <a href=\"https://www.pololu.com/category/141/micro-metal-gearmotors-with-extended-motor-shafts\">different motors</a> than these versions above, the <a href=\"https://www.pololu.com/product/3725\">3pi+ chassis</a> and <a href=\"https://www.pololu.com/product/5006\">3pi+ 2040 control board</a> are available separately and can be combined with a pair of motors to make a custom kit.</p>\n<h3>What else you will need</h3>\n<ul>\n\t<li>four <a href=\"https://www.pololu.com/product/1002\">AAA batteries</a>: the 3pi+ robot works with both alkaline and NiMH batteries, though we recommend rechargeable NiMH cells</li>\n\t<li>a USB C cable to connect the robot to your computer for programming and debugging</li>\n</ul>\n<h3>Assembling the kit version</h3>\n<p>The following video shows the steps to assemble a different version of the 3pi+ robot (the <a href=\"https://www.pololu.com/category/280/3pi-plus-32u4-oled-robot\">3pi+ 32U4 OLED robot</a>), but these steps generally remain the same for the 3pi+ 2040:</p>\n<div class=\"center\"><div class=\"video video_16_9\"><div>\n<iframe id=\"ytplayer\" type=\"text/html\" src=\"https://www.youtube.com/embed/D6UmjlBW8Ns?fs-1&rel=0&wmode=transparent\" frameborder=\"0\" allowfullscreen=\"1\"></iframe>\n</div></div></div><p><br></p>\n<h2>\nDetails for item #5001\n</h2>\n<p>This product is the assembled <strong>Standard Edition</strong> of the 3pi+ 2040 Robot. It features 30:1 MP 6V Micro Metal Gearmotors, which offer a good combination of speed and controllability.</p>\n<table class=\"side_by_side_pics\">\n\t<tr>\n\t\t<td><table class=\"picture_with_caption center\"><tr><td><a href=\"/picture/0J12003.1200.jpg?afe1131c6d71cc10bc34d0244f259d84\" class=\"noscript-fallback\"><img alt=\"\" class=\"zoomable\" data-gallery-pictures=\"[{"id":"0J12003","caption":"\\u003cp\\u003e3pi+ 2040 Robot.\\u003c/p\\u003e","url_tiny":"/picture/0J12003.98x98.jpg?afe1131c6d71cc10bc34d0244f259d84","url_medium":"/picture/0J12003.600x480.jpg?afe1131c6d71cc10bc34d0244f259d84","url_full":"/picture/0J12003.1200.jpg?afe1131c6d71cc10bc34d0244f259d84","longest_side":1200}]\" data-picture-id=\"0J12003\" data-picture-longest_side=\"1200\" src=\"/picture/0J12003.300.jpg?afe1131c6d71cc10bc34d0244f259d84\" /></a></td></tr></table></td>\n\t\t<td><table class=\"picture_with_caption center\"><tr><td><a href=\"/picture/0J12004.1200.jpg?07afa5011cbcaec1e3345563bcbf328a\" class=\"noscript-fallback\"><img alt=\"\" class=\"zoomable\" data-gallery-pictures=\"[{"id":"0J12004","caption":"\\u003cp\\u003e3pi+ 2040 Robot, rear view.\\u003c/p\\u003e","url_tiny":"/picture/0J12004.98x98.jpg?07afa5011cbcaec1e3345563bcbf328a","url_medium":"/picture/0J12004.600x480.jpg?07afa5011cbcaec1e3345563bcbf328a","url_full":"/picture/0J12004.1200.jpg?07afa5011cbcaec1e3345563bcbf328a","longest_side":1200}]\" data-picture-id=\"0J12004\" data-picture-longest_side=\"1200\" src=\"/picture/0J12004.300.jpg?07afa5011cbcaec1e3345563bcbf328a\" /></a></td></tr></table></td>\n\t</tr>\n</table>\n<p class=\"note\">A <a href=\"https://www.pololu.com/product/5004\">kit version</a> of this robot is also available.</p>\n\n",
"discontinued": false,
"discontinued_description": "",
"unavailable_notes": "",
"description_for_customs": "",
"country_of_origin": "USA",
"for_sale": true,
"for_sale_with_coupon_only": false,
"price_description": "",
"weight_ounces": "5.4",
"size_1_inches": "4.6",
"size_2_inches": "4.2",
"size_3_inches": "2.2",
"free_shipping_usa": true,
"free_add_on_shipping_usa": false,
"suggested_schedule_b_code": "8542.31.0000",
"suggested_hs_code": "854231",
"product_family_id": "0J5001",
"url": "https://www.pololu.com/product/5001",
"on_sale_through": null,
"prices": [
{
"quantity": 1,
"regular_price": 159.95
},
{
"quantity": 5,
"regular_price": 147.15
}
],
"stock_available": 97,
"non_stock": false,
"bar_codes": [
{
"bar_code": "!a\"X9",
"start_selling_year": null,
"stop_selling_year": null
}
],
"maximum_order": 397
},
"relationships": {
"brand": {
"data": {
"type": "brand",
"id": "0J1"
}
},
"main_picture": {
"data": {
"type": "picture",
"id": "0J12003"
}
},
"other_pictures": {
"data": [
{
"type": "picture",
"id": "0J12003"
},
{
"type": "picture",
"id": "0J12004"
},
{
"type": "picture",
"id": "0J12005"
},
{
"type": "picture",
"id": "0J12019"
},
{
"type": "picture",
"id": "0J12006"
},
{
"type": "picture",
"id": "0J12007"
},
{
"type": "picture",
"id": "0J12008"
},
{
"type": "picture",
"id": "0J12009"
},
{
"type": "picture",
"id": "0J12010"
},
{
"type": "picture",
"id": "0J12011"
},
{
"type": "picture",
"id": "0J12012"
},
{
"type": "picture",
"id": "0J12013"
},
{
"type": "picture",
"id": "0J12014"
},
{
"type": "picture",
"id": "0J12015"
},
{
"type": "picture",
"id": "0J12016"
},
{
"type": "picture",
"id": "0J12020"
},
{
"type": "picture",
"id": "0J12021"
}
]
},
"resources": {
"data": [
{
"type": "resource",
"id": "29P0J86"
},
{
"type": "resource",
"id": "18P0J1941"
},
{
"type": "resource",
"id": "18P0J1940"
},
{
"type": "resource",
"id": "18P0J1948"
},
{
"type": "resource",
"id": "18P0J1945"
},
{
"type": "resource",
"id": "18P0J1949"
},
{
"type": "resource",
"id": "18P0J1794"
},
{
"type": "resource",
"id": "18P0J1946"
},
{
"type": "resource",
"id": "18P0J1950"
},
{
"type": "resource",
"id": "18P0J1947"
},
{
"type": "resource",
"id": "32P0J699"
},
{
"type": "resource",
"id": "32P0J705"
},
{
"type": "resource",
"id": "110P0J942"
},
{
"type": "resource",
"id": "110P0J937"
}
]
},
"main_category": {
"data": {
"type": "category",
"id": "300"
}
},
"categories": {
"data": [
{
"type": "category",
"id": "300"
},
{
"type": "category",
"id": "4"
}
]
},
"related_categories": {
"data": [
{
"type": "category",
"id": "300"
},
{
"type": "category",
"id": "4"
},
{
"type": "category",
"id": "280"
},
{
"type": "category",
"id": "141"
},
{
"type": "category",
"id": "189"
},
{
"type": "category",
"id": "19"
},
{
"type": "category",
"id": "308"
}
]
},
"related_products": {
"data": [
{
"type": "product",
"id": "5002"
},
{
"type": "product",
"id": "5000"
},
{
"type": "product",
"id": "5004"
},
{
"type": "product",
"id": "5005"
},
{
"type": "product",
"id": "5003"
},
{
"type": "product",
"id": "1002"
},
{
"type": "product",
"id": "5006"
},
{
"type": "product",
"id": "3725"
},
{
"type": "product",
"id": "1088"
},
{
"type": "product",
"id": "1087"
},
{
"type": "product",
"id": "3407"
},
{
"type": "product",
"id": "957"
},
{
"type": "product",
"id": "3760"
},
{
"type": "product",
"id": "2378"
},
{
"type": "product",
"id": "2209"
},
{
"type": "product",
"id": "4787"
}
]
},
"specifications": {
"data": [
{
"type": "specification",
"id": "0J25177"
},
{
"type": "specification",
"id": "0J25178"
},
{
"type": "specification",
"id": "0J25188"
},
{
"type": "specification",
"id": "0J25192"
},
{
"type": "specification",
"id": "0J25191"
},
{
"type": "specification",
"id": "0J26217"
},
{
"type": "specification",
"id": "0J25176"
},
{
"type": "specification",
"id": "0J25175"
},
{
"type": "specification",
"id": "0J25179"
},
{
"type": "specification",
"id": "0J25180"
}
]
}
}
},
"included": [
{
"links": {
"self": "https://www.pololu.com/api/v2/brand/0J1.json"
},
"type": "brand",
"id": "0J1",
"attributes": {
"name": "Pololu",
"url": "https://www.pololu.com/brands/pololu"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12003.json"
},
"type": "picture",
"id": "0J12003",
"attributes": {
"url": "/picture/0J12003.1200.jpg?afe1131c6d71cc10bc34d0244f259d84",
"caption": "3pi+ 2040 Robot.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12004.json"
},
"type": "picture",
"id": "0J12004",
"attributes": {
"url": "/picture/0J12004.1200.jpg?07afa5011cbcaec1e3345563bcbf328a",
"caption": "3pi+ 2040 Robot, rear view.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12005.json"
},
"type": "picture",
"id": "0J12005",
"attributes": {
"url": "/picture/0J12005.1200.jpg?eed9015770f5764d7c9e6ae1684a0609",
"caption": "3pi+ 2040 Robot fits in the palm of a hand.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12019.json"
},
"type": "picture",
"id": "0J12019",
"attributes": {
"url": "/picture/0J12019.1200.jpg?cab195d37b5536136110cf943d5e673d",
"caption": "3pi+ 2040 Robot features.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12006.json"
},
"type": "picture",
"id": "0J12006",
"attributes": {
"url": "/picture/0J12006.1200.jpg?6393c76c25b38cfddb9bce3ac10428fe",
"caption": "3pi+ 2040 Robot, front view.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12007.json"
},
"type": "picture",
"id": "0J12007",
"attributes": {
"url": "/picture/0J12007.1200.jpg?c4b69707ad345a134bbe042997da7ecc",
"caption": "3pi+ 2040 Robot, side view.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12008.json"
},
"type": "picture",
"id": "0J12008",
"attributes": {
"url": "/picture/0J12008.1200.jpg?e92efa8b917af15352a391274b2d8177",
"caption": "3pi+ 2040 Robot, rear view.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12009.json"
},
"type": "picture",
"id": "0J12009",
"attributes": {
"url": "/picture/0J12009.1200.jpg?cf3eba548f3c28c351e15a918ca9211a",
"caption": "3pi+ 2040 Robot, top view.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12010.json"
},
"type": "picture",
"id": "0J12010",
"attributes": {
"url": "/picture/0J12010.1200.jpg?fb7db82edc7f035af37c12091676ff60",
"caption": "3pi+ 2040 Robot, top view with OLED display removed.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12011.json"
},
"type": "picture",
"id": "0J12011",
"attributes": {
"url": "/picture/0J12011.1200.jpg?b73c369bba6f54581f50f19cb8361d18",
"caption": "3pi+ 2040 Robot, bottom view.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12012.json"
},
"type": "picture",
"id": "0J12012",
"attributes": {
"url": "/picture/0J12012.1200.jpg?01aa1a884f3176ec125b63e3513dcecb",
"caption": "The 3pi+ 2040 Robot is powered by four AAA batteries (not included).",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12013.json"
},
"type": "picture",
"id": "0J12013",
"attributes": {
"url": "/picture/0J12013.1200.jpg?07d5ad8b5f9fc65569759bad0b080281",
"caption": "3pi+ 2040 Robot, bottom view with battery compartment covers removed.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12014.json"
},
"type": "picture",
"id": "0J12014",
"attributes": {
"url": "/picture/0J12014.1200.jpg?fb4a40a138f61aaf525e149cdc2613c7",
"caption": "3pi+ 2040 Robot, bottom view.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12015.json"
},
"type": "picture",
"id": "0J12015",
"attributes": {
"url": "/picture/0J12015.1200.jpg?a36c279dd50e155efee7f0f13dbe4e46",
"caption": "3pi+ 2040 Robot, bottom view with batteries installed (batteries not included).",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12016.json"
},
"type": "picture",
"id": "0J12016",
"attributes": {
"url": "/picture/0J12016.1200.jpg?365c177adb123727a2c37a9d6912c821",
"caption": "3pi+ 2040 Robot, bottom view showing the insides of the battery compartments.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12020.json"
},
"type": "picture",
"id": "0J12020",
"attributes": {
"url": "/picture/0J12020.1200.jpg?92432387f54a3db7a07408489c8e6f5d",
"caption": "3pi+ 2040 Control Board pinout and peripherals.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/picture/0J12021.json"
},
"type": "picture",
"id": "0J12021",
"attributes": {
"url": "/picture/0J12021.1200.jpg?e1ce9b6745a681a9e97781951cba89fb",
"caption": "3pi+ 2040 Control Board power distribution and control.",
"has_watermark": false
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/29P0J86.json"
},
"type": "resource",
"id": "29P0J86",
"attributes": {
"name": "Pololu 3pi+ 2040 User’s Guide",
"url": "/docs/0J86",
"download_url": null,
"description": "User’s manual for the Pololu 3pi+ 2040 robot."
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/18P0J1941.json"
},
"type": "resource",
"id": "18P0J1941",
"attributes": {
"name": "Pinout and power distribution diagrams of the 3pi+ 2040 Control Board",
"url": "/file/0J1941/3pi-2040-control-board-pinout.pdf",
"download_url": "/file/0J1941/3pi-2040-control-board-pinout.pdf",
"description": ""
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/18P0J1940.json"
},
"type": "resource",
"id": "18P0J1940",
"attributes": {
"name": "Schematic diagram of the 3pi+ 2040 Control Board",
"url": "/file/0J1940/3pi-2040-control-board-schematic.pdf",
"download_url": "/file/0J1940/3pi-2040-control-board-schematic.pdf",
"description": ""
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/18P0J1948.json"
},
"type": "resource",
"id": "18P0J1948",
"attributes": {
"name": "Dimension diagram of the 3pi+ 2040 Robot",
"url": "/file/0J1948/3pi-2040-robot-dimensions.pdf",
"download_url": "/file/0J1948/3pi-2040-robot-dimensions.pdf",
"description": ""
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/18P0J1945.json"
},
"type": "resource",
"id": "18P0J1945",
"attributes": {
"name": "Dimension diagram of the 3pi+ 2040 Control Board",
"url": "/file/0J1945/3pi-2040-control-board-dimensions.pdf",
"download_url": "/file/0J1945/3pi-2040-control-board-dimensions.pdf",
"description": ""
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/18P0J1949.json"
},
"type": "resource",
"id": "18P0J1949",
"attributes": {
"name": "3D models of the 3pi+ 2040 Robot",
"url": "/file/0J1949/3pi-2040-robot-assembled.zip",
"download_url": "/file/0J1949/3pi-2040-robot-assembled.zip",
"description": "This file contains 3D models (in the STEP file format) of the 3pi+ 2040 Robot. These models use a simplified model of the control electronics to reduce the file size. A more detailed model of the <a href=\"/file/0J1946/3pi-2040-control-board.step\">3pi+ 2040 Control Board</a> (27MB step) is available separately."
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/18P0J1794.json"
},
"type": "resource",
"id": "18P0J1794",
"attributes": {
"name": "3D models of the 3pi+ Chassis Kit",
"url": "/file/0J1794/3pi-plus-chassis-kit.zip",
"download_url": "/file/0J1794/3pi-plus-chassis-kit.zip",
"description": "This file contains 3D models (in the STEP file format) of the 3pi+ Chassis Kit. Note that the models include <a href=\"cat60\">micro metal gearmotors</a> that are sold separately from the chassis."
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/18P0J1946.json"
},
"type": "resource",
"id": "18P0J1946",
"attributes": {
"name": "3D model of the 3pi+ 2040 Control Board",
"url": "/file/0J1946/3pi-2040-control-board.step",
"download_url": "/file/0J1946/3pi-2040-control-board.step",
"description": ""
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/18P0J1950.json"
},
"type": "resource",
"id": "18P0J1950",
"attributes": {
"name": "Front, top, and side views of the 3pi+ 2040 Robot",
"url": "/file/0J1950/3pi-2040-robot-assembled-dxf.zip",
"download_url": "/file/0J1950/3pi-2040-robot-assembled-dxf.zip",
"description": "These DXF drawings make it possible to get various dimension measurements of the 3pi+ 2040 Robot."
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/18P0J1947.json"
},
"type": "resource",
"id": "18P0J1947",
"attributes": {
"name": "Drill guide for the 3pi+ 2040 Control Board",
"url": "/file/0J1947/3pi04a-drill.dxf",
"download_url": "/file/0J1947/3pi04a-drill.dxf",
"description": "This DXF drawing shows the locations of all of the board’s holes."
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/32P0J699.json"
},
"type": "resource",
"id": "32P0J699",
"attributes": {
"name": "3pi+ 2040 Robot Libraries and Example Code",
"url": "https://github.com/pololu/pololu-3pi-2040-robot",
"download_url": null,
"description": "This repository contains libraries and example code for the Pololu 3pi+ 2040 Robot in MicroPython and C."
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/32P0J705.json"
},
"type": "resource",
"id": "32P0J705",
"attributes": {
"name": "Pololu3piPlus2040 Arduino library by Adam Green",
"url": "https://github.com/adamgreen/pololu-3pi-plus-2040-arduino-library",
"download_url": null,
"description": "A full-featured Arduino library for the Pololu 3pi+ 2040 Robot developed by customer Adam Green."
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/110P0J942.json"
},
"type": "resource",
"id": "110P0J942",
"attributes": {
"name": "3pi+ 2040 Robot full release with additional motor options",
"url": "/blog/942/3pi-plus-2040-robot-full-release-with-additional-motor-options",
"download_url": null,
"description": "We have transitioned from our initial early-adopter release to a full release of the 3pi+ 2040 Robot family! With the full release, we also have..."
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/resource/110P0J937.json"
},
"type": "resource",
"id": "110P0J937",
"attributes": {
"name": "Introducing the 3pi+ 2040 Robot",
"url": "/blog/937/introducing-the-3pi-plus-2040-robot",
"download_url": null,
"description": "I am super excited to introduce our newest robot, the 3pi+ 2040. This robot combines the 3pi+ chassis, which we initially released in late 2020,..."
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/category/300.json"
},
"type": "category",
"id": "300",
"attributes": {
"name": "3pi+ 2040 Robot"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/category/4.json"
},
"type": "category",
"id": "4",
"attributes": {
"name": "Robot Kits without Soldering"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/category/280.json"
},
"type": "category",
"id": "280",
"attributes": {
"name": "3pi+ 32U4 OLED Robot"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/category/141.json"
},
"type": "category",
"id": "141",
"attributes": {
"name": "Micro Metal Gearmotors with Extended Motor Shafts"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/category/189.json"
},
"type": "category",
"id": "189",
"attributes": {
"name": "Proximity Sensors and Range Finders"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/category/19.json"
},
"type": "category",
"id": "19",
"attributes": {
"name": "Connectors"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/category/308.json"
},
"type": "category",
"id": "308",
"attributes": {
"name": "Zumo 2040 Robot"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/5002.json"
},
"type": "product",
"id": "5002",
"attributes": {
"name": "3pi+ 2040 Robot - Turtle Edition (75:1 LP Motors), Assembled"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/5000.json"
},
"type": "product",
"id": "5000",
"attributes": {
"name": "3pi+ 2040 Robot - Hyper Edition (15:1 HPCB Motors), Assembled"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/5004.json"
},
"type": "product",
"id": "5004",
"attributes": {
"name": "3pi+ 2040 Robot Kit with 30:1 MP Motors (Standard Edition Kit)"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/5005.json"
},
"type": "product",
"id": "5005",
"attributes": {
"name": "3pi+ 2040 Robot Kit with 75:1 LP Motors (Turtle Edition Kit)"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/5003.json"
},
"type": "product",
"id": "5003",
"attributes": {
"name": "3pi+ 2040 Robot Kit with 15:1 HPCB Motors (Hyper Edition Kit)"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/1002.json"
},
"type": "product",
"id": "1002",
"attributes": {
"name": "Rechargeable NiMH AAA Battery: 1.2 V, 900 mAh, 1 cell"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/5006.json"
},
"type": "product",
"id": "5006",
"attributes": {
"name": "3pi+ 2040 Control Board"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/3725.json"
},
"type": "product",
"id": "3725",
"attributes": {
"name": "3pi+ Chassis Kit (No Motors or Electronics)"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/1088.json"
},
"type": "product",
"id": "1088",
"attributes": {
"name": "Pololu Wheel 32×7mm Pair - White"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/1087.json"
},
"type": "product",
"id": "1087",
"attributes": {
"name": "Pololu Wheel 32×7mm Pair - Black"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/3407.json"
},
"type": "product",
"id": "3407",
"attributes": {
"name": "Silicone Tire Pair for 32×7mm Pololu Wheels"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/957.json"
},
"type": "product",
"id": "957",
"attributes": {
"name": "Replacement 3pi Ball Caster with 1/2″ Plastic Ball"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/3760.json"
},
"type": "product",
"id": "3760",
"attributes": {
"name": "Graphical OLED Display: 128x64, 1.3\", White, SPI"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/2378.json"
},
"type": "product",
"id": "2378",
"attributes": {
"name": "30:1 Micro Metal Gearmotor MP 6V with Extended Motor Shaft"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/2209.json"
},
"type": "product",
"id": "2209",
"attributes": {
"name": "75:1 Micro Metal Gearmotor LP 6V with Extended Motor Shaft"
}
},
{
"links": {
"self": "https://www.pololu.com/api/v2/product/4787.json"
},
"type": "product",
"id": "4787",
"attributes": {