-
Notifications
You must be signed in to change notification settings - Fork 3
/
development.html
1007 lines (721 loc) · 31.6 KB
/
development.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
---
layout: default
title: Development
index: 2
---
<section class="title big">
<div class="inner">
<p>We gave our idea to the world. Hoping to inspire the industry to open up their electronics </p>
<h1>Companies that are currently contributing to a modular future</h1>
</div>
</section>
<section class="concepts">
<div class="inner">
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/phone_google.png">
<span>Project Ara</span>
<div>
<img src="/assets/uploads/2015/09/projectara-700x400.jpg">
<p><b>PROJECT ARA</b>
<br>
<br> With Project Ara, Google is trying to find a way for you to, in the future, use the hardware of your phone the same way you today use apps for your smartphone. You change apps on the go. You buy the apps that you need. For hardware, this means allowing you to enhance your smartphone experience by offering a structural base of a phone. This frame contains all the phone’s basics, including radios, processor, and a small battery. You get to enhance the phone with customizable, hot-swappable modules that allow you to customize the camera, speakers, batteries and more that insert into Ara’s six flexible slots for easy swapping. These modules can be inserted and removed at any time, even while the device is powered on. Consumers will be able to configure all the enhancements they want for their own custom device, and buy additional modules through the Ara open marketplace.
<br>
<br> Current Status: Developer Edition Shipping Fall 2016.
<br>
<br>
<a href="http://www.projectara.com" target="_blank">For more info go to the Project Ara website.</a></p>
</div>
</div>
</div>
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/phone_zte.png">
<span>ZTE Eco-Mobius</span>
<div>
<img src="/assets/uploads/2015/09/zte-700x400.jpg">
<p><b>ZTE ECO-MOBIUS</b>
<br>
<br> Eco-Mobius is ZTE’s version of a modular mobile phone. A design concept to show the designers creative spirit while also pointing out the direction of product evolution and help shape the future. It’s aim is to be easily upgradeable at a
low cost while also reducing waste. It’s a highly customizable phone that lets the user decide what their phone should be.
<br>
<br> Current Status: Concept.
<br>
<br>
<a href="http://wwwen.zte.com.cn/endata/magazine/mobileworld/2013/5/articles/201310/t20131029_411072.html" target="_blank">For more info go to ZTE’s article on the phone.</a>
</p>
</div>
</div>
</div>
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/phone_xiaomi.png">
<span>Xiaomi Magic Cube</span>
<div>
<img src="/assets/uploads/2015/07/Xiaomi-magicCube1.jpg">
<p><b>XIAOMI MAGIC CUBE</b>
<br>
<br> Xiaomi, or Mi, Magic Cube is a concept presented by the then founder and CEO of Xiaomi Lei Jun on his official Weibo channel. The image shows modules for battery, main board and camera. Where the screen is fixed on the main board. Though
the image since publication has been retracted. We can only assume that Xiaomi, being one of the worlds largest mobile phone makers, are closely monitoring the modular revolution and getting a product ready.
<br>
<br> Current Status: Concept.
<br>
<br>
<a href="http://www.mi.com/en/" target="_blank">Visit Xaiomi’s website.</a></p>
</div>
</div>
</div>
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/phone_puzzlephone.png">
<span>PuzzlePhone</span>
<div>
<img src="/assets/uploads/2015/09/puzzlephone-700x400.jpg">
<p><b>PUZZLEPHONE</b>
<br>
<br> Puzzle Phone is a modular mobile phone designed in Finland and engineered in Europe. The idea behind the phone is to have a reliable device that is easy to upgrade and repair. It is equipped with Open Source code for reliable auditing and community support. Three easily replaceable and customizable modules allow upgrades and on-the-fly, easy repairs. The tree modules are: The Spine - the high-res display with core elements that will be available in a variety of sizes and materials. The Brain - containing the critical electronics such as the CPU, GPU, RAM, memory, and cameras. And The Heart - holding the battery and a secondary set of electronics that can be developed according to user needs.
<br>
<br> Current Status: In development.
<br>
<br>
<a href="http://www.puzzlephone.com" target="_blank">For more info visit the PuzzlePhone website.</a></p>
</div>
</div>
</div>
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/phone_fonkraft.png">
<span>Fonkraft</span>
<div>
<img src="/assets/uploads/2015/09/fonkraft-700x400.jpg">
<p><b>FONKRAFT</b>
<br>
<br> Fonekraft was a concept for a modular mobile phone from Austria. It all started when the founders both saw the original Phonebloks video and decided that they had to take part in the modular revolution. The plan is to release three starter versions of the phone. The basic model Pilot, budget friendly with two batteries for a lengthy battery time. Resolution, a camera and storage heavy version for all Instagramers out there. And, HiFi for audiophiles. It was succesfully funded on Indiegogo in 2014. However, the website and Indiegogo page have both been pulled down due to Trust and Safety issues and it is unknown when it will become available for sale again.
<br>
<br> Current Status: Unknown.
<br>
<br>
<a href="http://fonkraft.com" target="_blank">For more info go to the Fonkraft website.</a></p>
</div>
</div>
</div>
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/phone_fairphone.png">
<span>Fairphone 2</span>
<div>
<img src="/assets/uploads/2015/09/fairphone-700x400.jpg">
<p><b>FAIRPHONE 2</b>
<br>
<br> Fairphone is a social enterprise that is building a movement for fairer electronics. They open up supply chains to understand how things are made and build stronger connections between people and their products. With the Fairphone 2 they’ve joined the modular revolution. The Fairphone 2’s inventive modular architecture gives users more control over their phone, including the ability to easily open and repair the most commonly broken parts. Modular components slot into the back and can be easily replaced. To help it last longer, the phone also features high-quality components and innovations like an integrated protective case.
<br>
<br> Current Status: Orders available now!
<br>
<br>
<a href="https://www.fairphone.com" target="_blank">For more info visit Fairphone’s website.</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="friends">
<div class="inner">
<h1>Honorable Mentions</h1>
<h2>Companies That Deserve To Be Highlighted</h2>
</div>
<div class="inner">
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/motorola_white-300x300.png">
<div>
<img src="/assets/uploads/2015/07/Ara.png">
<p><b>MOTOROLA</b>
<br> Nowadays Motorola has nothing to do with Project Ara, and to our knowledge, nothing to do with modularity but they were the company that really helped get the ball rolling. Motorola was the company that initiated the Make With MoTo Tour,
a pan America car tour that helped them understand that people want to be able to customize their phones. They also initiated the ATAP team, the team responsible for developing Project Ara. During both of these endeavors they were owned by
Google. Google has since sold Motorola to Lenovo, keeping the ATAP team, keeping on developing Project Ara. But no Motorola, no Make With Moto, no ATAP team, no Project Ara. So, for that, we salute them!
<br>
<a href="http://www.motorola.com/us/home" target="_blank">motorola.com</a></p>
</div>
</div>
</div>
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/sennheiser_white-300x300.png">
<div>
<img src="/assets/uploads/2015/07/Modulo-audio-3-Project-Ara1-700x400.png">
<p><b>SENNHEISER</b>
<br> Sennheiser was one of the first companies to really dive head first into modularity. Over the course of nearly a year they worked closely with us at Phonebloks and the Phonebloks community for the development of not one, but two Project Ara
sound-bloks. Getting help from the Phonebloks community on each step of the design process they not only totally emerged themselves in modularity but also in open innovation and crowd development. And for that, we salute them!
<br>
<a href="http://www.sennheiser.com" target="_blank">sennheiser.com</a></p>
</div>
</div>
</div>
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/chooseblocks_white1-300x300.png">
<div>
<img src="/assets/uploads/2015/07/press-51-700x400.png">
<p><b>BLOCKS</b>
<br> After seeing the original Phonebloks video back in 2013, the founding members of Blocks got an idea. What about a modular smartwatch? Said and done the guys slowly but surely started working towards their goal of the best modular wearable
there can ever be. They have over the passed two years gone from certainty to certainty and are now (2015) about to embark on a crowdfunding campaign that will lead to a public release. We totally love what these guys are doing and for that,
we salute them!
<br>
<a href="http://www.chooseblocks.com" target="_blank">chooseblocks.com</a></p>
</div>
</div>
</div>
<div class="item">
<div class="centring">
<img src="/assets/uploads/2015/07/ifixit_black-300x300.png">
<div>
<img src="/assets/uploads/2015/07/ifixit-700x400.jpeg">
<p><b>IFIXIT</b>
<br> Apart from aiming to drive the development of modular consumer electronics forward, one of the cornerstones of Phonebloks is helping to reduce the electronic waste streams. One major way to do this is to repair your broken electronics instead
of throwing them away. This is where iFixit comes in. Acknowledging the fact that many brands and distributors have ceased to offer repairs, instead opting for whole widget replacement, iFixit provides us, the consumers, with manuals and easy
step by step guides on how to repair our broken electronics. In the process creating jobs and helping the environment. And for that, we salute them!
<br>
<a href="http://ifixit.org" target="_blank">ifixit.org</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="elevator skyline">
<div class="inner">
<h1>Other companies that are contributing</h1>
<h2>Other Companies That Contribute To Modular Consumer Electronics In Some Way</h2>
</div>
<div class="inner companies">
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/variable-300x300.png">
<div>
<img src="/assets/uploads/2015/09/variable1-700x291.png">
<p><b>VARIABLE</b>
<br> Developed a modular sensor platform called Node+.
<br>
<a href="http://www.variableinc.com" target="_blank">variableinc.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/arraylabs-300x300.png">
<div>
<img src="/assets/uploads/2015/09/ARrAY-Labs-657x400.jpg">
<p><b>ARRAY LABS</b>
<br> Conceptualized various modules for Project Ara.
<br>
<a href="http://arraylabs.com" target="_blank">arraylabs.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/vestigen-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Vestige-700x400.jpg">
<p><b>VESTIGEN</b>
<br> Developing medical modules for Project Ara.
<br>
<a href="http://ara.vestigen.com/" target="_blank">vestigen.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/twotoasters-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Two-Toasters-700x400.png">
<p><b>TWO TOASTERS</b>
<br> Producing the Project Ara modules marketplace app.
<br>
<a href="http://twotoasters.com/two-toasters-to-build-project-ara-marketplace-app/" target="_blank">twotoasters.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/toshiba-300x300.png">
<div>
<img src="/assets/uploads/2015/09/toshiba-project-ara-camera-700x400.jpg">
<p><b>TOSHIBA</b>
<br> Developing a camera module and other components for Project Ara.
<br>
<a href="http://www.toshiba.com/" target="_blank">toshiba.com/</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/sunnyoptical-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Sunny-optical.png">
<p><b>SUNNY OPTICAL</b>
<br> Developing a camera module for Project Ara
<br>
<a href="http://www.sunnyoptical.com/en/default.html" target="_blank">sunnyoptical.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/solidenergy-300x300.png">
<div>
<img src="/assets/uploads/2015/09/SolidEnergy-700x384.png">
<p><b>SOLID ENERGY SYSTEMS</b>
<br> Developing a battery module for Project Ara.
<br>
<a href="http://www.solidenergysystems.com/home.html" target="_blank">solidenergysystems.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/samsung-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Samsung-700x400.png">
<p><b>SAMSUNG</b>
<br> Developing a platform for modular wearables.
<br>
<a href="http://www.voiceofthebody.io/" target="_blank">voiceofthebody.io</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/rockchip-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Rockchip.jpg">
<p><b>ROCKCHIP</b>
<br> Developing a Project Ara Module.
<br>
<a href="http://www.rock-chips.com/a/en/" target="_blank" rock-chips.com<="" a=""></a>
</p>
<a href="http://www.rock-chips.com/a/en/" target="_blank" rock-chips.com<="" a="">
</a>
</div>
<a href="http://www.rock-chips.com/a/en/" target="_blank" rock-chips.com<="" a="">
</a>
</div>
<a href="http://www.rock-chips.com/a/en/" target="_blank" rock-chips.com<="" a="">
</a>
</div>
<a href="http://www.rock-chips.com/a/en/" target="_blank" rock-chips.com<="" a="">
</a>
<div class="company">
<a href="http://www.rock-chips.com/a/en/" target="_blank" rock-chips.com<="" a="">
</a>
<div class="centring">
<a href="http://www.rock-chips.com/a/en/" target="_blank" rock-chips.com<="" a="">
<img src="/assets/uploads/2015/09/razor-300x300.png">
</a>
<div>
<a href="http://www.rock-chips.com/a/en/" target="_blank" rock-chips.com<="" a="">
<img src="/assets/uploads/2015/09/Razer-700x400.jpg">
</a>
<p><a href="http://www.rock-chips.com/a/en/" target="_blank" rock-chips.com<="" a=""><b>RAZER</b><br>
Presenting Project Christine a modular PC concept.<br>
</a><a href="http://www.razerzone.com/" target="_blank">http://www.razerzone.com/</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/phison-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Phison-700x400.png">
<p><b>PHISON</b>
<br> Developing a memory module for Project Ara.
<br>
<a href="http://www.phison.com/English/Main.asp" target="_blank">phison.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/ondeeducation-300x300.png">
<div>
<img src="/assets/uploads/2015/09/One-Education-700x400.jpeg">
<p><b>ONE EDUCATION</b>
<br> Building a modular laptop.
<br>
<a href="https://www.one-education.org/" target="_blank">www.one-education.org</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/nvidiA-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Nvidia.jpg">
<p><b>NVIDIA</b>
<br> Developing Project Ara Module.
<br>
<a href="http://www.nvidia.com/" target="_blank">nvidia.com/</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/nexpaq-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Nexpaq-700x400.jpeg">
<p><b>NEXPAQ</b>
<br> Producing smartphone cases that expand your smartphone with modules.
<br>
<a href="http://nexpaq.com/" target="_blank">nexpaq.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/modr-300x300.png">
<div>
<img src="/assets/uploads/2015/09/MODR-700x400.png">
<p><b>MODR</b>
<br> Creating modular cases.
<br>
<a href="http://gomodr.com/" target="_blank">omodr.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/mightcast-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Mighty-Cast-700x400.jpg">
<p><b>MIGHTY CAST</b>
<br> Developing NEX, a modular smart band concept.
<br>
<a href="http://www.mightycast.com/" target="_blank">mightycast.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/metamorph-300x300.png">
<div>
<img src="/assets/uploads/2015/09/MetaMorph-700x400.jpg">
<p><b>METAMORPH</b>
<br> Developing a modules developer software.
<br>
<a href="http://www.metamorphsoftware.com/" target="_blank">metamorphsoftware.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/marvell-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Marvell-700x400.jpg">
<p><b>MARVELL</b>
<br> Developing Project Ara Module.
<br>
<a href="http://www.marvell.com/" target="_blank">marvell.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/littlebits-300x300.png">
<div>
<img src="/assets/uploads/2015/09/LittleBits-700x400.jpg">
<p><b>LITTLE BITS</b>
<br> Producer of modular toys.
<br>
<a href="http://littlebits.cc/" target="_blank">littlebits.cc/</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/linaro-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Linaro-509x400.png">
<p><b>LINARO</b>
<br> Developing the Android OS version to be used in Project Ara.
<br>
<a href="https://www.linaro.org/" target="_blank">linaro.org</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/lenovo-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Lenovo-622x400.png">
<p><b>LENOVO</b>
<br> Developing modular accessories for notebooks.
<br>
<a href="http://news.lenovo.com/article_display.cfm?article_id=1877" target="_blank">lenovo.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/kien-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Kein-700x400.jpg">
<p><b>KEIN</b>
<br> Producing a modular speaker system.
<br>
<a href="http://kien.io/" target="_blank">http://kien.io/</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/innersoft-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Intersoft-500x400.jpg">
<p><b>INTERSOFT</b>
<br> Developing Geiger meter for Project Ara
<br>
<a href="http://intersofteurasia.ru/eng/" target="_blank">http://intersofteurasia.ru</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/innolux-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Innolux-700x400.png">
<p><b>INNOLUX</b>
<br> Producing a screen module for Project Ara.
<br>
<a href="http://www.innolux.com/Pages%2fen%2fIndex_en.html" target="_blank">innolux.com</a>
<a></a>
</p>
<a>
</a>
</div>
<a>
</a>
</div>
<a>
</a>
</div>
<a>
</a>
<div class="company">
<a>
</a>
<div class="centring">
<a>
<img src="/assets/uploads/2015/09/ingram-300x300.png">
</a>
<div>
<a>
<img src="/assets/uploads/2015/09/Ingram-600x400.jpg">
</a>
<p><a><b>INGRAM MICRO</b><br>
Suppling the Project Ara logistics solution.<br>
</a><a href="http://www.ingrammicro.com/" target="_blank">ingrammicro.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/aiaiai-300x300.png">
<div>
<img src="/assets/uploads/2015/09/AIAIAI1-700x400.jpg">
<p><b>AIAIAI</b>
<br> Producing a modular headphone system.
<br>
<a href="http://aiaiai.dk/" target="_blank">aiaiai.dk</a>
<br>
</p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/lapka-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Lapka-700x400.jpg">
<p><b>LAPKA</b>
<br> Presenting several design concepts for Project Ara.
<br>
<a href="https://mylapka.com" target="_blank">mylapka.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/neptune-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Neptune-700x400.jpg">
<p><b>NEPTUNE</b>
<br> Developing a modular platform of smartband, tablet and smartphone.
<br>
<a href="http://www.getneptune.com/" target="_blank">getneptune.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/yezz-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Yezz-700x400.jpg">
<p><b>YEZZ</b>
<br> Developing several moduler for Project Ara.
<br>
<a href="http://sayyezz.com/en/home" target="_blank">sayyezz.com</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/vsenn-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Vsenn-700x400.jpg">
<p><b>VSENN</b>
<br> Developed a modular smartphone. Now licensing the technology to other companies.
<br>
<a href="https://twitter.com/vsenn_official” target=" _blank "=" ">twitter.com/vsenn_official</a></p>
</div>
</div>
</div>
<div class="company ">
<div class="centring ">
<img src="/assets/uploads/2015/09/sigrow-300x300.png ">
<div>
<img src="/assets/uploads/2015/09/Sigrow.png ">
<p><b>SIGROW</b><br>
Using modularity to make food production more effective.<br>
<a href="http://www.sigrow.com” target=" _blank"="">sigrow.com</a>
</p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/chipdesign-300x300.png">
<div>
<img src="/assets/uploads/2015/09/chip-design.jpg">
<p><b>CHIP DESIGN</b>
<br> Support modularity trough RFIC design
<br>
<a href="http://chipdesign.be" target="_blank">chipdesign.be</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/audiomodules-300x300.png">
<div>
<img src="/assets/uploads/2015/09/audio-modules-700x400.png">
<p><b>AUDIO MODULES</b>
<br> Developed modular (open source) parts that can be used to create something awesome.
<br>
<a href="http://www.audiomodules.net" target="_blank">www.audiomodules.net</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/peoplepeople-300x300.png">
<div>
<img src="/assets/uploads/2015/09/people-people-700x400.jpg">
<p><b>PEOPLE PEOPLE</b>
<br> People People produces a fully modular speaker that might just be the last sound system you will ever need.
<br>
<a href="http://www.peoplepeople.se/" target="_blank">peoplepeople.se/</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/triggar-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Triggar-700x400.png">
<p><b>TRIGGAR</b>
<br> Developing a modular wearable VR camera system will deliver a full spherical 360x360 stills and video in 2D & 3D 360. Capture 2k 4k & 8k VOD or live stream.
<br>
<a href="www.triggar.com.au" target="_blank">triggar.com.au</a></p>
</div>
</div>
</div>
<div class="company">
<div class="centring">
<img src="/assets/uploads/2015/09/hearts-300x300.png">
<div>
<img src="/assets/uploads/2015/09/Hearts-700x400.png">
<p><b>HEARTS</b>
<br> Developing basic diagnostic medical modules for a modular phone. Starting with a glucose meter for diabetics at Project Ara.
<br>
<a href="http://www.hearts.bio" target="_blank">hearts.bio</a></p>
</div>
</div>
</div>
</div>
<div class="inner">
<div class="blogtitle">
<h1>Latest Development Updates From Our Blog.</h1>
</div>
</div>
<div class="inner stories">
<div class="articles">
<article>
<a href="http://blog.phonebloks.com/post/139967296848" target="_blank">
LG G5, the expandable modular smartphone
</a>
<p>At the Mobile World Congress in Barcellona, LG presented their next-gen smartphone called G5 that introduces two modular add-ons. </p>
</article>
<article>
<a href="http://blog.phonebloks.com/post/134188178658" target="_blank">
One Education Infinity, a modular laptop for children and...
</a>
<p>One Education, OLPC’s partner non-profit in Australia, presented some months ago a modular laptop/tablet, called Infinity. </p>
</article>
<article>
<a href="http://blog.phonebloks.com/post/133521877393" target="_blank">
A Message From Blocks:Why Modularity makes a lot of sense for...
</a>
<p>Why Modularity makes a lot of sense for smartwatches?</p>
</article>
<article>
<a href="http://blog.phonebloks.com/post/132864661168" target="_blank">
Where will modularity bring us?Tomas Halberstad, PhonebloksAs...
</a>
<p>As we’ve spoke of many times, we at Phonebloks believe that modularity is the way to go when it comes to reducing the electronic waste streams that consumer electronics generate.…</p>
</article>
<article>
<a href="http://blog.phonebloks.com/post/132529634493" target="_blank">
PuzzlePhone has arrived on Indiegogo
</a>
<p>PuzzlePhone is a modular smartphone, made in Finland, build to last. This phone is developed by a Finnish start-up, called Circular Devices. </p>
</article>
<article>
<a href="http://blog.phonebloks.com/post/132154249538" target="_blank">
News from PuzzlePhone
</a>
<p>PuzzlePhone is a modular smartphone developed by a Finnish start-up, called Circular Devices, founded by Spanish engineer Alejandro Santacreu. </p>
</article>
<article>
<a href="http://blog.phonebloks.com/post/131546071308" target="_blank">
The third Ara module prototype developed
</a>
<p>On Twitter, Joseph Kim, the founder of Hearts, has shown the 3.1 version of an interesting mHealth Project Ara module. </p>
</article>
<article>
<a href="http://blog.phonebloks.com/post/131095948243" target="_blank">
BLOCKS modular smartwatch has launched its Kickstarter...
</a>
<p>After nearly two years of development, BLOCKS has now arrived on Kickstarter.</p>
</article>
</div>
</div>
</section>
<aside class="overlay">
<div class="inner">
<figure>
<figcaption>