-
Notifications
You must be signed in to change notification settings - Fork 403
/
Copy pathindex.yaml
2123 lines (1653 loc) · 45.2 KB
/
index.yaml
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
# To find your vendor's ID, please look here: https://resources.lora-alliance.org/document/lora-alliance-vendor-id-20230915
vendors:
- id: example
name: Example
vendorID: 0
draft: true
- id: 1m2m
name: 1M2M
vendorID: 1
- id: 3s-iot
name: 3S
vendorID: 3
- id: bureau-veritas
name: Bureau Veritas Consumer Products Services, Inc.
vendorID: 4
- id: a2a
name: A2A Smart City S.p.A.
vendorID: 5
- id: acklio
name: ACKLIO
vendorID: 12
- id: acsip
name: AcSiP Technology Corp.
vendorID: 13
- id: actility
name: Actility SA
vendorID: 14
- id: adeunis
name: Adeunis
vendorID: 16
- id: aexonis
name: Aexonis
vendorID: 20
- id: afnic
name: Afnic
vendorID: 21
- id: aiut
name: AIUT Sp. z o.o.
vendorID: 24
- id: alflex
name: Alflex Technologies
vendorID: 25
- id: alibaba
name: Alibaba (China) Co., Ltd
vendorID: 26
- id: allion-labs
name: Allion Labs, Inc.
vendorID: 27
- id: alpitel
name: Alpitel S.p.A.
vendorID: 28
- id: american-tower
name: American Tower
vendorID: 31
- id: antenna-hungaria
name: Antenna Hungaria Co.
vendorID: 36
- id: anylink
name: Anylink Systems AG
vendorID: 37
- id: apana
name: APANA
vendorID: 38
- id: arad
name: Arad Technologies
vendorID: 41
- id: arteria
name: Arteria
vendorID: 47
- id: atal
name: ATAL Technologies Limited
vendorID: 49
- id: axatel
name: Axatel SRL
vendorID: 56
- id: baylan
name: Baylan Water Meters
vendorID: 59
- id: bh-technologies
name: BH Technologies
vendorID: 65
- id: birdz
name: Birdz
vendorID: 66
- id: netmore
name: Netmore
vendorID: 68
- id: bosch
name: Bosch Connected Devices and Solutions GmbH
vendorID: 69
pen: 42
ouis: [FCD6BD]
website: https://www.bosch-connectivity.com
logo: logo.svg
- id: bouygues-telecom
name: Bouygues Telecom
vendorID: 70
- id: ceske-radiokomunikace
name: Ceske Radiokomunikace, a.s.
vendorID: 80
- id: charter
name: Charter Communications
vendorID: 81
- id: cisco
name: Cisco Systems, Inc.
vendorID: 86
- id: machineq
name: MachineQ, a Comcast Company
vendorID: 92
- id: comms365
name: Comms365 Limited
vendorID: 94
- id: comtac
name: Comtac AG
vendorID: 98
website: https://www.comtac.ch/
logo: comtac-logo.svg
ouis: [70B3D5BF6, 70B3D5F3F, BC97401]
- id: csem
name: CSEM
vendorID: 106
- id: decentlab
name: Decentlab GmbH
vendorID: 109
website: https://www.decentlab.com
logo: decentlab_logo.svg
ouis:
- 70B3D57BA
description: Decentlab is a Swiss company providing wireless sensor devices and services for distributed, cost-effective monitoring solutions. The sensor devices communicate wirelessly over LoRaWAN® and are designed for ultra low power consumption, capable of operating on batteries for several years. The devices are built for industrial applications and are ready to be deployed in any harsh indoor or outdoor environment. The service framework provides convenient access to measurement data and enables seamless integration into existing monitoring and control systems. Application areas are environmental and air quality monitoring, hydrological measurements, smart agriculture and smart cities.
social:
linkedin: https://www.linkedin.com/company/decentlab
facebook: https://www.facebook.com/decentlab
twitter: decentlab
github: decentlab
- id: definium
name: Definium Technologies, Pty Ltd
vendorID: 110
- id: dekra
name: DEKRA Testing and Certification, S.A.U.
vendorID: 111
- id: diehl-metering
name: Diehl Metering SAS
vendorID: 113
- id: digimondo
name: Digimondo GmbH
vendorID: 115
- id: digita
name: Digita Oy
vendorID: 116
- id: digital-matter
name: Digital Matter Pty Ltd
vendorID: 118
website: https://www.digitalmatter.com
logo: logo.svg
ouis:
- 70B3D5
- id: easel
name: EASEL Inc.
vendorID: 124
- id: easylinkin
name: EasyLinkin Co.,LTD.
vendorID: 125
- id: eddy
name: Eddy Solutions
vendorID: 128
- id: elsys
name: Elsys
vendorID: 132
website: https://www.elsys.se/en/
- id: eleven-x
name: Eleven-x
vendorID: 133
- id: entega
name: Entega AG
vendorID: 141
- id: er-telecom
name: ER-Telecom
vendorID: 142
- id: eta2u
name: ETA2U SRL
vendorID: 143
- id: etteplan
name: Etteplan
vendorID: 145
- id: eurotech
name: Eurotech
vendorID: 147
- id: everynet
name: Everynet BV
vendorID: 148
- id: ewattch
name: Ewattch
vendorID: 149
- id: ewbm
name: eWBM Co., Ltd
vendorID: 150
- id: ffly4u
name: ffly4u
vendorID: 157
- id: fleet-space
name: Fleet Space Technologies Pty Ltd
vendorID: 158
- id: flex-automotive
name: Flex Automotive Gmbh
vendorID: 159
- id: flexworks
name: Flexworks limited
vendorID: 160
- id: focalcrest
name: Focalcrest Inc.
vendorID: 161
- id: fujitsu-component
name: Fujitsu Component Limited
vendorID: 166
- id: gwf
name: GWF Messsysteme AG
vendorID: 179
- id: hangzhou-lowan
name: Hangzhou Lowan Information Technology Co.
vendorID: 182
- id: hexing-electrical
name: Hexing Electrical Co., Ltd
vendorID: 186
- id: holley
name: Holley Technology Ltd
vendorID: 188
- id: iioote
name: iioote AB
vendorID: 197
- id: imst
name: IMST GmbH
vendorID: 199
ouis: [70B3D5]
website: http://www.imst.de
logo: imst_logo.png
- id: intercomp
name: Intercomp S.p.A.
vendorID: 206
- id: invenit
name: Invenit B.V.
vendorID: 208
- id: invisible-systems
name: Invisible Systems Ltd
vendorID: 209
- id: invoxia
name: Invoxia
vendorID: 211
- id: iothings
name: ioThings
website: https://iothings.nl
logo: iothings-logo.svg
social:
linkedin: https://www.linkedin.com/company/iotracker
github: iotracker
- id: last-mile
name: Last Mile Solutions AS
vendorID: 212
- id: itron
name: Itron, Inc.
vendorID: 217
- id: jri
name: JRI
vendorID: 220
- id: keller
name: KELLER Druckmesstechnik AG
website: https://keller-druck.com/
logo: keller-logo.svg
vendorID: 222
description: KELLER Pressure, Europe's leading manufacturer of isolated pressure transducers and transmitters, was founded in 1974 by H. W. Keller, the inventor of the integrated silicon measuring cell. Piezoresitive pressure sensors have impressively high precision and pressure ranges from 5 mbar to 2000 bar. The KELLER product range includes digital manometers, level probes, data loggers and remote transmission units communicating wirelessly over LoRaWAN®, NB-IoT, LTE-M, LTE and more.
social:
linkedin: https://www.linkedin.com/company/keller-pressure
github: KELLERAGfuerDruckmesstechnik
- id: kerlink
name: Kerlink
vendorID: 223
- id: kiwi
name: Kiwi Technology Inc.
vendorID: 224
- id: kolff
name: Kolff Computer Supplies b.v.
vendorID: 225
- id: kolmostar
name: Kolmostar
vendorID: 226
- id: konica-minolta
name: Konica Minolta Business Solutions Europe
vendorID: 227
- id: kontron
name: Kontron Modular Computers
vendorID: 228
- id: kisti
name: Korea Institute of Science and Technology Information
vendorID: 229
- id: kpn
name: KPN
vendorID: 231
- id: lacuna-space
name: Lacuna Space Ltd.
vendorID: 234
- id: laird
name: Laird Connectivity, Inc.
vendorID: 235
- id: lapp
name: Lapp Automaatio
vendorID: 236
- id: legrand
name: Legrand
vendorID: 240
- id: lierda
name: Lierda Science & Technology Group Co., Ltd
vendorID: 242
- id: loriot
name: LORIOT.io
vendorID: 246
- id: lucy-zodion
name: Lucy Zodion
vendorID: 248
- id: lyse
name: Lyse AS
vendorID: 251
- id: machines-talk
name: Machines Talk
vendorID: 253
- id: macnica
name: Macnica, Inc.
vendorID: 254
- id: maddalena
name: Maddalena S.p.A.
vendorID: 255
- id: magnitude-space
name: Magnitude Space B.V.
vendorID: 256
- id: mcci
name: MCCI Corporation
website: https://mcci.com
logo: mcci.svg
ouis:
- 0002CC
- id: mcf88
name: mcf88 SRL
vendorID: 259
website: https://www.enginko.com
logo: mcf88_logo.svg
- id: enginko
name: enginko SRL
vendorID: 259
website: https://www.enginko.com
logo: enginko_logo.svg
- id: meas-france
name: MEAS FRANCE
vendorID: 260
- id: menowatt
name: Menowatt Ge S.p.A.
vendorID: 261
- id: meshed
name: Meshed Pty Ltd
vendorID: 263
- id: meshify
name: Meshify
vendorID: 264
- id: microchip
name: Microchip Technology
vendorID: 266
- id: microshare
name: Microshare Inc.
vendorID: 267
- id: mipot
name: Mipot S.p.a.
vendorID: 270
- id: miromico
name: Miromico AG
vendorID: 272
- id: motorola
name: Motorola Solutions Inc.
vendorID: 274
- id: mueller
name: Mueller Systems
vendorID: 276
- id: multi-tech
name: Multi-Tech Systems, Inc.
vendorID: 277
- id: murata
name: Murata Electronics Europe BV
vendorID: 279
- id: mydevices
name: myDevices
vendorID: 280
- id: nable
name: Nable communications
vendorID: 282
- id: nnnco
name: National Narrowband Network Communication
vendorID: 283
- id: nec
name: NEC Corporation
vendorID: 285
- id: nemeus
name: Nemeus
vendorID: 286
- id: neptune
name: Neptune Technology Group, Inc.
vendorID: 287
- id: netvox
name: Netvox Technology Co., Ltd
vendorID: 289
- id: ntt
name: Nippon Telephone and Telegraph
vendorID: 295
- id: nke-watteco
name: nke WATTECO
vendorID: 296
- id: northern-mechatronics
name: Northern Mechatronics Inc.
vendorID: 297
- id: nsoft
name: Nsoft India Services Pvt Ltd
vendorID: 298
- id: occammd
name: Occammd
vendorID: 299
- id: oi-electric
name: Oi Electric Company Ltd
vendorID: 303
- id: oki-electric
name: Oki Electric Industry Co., Ltd
vendorID: 304
- id: omniimpex
name: Omniimpex GmbH
vendorID: 306
- id: onethinx
name: Onethinx B.V.
vendorID: 307
website: https://www.onethinx.com/
logo: onethinx-logo.png
- id: orange
name: Orange
vendorID: 308
- id: orbiwise
name: OrbiWise
vendorID: 309
logo: orbiwise.png
- id: oresundskraft
name: Oresundskraft AB
vendorID: 310
- id: orion-system
name: Orion System LLP
vendorID: 312
- id: oxon
name: Oxon AG
vendorID: 313
- id: packetworx
name: PacketWorx Inc.
vendorID: 314
- id: parametric
name: Parametric Engineering GmbH
vendorID: 315
- id: proesys
name: ProEsys SRL
vendorID: 323
- id: proximus
name: Proximus SA
vendorID: 325
- id: pycom
name: Pycom
vendorID: 329
- id: radio-bridge
name: Radio Bridge Inc.
vendorID: 334
- id: rakon
name: Rakon Limited
vendorID: 335
- id: requea
name: Requea
vendorID: 341
- id: ruixinghengfang-network
name: RuiXingHengFang Network(Shenzhen) Co.
vendorID: 350
website: http://www.risinghf.com
ouis:
- 8CF957
- id: ryoden
name: Ryoden Corporation
vendorID: 352
- id: sagemcom-broadband
name: Sagemcom Broadband SAS
vendorID: 353
- id: schneider-electric
name: Schneider Electric
vendorID: 356
- id: seas-nve
name: SEAS-NVE
vendorID: 358
- id: semtech
name: Semtech
vendorID: 362
- id: senet
name: Senet, Inc.
vendorID: 363
- id: senra
name: SenRa Tech Pvt Ltd
vendorID: 364
- id: senseway
name: SenseWay, Inc.
vendorID: 366
- id: shenzhen-friendcom
name: Shenzhen Friendcom Technology Development
vendorID: 372
- id: shinko-shoji
name: Shinko Shoji Co., Ltd
vendorID: 375
- id: siradel
name: Siradel
vendorID: 378
- id: sk-telecom
name: SK Telecom
vendorID: 380
- id: skyhook-wireless
name: Skyhook Wireless, Inc
vendorID: 382
- id: smk
name: SMK Corporation
vendorID: 387
- id: softbank
name: SoftBank Corp.
vendorID: 388
- id: spark
name: Spark New Zealand Trading Limited
vendorID: 391
- id: sparklan
name: SparkLAN Communications Inc.
vendorID: 392
- id: stackforce
name: STACKFORCE GmbH
vendorID: 395
- id: stmicroelectronics
name: STMicroelectronics International NV
vendorID: 398
- id: strega
name: STREGA
vendorID: 401
- id: swisscom
name: Swisscom (Switzerland) Ltd
vendorID: 404
- id: switch-science
name: Switch Science, Inc.
vendorID: 405
- id: syrinx
name: Syrinx Industrial Electronics b.v.
vendorID: 406
- id: sysdev
name: SYSDEV SRL
vendorID: 407
- id: talkpool
name: TalkPool AB
vendorID: 409
- id: tektelic
name: Tektelic Communications Inc.
vendorID: 415
- id: tta
name: Telecommunications Technology Association
vendorID: 417
- id: telent
name: Telent GmbH
vendorID: 420
- id: telog
name: Telog Instruments, Inc.
vendorID: 422
- id: the-things-industries
name: The Things Industries
vendorID: 428
- id: turbo
name: Turbo Technologies Corporation
vendorID: 436
- id: tuv-rheinland
name: TUV Rheinland Group
vendorID: 437
- id: unidata
name: Unidata SPA
vendorID: 439
- id: universitat-oberta-de-catalunya
name: Universitat Oberta de Catalunya
vendorID: 442
- id: university-of-saskatchewan
name: University of Saskatchewan
vendorID: 446
- id: urmet-tlc
name: Urmet TLC
vendorID: 449
- id: ventia
name: Ventia Utility Services Pty Ltd
vendorID: 451
- id: viloc
name: Viloc
vendorID: 453
- id: vision-metering
name: Vision Metering, LLC
vendorID: 454
- id: vision-valley
name: Vision Valley
vendorID: 455
- id: volansys
name: Volansys Technologies Pvt Ltd
vendorID: 456
- id: wifx-sarl
name: Wifx Sarl
vendorID: 460
- id: worldsensing
name: Worldsensing S.L.
vendorID: 466
- id: x-telia
name: X-Telia Group Inc.
vendorID: 468
- id: yokogawa-electric
name: Yokogawa Electric Corporation
vendorID: 473
- id: minol-zenner
name: Minol ZENNER Connect GmbH
vendorID: 474
- id: vtc-digicom
name: VTC Digital Telecommunications One Member Company Limited
vendorID: 480
- id: insight-sip
name: Insight SIP SAS
vendorID: 482
- id: nippon-signal
name: Nippon Signal Co., Ltd
vendorID: 483
- id: renesas
name: Renesas Electronics Corporation
vendorID: 485
- id: aartesys
name: Aartesys AG
vendorID: 492
- id: allora-factory
name: Allora Factory
vendorID: 498
- id: metova
name: Metova Inc.
vendorID: 504
- id: tencent
name: Shenzhen Tencent Computer Systems Company Limited
vendorID: 507
- id: telekom-srbija
name: Telekom Srbija
vendorID: 511
- id: lobaro
name: Lobaro GmbH
vendorID: 515
- id: akenza
name: Akenza AG
vendorID: 516
- id: sauermann
name: Sauermann Group
vendorID: 519
- id: rossma
name: Rossma Ltd
vendorID: 526
- id: komro
name: Komro GmbH
vendorID: 527
- id: b-meters
name: B Meters SRL
vendorID: 528
- id: neptune-information
name: NEPTUNE Information Technologies GmbH
vendorID: 533
- id: richardson-rfpd
name: Richardson RFPD
vendorID: 534
- id: asr-microelectronics
name: ASR Microelectronics (Shanghai) Co., Ltd
vendorID: 536
- id: andorra-telecom
name: Andorra Telecom SAU
vendorID: 537
- id: caict
name: China Academy of Information Communications Technology
vendorID: 538
- id: cybereye
name: CyberEye Research Labs & Security Solutions Pvt Ltd
vendorID: 539
- id: resiot
name: ResIOT Ublsoftware SRL
vendorID: 540
- id: g2-misuratori
name: G2 Misuratori SRL
vendorID: 543
- id: arthur-d-riley
name: Arthur D Riley & Co Ltd
vendorID: 548
- id: social-area-networks
name: Social Area Networks Co., Ltd
vendorID: 553
- id: optage
name: OPTAGE Inc.
vendorID: 556
- id: bharat
name: Bharat Institute of Engg + Tech
vendorID: 558
- id: ibti
name: Instituto Brasilia De Tecnologia E Inovacao
vendorID: 560
- id: ademed
name: Asociatia Pentru Dezvoltare Si Mediu
vendorID: 561
- id: africa-connect
name: Africa Connect
vendorID: 563
- id: esenselab
name: eSenseLab Ltd
vendorID: 564
- id: careband
name: CareBand Inc
vendorID: 568
- id: target
name: Target Corporation
vendorID: 569
- id: rakwireless
name: RAKwireless Technology Co.
vendorID: 570
website: https://www.rakwireless.com
logo: rak-official-rgb.svg
ouis:
- 60C5A8
- id: sigrenea
name: sigrenEa SAS
vendorID: 572
- id: elvaco
name: Elvaco AB
vendorID: 574
- id: icfoss
name: International Centre for Free and Open Source Software (ICFOSS)
vendorID: 577
- id: openiot
name: OpenIOT
vendorID: 579
- id: upct
name: Universidad Politecnica de Cartagena
vendorID: 584
- id: cm-systems
name: CM Systems LLC
vendorID: 585
- id: gwinstek
name: Good Will Instrument Co., Ltd (GWINSTEK)
vendorID: 587
- id: coxcom
name: CoxCom, LLC d/b/a Cox2M
vendorID: 588
- id: alpha-omega-technology
name: Alpha-Omega Technology GmbH & Co. KG
website: https://iot-shop.de
vendorID: 590
- id: st-electronic
name: ST Electronics (Info-Comm Systems) Pte. Ltd
vendorID: 595
- id: ztacom
name: ZTACOM Co., Ltd
vendorID: 597
- id: boston-networks
name: Boston Networks Limited
vendorID: 598
- id: milesight-iot
name: Milesight IoT Co., Ltd
vendorID: 601