Skip to content

Attempt to migrate from Travis to GitHub Actions #302

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ed19681
Autoupdated manufacturer data
peternewman Jul 24, 2022
449d6f4
Autoupdated manufacturer data
peternewman Aug 6, 2022
24297ef
Add Environmental Lights website
peternewman Aug 20, 2022
fbadb46
New manufacturer ID for Liteputer!
peternewman Nov 10, 2022
01cd3bc
Autoupdated manufacturer data
peternewman Nov 10, 2022
02df1c5
Autoupdated manufacturer data
peternewman Nov 11, 2022
376f5a1
Add another manufacturer link
peternewman Nov 11, 2022
2b88f66
Autoupdated manufacturer data
peternewman Nov 17, 2022
63e418e
Autoupdated manufacturer data
peternewman Dec 3, 2022
d207551
Autoupdated manufacturer data
peternewman Dec 11, 2022
a6ff530
Autoupdated manufacturer data
peternewman Dec 15, 2022
fb397ec
Autoupdated manufacturer data
peternewman Dec 19, 2022
880d974
Autoupdated manufacturer data
peternewman Dec 21, 2022
d5e3482
Autoupdated manufacturer data
peternewman Jan 28, 2023
4e2846f
Autoupdated manufacturer data
peternewman Feb 8, 2023
09ab428
Autoupdated manufacturer data
peternewman Feb 11, 2023
b729db3
Attempt to migrate from Travis to GitHub Actions
peternewman Feb 17, 2023
56e710b
Install more dependencies
peternewman Feb 17, 2023
493a9ae
Remove some currently broken tests
peternewman Feb 17, 2023
d63eadc
Add the codespell problem matcher
peternewman Feb 17, 2023
0c7c2d7
Fix a typo
peternewman Feb 17, 2023
d240a69
Ignore another manufacturer name as not a typo
peternewman Feb 17, 2023
0c2e66e
Autoupdated manufacturer data
peternewman Feb 21, 2023
43aead4
Autoupdated manufacturer data
peternewman Feb 21, 2023
1e9f947
Autoupdated manufacturer data
peternewman Feb 25, 2023
1b5a699
Autoupdated manufacturer data
peternewman Feb 27, 2023
a2024d9
Autoupdated manufacturer data
peternewman Mar 1, 2023
8fa4548
Add another codespell ignore line
peternewman Mar 5, 2023
0f3459d
Merge pull request #303 from peternewman/manufacturer-updates
peternewman Mar 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .codespellignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
grep -v "./.travis-ci.sh: Eletronic -> Electronic" | \
grep -v "./data/manufacturer_data.py: Eletronic -> Electronic" | \
grep -v "./.travis-ci.sh: Eletronic -> Electronic"
(0x0080, "Shenzhen AOTO Electronics Co., Ltd."),
(0x0082, "LKE Lasershowtechnik GmbH"),
(0x00B9, "Guangzhou Baiyun District Sanjie Eletronic Stage Lighting Audio Equipment Factory"),
(0x01B2, "DJSI Schinstad ANS (Northern Light)"),
(0x01CF, "SRM Technik GmbH"),
(0x030F, "Guangzhou Litewise Lighting Equipments Co., Ltd. dba \"EK Lights\""),
(0x0440, "Guangzhou VAS Lighting Co., Ltd."),
(0x067A, "Inster Co, Ltd"),
(0x072D, "Sting Alleman"),
(0x07F9, "Bion Technologies GmbH"),
(0x0933, "Beyond Lighting WLL"),
(0x096F, "Shenzhen showho technolgy co.,ltd"),
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# GitHub Action to compile and test
name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
task: [data-check, codespell]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting use of matrix builds. I would've expected several steps/jobs instead of tasks defined by a matrix but why not?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was simply to get it the closest to our existing Travis setup, given it currently just calls the old script for that.

I think if you had steps/jobs, then where you've got say json-spec needed on more than one, you'd have to duplicate the install instructions (or install it even for the builds which don't need it, which doesn't seem very efficient to me.

#spellintian, nosetests, karma, lint, closure-compiler,
steps:
- uses: actions/checkout@master
- name: Install dependencies
env:
TASK: ${{ matrix.task }}
run: |
if [ "$TASK" = "nosetests" -o "$TASK" = "flake8" -o "$TASK" = "flake8-wip" ]; then pip install json-spec; fi
if [ "$TASK" = "karma" -o "$TASK" = "lint" -o "$TASK" = "closure-compiler" ]; then npm install -g grunt-cli; fi
if [ "$TASK" = "karma" -o "$TASK" = "lint" -o "$TASK" = "closure-compiler" ]; then npm install; fi
if [ "$TASK" = "flake8" -o "$TASK" = "flake8-wip" ]; then pip install flake8; fi
# If this causes SSL errors, then Sourceforge is probably in disaster recovery mode and needing Javascript. Could switch to a specific mirror, e.g. kent.dl.sourceforge.net
if [ "$TASK" = "pychecker" -o "$TASK" = "pychecker-wip" ]; then pip install http://sourceforge.net/projects/pychecker/files/pychecker/0.8.19/pychecker-0.8.19.tar.gz/download; fi
#if [ "$TASK" = "codespell" ]; then pip install git+https://github.com/codespell-project/codespell.git; fi
if [ "$TASK" = "codespell" ]; then pip install codespell; fi
sudo apt-get install xvfb
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not have those four apt install lines merged into one line with all packages installed in one go?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah that's a fair point. I think I was running them individually as the presence of a package already being installed broke the whole build!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See also #304

sudo apt-get install libhtml-parser-perl
sudo apt-get install lintian
sudo apt-get install moreutils
- uses: codespell-project/codespell-problem-matcher@v1
- name: Test
env:
TASK: ${{ matrix.task }}
run: |
bash -ex .travis-ci.sh
55 changes: 51 additions & 4 deletions data/manufacturer_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,9 @@
(0x0213, "Huizhou visionX Technology Co., Ltd."),
(0x0214, "Impactrum"),
(0x021A, "WizzuLED by Scooon"),
(0x0223, "ShenZhen Focus Vision Intelligent System Co., Ltd."),
(0x0224, "Vanguard LED Displays"),
(0x0225, "Northern Lights Electronic Design, LLC"),
(0x0235, "Company 235, LLC"),
(0x0242, "ABLELITE INTERNATIONAL"),
(0x025B, "Imlight-Showtechnic"),
Expand Down Expand Up @@ -358,8 +361,10 @@
(0x05AB, "Shenzhen Lesan Lighting Co., Ltd."),
(0x05B5, "Turkowski GmbH"),
(0x05BC, "CantoUSA"),
(0x05C0, "Vertigo"),
(0x05CF, "Brighten Technology Development Co., Ltd."),
(0x05D3, "D-LED Illumination Technologies Ltd."),
(0x05E0, "esp_dmx"),
(0x05E2, "KORRO PLUS"),
(0x05E8, "Snap One"),
(0x05EB, "GUANGZHOU BO WEI TE LIGHTING CO.LTD"),
Expand All @@ -377,7 +382,7 @@
(0x0622, "Lupo SRL"),
(0x0623, "JAS LIGHTING & SOUND CO., LTD."),
(0x0624, "S4 Lights"),
(0x0628, "APEX PRO LIGHT CO.,LTD"),
(0x062A, "LEDstructures"),
(0x062B, "CKC Lighting Co., Ltd."),
(0x063A, "AVM Belgium BVBA"),
(0x063C, "LaserNet"),
Expand All @@ -390,12 +395,14 @@
(0x065E, "OFilms"),
(0x0660, "QSTECH CO.,LTD"),
(0x0668, "Motion FX"),
(0x066B, "AVANT-GARDE DE STUDIO FZ LLC"),
(0x066F, "GUANGZHOU CY LIGHTING EQUIPMENT CO.,LTD"),
(0x067A, "Inster Co, Ltd"),
(0x067C, "LOTRONIC SA"),
(0x0682, "Beijing Ming Rui Lighting Technology Co., Ltd."),
(0x0684, "LEDART LLC"),
(0x0685, "IBL/ESD-Datentechnik GmbH"),
(0x0687, "INSMARINE LLC"),
(0x068E, "GUANGZHOU TEANMA STAGE LIGHTING FACTORY"),
(0x0696, "SHENZHEN HOION LIGHTING CO.,LTD"),
(0x0697, "Shenzhen LED Innovator Technology Co., Ltd"),
Expand All @@ -414,13 +421,15 @@
(0x06CE, "American-Pro International"),
(0x06D1, "BIRUN ELECTRONIC INDUSTRIAL CO., LTD"),
(0x06D2, "LIGHTSTAR (BEIJING) ELECTRONIC CORPORATION"),
(0x06D3, "Boerner Distribution International GmbH"),
(0x06E0, "SHENZHEN LONGRUN OPTOELECTRONIC CO., LTD"),
(0x06E1, "Burck IT GmbH & Co. KG"),
(0x06E4, "Dydell B.V."),
(0x06E6, "Equipson S.A."),
(0x06EC, "SISTEMA Jsc"),
(0x06F0, "CTG sp. z o.o."),
(0x06F1, "Aqualux Lighting"),
(0x06F8, "CHONGQING XINYUANHUI OPTOELECTRONIC TECHNOLOGY CO.,LTD"),
(0x0702, "Drinelec"),
(0x0707, "Conceptinetics Technologies and Consultancy Ltd."),
(0x0708, "AK-LIGHT"),
Expand All @@ -433,6 +442,7 @@
(0x0724, "PHC Lighting & BMS Sp. z o.o."),
(0x072B, "NEWSUBSTANCE Ltd."),
(0x072C, "SGM A/S"),
(0x072D, "Sting Alleman"),
(0x072F, "RayComposer - R. Adams"),
(0x0732, "Galaxia Electronics"),
(0x0734, "CPOINT"),
Expand All @@ -444,12 +454,15 @@
(0x0758, "IMPOLUX GmbH"),
(0x075F, "LEDEngin Inc."),
(0x076A, "BeamZ (Tronios B.V.)"),
(0x076E, "DecoLed, LLC"),
(0x0776, "lumenetix"),
(0x077B, "GENLED Brands"),
(0x0782, "R9 Lighting"),
(0x078A, "FATEC sarl"),
(0x078E, "SHENZHEN BGLOPTO TECHNOLOGY Co., LTD."),
(0x0792, "MY-Semi Inc."),
(0x0797, "ARCPROLED Limited"),
(0x079F, "VPS Group, LLC"),
(0x07A3, "Guangzhou GBR PROLIGHT GROUP CO.,LTD (GBR PROLIGHT)"),
(0x07A5, "X LED Systems"),
(0x07AD, "CLS LED BV"),
Expand All @@ -458,6 +471,7 @@
(0x07B1, "TBF-PyroTec GmbH"),
(0x07B3, "Shenzhen Fabulux Technology Co., Ltd"),
(0x07B5, "ARM Automation, Inc"),
(0x07BB, "Shenzhen SOSEN Electronics Co., Ltd."),
(0x07BE, "Sanko Device Co.Ltd."),
(0x07C0, "Code Mercenaries GmbH"),
(0x07C2, "BOOQlight BV"),
Expand All @@ -481,6 +495,7 @@
(0x07F8, "Ultimate Technology Solutions GmbH"),
(0x07F9, "Bion Technologies GmbH"),
(0x07FD, "THELIGHT Luminary for Cine and TV S.L."),
(0x07FE, "Shenzhen Apexls Optoelectronic Co., Ltd."),
(0x07FF, "Guangzhou HOMEI LIGHT Manufacturer"),
(0x0800, "Hongyeah Light"),
(0x0801, "Guangzhou Favolite Stage Lighting Co., Ltd."),
Expand All @@ -496,9 +511,10 @@
(0x0812, "Yamagiwa Corporation"),
(0x0813, "Shenzhen Scenico Optoelectronic Co., Ltd."),
(0x0814, "squareV"),
(0x081C, "MR Electronics Ltd."),
(0x0823, "Opito Labs GmbH"),
(0x0824, "Almotechnos CO.,LTD."),
(0x0827, "Shineon Hardtech Co,.LTD"),
(0x0827, "PIXREAL"),
(0x0832, "Shenzhen EXC-LED Technology Co.,Ltd"),
(0x083A, "Bright Ideas Custom Electronics Inc."),
(0x083E, "Guangdong Hua Chen Film & Television Stage Project Co., Ltd."),
Expand All @@ -518,19 +534,26 @@
(0x085B, "Tolifo (Dongguan) Photographic Equipment Co. Ltd"),
(0x085E, "MMS Distribution Ltd"),
(0x085F, "Media Visions, Inc."),
(0x0862, "illuminous"),
(0x0863, "XTEC Industries Pte Ltd"),
(0x0864, "Hangzhou Youte Power., Co. Ltd"),
(0x0865, "Contrade GmbH"),
(0x0866, "PAL Lighting"),
(0x0868, "Ushio America, Inc."),
(0x0869, "Club Cannon LLC"),
(0x086A, "Shenzhen Chip Optech Co.,LTD"),
(0x086C, "Bafa Elektronik ve Isik Tasarimlari Sanayii Ticaret LTD Sti."),
(0x086E, "Guangzhou Hi-LTTE Electronics Technology Co.,Ltd"),
(0x086F, "MARTINI RUS LLC"),
(0x0870, "Hunan YESTECH Optoelectronic Co., Ltd"),
(0x0873, "Guangzhou BKLite Stage Lighting Equipment Co.,LTD"),
(0x0874, "Snow Professional Lighting"),
(0x0875, "ARC Solid-State Lighting Corp."),
(0x0876, "Power Gems LTD"),
(0x0877, "Skaff New Zealand Ltd"),
(0x0878, "OTTEC Technology GmbH"),
(0x087A, "Dextra Group Plc"),
(0x087C, "Telectran International Pty Ltd."),
(0x087D, "TPV Technology Group"),
(0x0880, "GuangZhou LiDang Technology Inc."),
(0x0883, "CEE Lighting Equipment Co.Ltd"),
Expand All @@ -541,6 +564,7 @@
(0x0889, "Guangzhou Shenghui Electronic Technology Co., Ltd"),
(0x088A, "Highendled Electronics Company Limited"),
(0x088B, "Shenzhen Doit Vision Co., Ltd"),
(0x088C, "Guangzhou Yi Sheng Yuan Electronic Co.,Ltd(Esun)"),
(0x088D, "Guangzhou Ling Yang lighting Science and Technology Co.,Ltd"),
(0x088E, "Stage One International Co., Ltd."),
(0x088F, "First Design System Inc."),
Expand All @@ -566,6 +590,7 @@
(0x08B0, "KIM Lighting"),
(0x08B2, "MCI Group"),
(0x08B3, "Stealth Light srl"),
(0x08B5, "ShenZhen Sunny Xiao Technology Co., Ltd."),
(0x08B6, "Graf Lichttechnik UG"),
(0x08B9, "Guangzhou Hua Rong Electronic Technology Co., Ltd."),
(0x08BA, "Meteor Lighting"),
Expand All @@ -576,11 +601,13 @@
(0x08BF, "Times Square Stage Lighting Inc."),
(0x08C1, "Project SSSHH Incorporated"),
(0x08C3, "Guangzhou Spark Stage Equipment Co. Ltd"),
(0x08C4, "Jacek Wagner"),
(0x08C5, "EHRGEIZ Lichttechnik GmbH"),
(0x08C6, "Guangzhou Ever Famous Electronic Co.,Ltd"),
(0x08C9, "LEDitgo Videowall Germany GmbH"),
(0x08CA, "Foshan City Xuandao Optoelectronics Equipment Co., Ltd"),
(0x08CC, "Guangzhou Santu Stage Lighting Equipment Co.Ltd"),
(0x08D1, "Shenzhen Leqi Network Technology Co., Ltd."),
(0x08D3, "SVI Public Company Limited"),
(0x08D4, "Sensa-Lite Ltd."),
(0x08D5, "Sense Effects"),
Expand All @@ -594,6 +621,7 @@
(0x08E1, "Shenzhen CLT Electronics Co.,LTD"),
(0x08E3, "Guangzhou JinZhiHui Electronic Technology Co.,Ltd."),
(0x08E4, "LMP Lichttechnik Vertriebsgesellschaft GmbH & Co KG"),
(0x08E6, "Shenzhen VisionMax Technology Co., Ltd"),
(0x08E7, "3A Guangzhou Electronics Co., Ltd"),
(0x08EA, "Changchun Cedar Electronic Technology Co.,Ltd."),
(0x08EC, "Marvin Nadrowski"),
Expand All @@ -604,6 +632,7 @@
(0x08F1, "SanDevices, LLC"),
(0x08F3, "Outdoor Lasers Ltd."),
(0x08F4, "MC Electronic Technology(GZ) Co., Ltd."),
(0x08F5, "Fufeng lighting"),
(0x08F6, "Eulum Design, LLC"),
(0x08F7, "Neotek Lighting"),
(0x08F8, "Liberal Logic Inc."),
Expand Down Expand Up @@ -631,6 +660,7 @@
(0x0914, "Xenio"),
(0x0915, "Guangzhou Chuangfeng Photoelectric Equipment Co., Ltd."),
(0x0916, "ACTOR-MATE CO., LTD."),
(0x0917, "Gavtronics"),
(0x0918, "David O Smith Design"),
(0x0919, "Foshan Leiyuan Photoelectric Co., LTD"),
(0x091A, "Celex LED Technology Ltd."),
Expand All @@ -646,10 +676,12 @@
(0x0929, "UPlight stage equipment(GZ) CO., Ltd."),
(0x092B, "Guangzhou Lightful Stage Lighting&Sound Equipment Co,.Ltd."),
(0x092C, "Guangzhou Chaoran Computer Co., Ltd."),
(0x092D, "LG Electronics"),
(0x092E, "YouEasy (Dongguan) Electronics Technology Co.,Ltd"),
(0x092F, "Guangzhou Shinelight Stage Equipment Factory"),
(0x0930, "jiaozuo shengguang film &equipment Co. Ltd"),
(0x0931, "Cristal Controles"),
(0x0932, "GUANGZHOU BORAY ELECTRON CO.,LTD"),
(0x0933, "Beyond Lighting WLL"),
(0x0935, "Guangzhou Huadu District Richa Lighting Equipment Factory"),
(0x0936, "AquaTronic"),
Expand All @@ -664,18 +696,22 @@
(0x0941, "Shenzen Zhuoyang Intelligent Technology Co., Ltd."),
(0x0945, "Guangzhou Lin Xiang Stage Lighting Equipment CO.,LTD"),
(0x0946, "TBE Srl"),
(0x0947, "Shenzhen MOSO Electronics Technology Co., Ltd"),
(0x0948, "Wisconsin Lighting Lab, Inc. (WiLL)"),
(0x0949, "Shenzhen Jiuzhou Optoelectronic Technology"),
(0x094A, "Funovation, Inc"),
(0x094B, "Invisua Lighting BV"),
(0x0951, "Guangzhou GTD Lighting Technology Co., Ltd"),
(0x0952, "Guangzhou Sunway Entertainment Equipment Co., Ltd."),
(0x0954, "Ledtop Visual Ltd."),
(0x0958, "Illum Technology LLC (previously Verde Designs, Inc.)"),
(0x0959, "Urbs Lighting, LLC"),
(0x095A, "kLabs Research UK"),
(0x095B, "Wuhan Zhongtian Jiaye Mechanical and Electrical Engineering Co. LTD"),
(0x095E, "Hondel Lighting Limited"),
(0x095F, "Elaborated Networks GmbH"),
(0x0960, "Fineline Solutions Ltd."),
(0x0962, "Finland Lighting Oy"),
(0x0965, "Fontana Fountains"),
(0x0967, "Arcus Licht- und Praesentationstechnik GmbH"),
(0x0968, "Guangzhou Beyond Lighting Co., Limited."),
Expand All @@ -696,12 +732,14 @@
(0x0986, "ROE Visual Co. Ltd."),
(0x0987, "mathertel.de"),
(0x0989, "YeGrin Liteworks"),
(0x098A, "DongGuan JuYang Electric Co., Ltd"),
(0x098B, "Glow Motion Technologies, LLC."),
(0x098C, "Shenzhen Longrich Energy Sources Technology Co., Ltd."),
(0x098D, "Batmink Ltd."),
(0x098E, "Ecosense Lighting Inc"),
(0x098F, "Digital Sputnik Lighting"),
(0x0990, "Stagelight Holding"),
(0x0991, "Guangdong Pomelo Photoelectric Equipment Co., Ltd"),
(0x0993, "Shenzhen Trigger digital Technology Co., LTD"),
(0x0996, "CCI Power Supplies, LLC"),
(0x0997, "Star Iluminacao Computadorizada LTDA"),
Expand Down Expand Up @@ -737,6 +775,7 @@
(0x09D5, "Shenzhen ImagineVision Technology Limited"),
(0x09D6, "Mittomakers"),
(0x09D7, "Unilumin Group"),
(0x09D8, "Pioneer Lighting Solutions India Pvt Ltd"),
(0x09DE, "Matthias Bauch Software"),
(0x09E9, "Starway"),
(0x09EE, "Suzhou Pinzong Electronic Technology, CO.,Ltd"),
Expand All @@ -761,7 +800,7 @@
(0x120B, "Brilliant Stages Ltd."),
(0x120C, "Shanxi Tian Gong Sheng Optoelectronic Equipment Technology Co."),
(0x1212, "HPL Light Company"),
(0x1221, "SAGITTER - Proel"),
(0x1221, "SAGITTER-SDJ-Proel"),
(0x1222, "SM International"),
(0x1234, "ESTA"),
(0x12DA, "Newlab S.r.l."),
Expand Down Expand Up @@ -797,7 +836,6 @@
(0x16AE, "Electrone Americas Ltd. Co."),
(0x16DC, "Traxon Technologies Ltd."),
(0x16E4, "Aboutshow Color Light Co., LTD"),
(0x16FA, "Lite Puter Enterprise Co., Ltd."),
(0x1701, "ARTBOX"),
(0x170E, "Serva Transport Systems GmbH"),
(0x170F, "Kezun Stage Lighting Equipment Co., Ltd."),
Expand All @@ -813,6 +851,7 @@
(0x1888, "GUANZHOU KAVON STAGE EQUIPMENT CO., LTD."),
(0x18A6, "Steadfast Technology"),
(0x1900, "ADJ Products LLC"),
(0x1901, "Zhongshan Hiline Electronics Co., Ltd."),
(0x1938, "Solid State Luminaires"),
(0x1998, "PLS Electronics Ltd."),
(0x19B9, "Duralamp S.p.A."),
Expand Down Expand Up @@ -1022,6 +1061,7 @@
(0x4466, "DF elettronica s.r.l."),
(0x4469, "Diamante Lighting Srl"),
(0x446C, "Guangdong Delos Lighting Industrial Co.,Ltd."),
(0x4533, "LEDdynamics, Inc."),
(0x453A, "E:cue Control GmbH"),
(0x4541, "Engineering Arts"),
(0x4543, "EC Elettronica Srl"),
Expand Down Expand Up @@ -1153,6 +1193,7 @@
(0x5043, "Pathway Connectivity Inc."),
(0x504C, "Peperoni Lighting-Solutions"),
(0x504D, "Peter Meyer Project Management Adviser GmbH"),
(0x504E, "Uni-Bright nv"),
(0x5050, "Newton Engineering and Design Group LLC"),
(0x5051, "PDQ Manufacturing, Inc"),
(0x5052, "Production Resource Group"),
Expand Down Expand Up @@ -1203,6 +1244,7 @@
(0x534E, "Sand Network Systems"),
(0x5353, "Sean Sill"),
(0x5354, "Stagetronics Ltda"),
(0x5355, "Lochmun Ltd."),
(0x5356, "OOO SAMLIGHT"),
(0x5363, "SpaceCannon vH"),
(0x5368, "ShowCAD Control Systems Ltd."),
Expand Down Expand Up @@ -1269,6 +1311,7 @@
(0x6342, "Mega Systems Inc."),
(0x6364, "CDS advanced technology bv"),
(0x641A, "Heliospectra AB"),
(0x644C, "bdL KG"),
(0x6461, "Digilin Australia"),
(0x6464, "Dangeross Design"),
(0x646C, "dilitronics GmbH"),
Expand All @@ -1284,6 +1327,7 @@
(0x6573, "Environmental Lighting Solutions"),
(0x6574, "Electronic Theatre Controls, Inc."),
(0x6576, "eventa Aktiengesellschaft"),
(0x6600, "WANTS Electronics Co. Ltd."),
(0x6644, "Sunlab Technologies S.L."),
(0x666D, "MAD-Effects"),
(0x6673, "Freescale Semiconductor U.K. Ltd."),
Expand Down Expand Up @@ -1332,6 +1376,9 @@
(0x7365, "Ballantyne Strong Inc."),
(0x736C, "Strand Lighting Ltd."),
(0x7400, "Danalux"),
(0x7401, "Harvatek Corporation"),
(0x7402, "Chris Kallas"),
(0x7403, "Yenrich Technology Corporation"),
(0x7764, "WET"),
(0x7765, "MKT engineering GmbH & Co. KG"),
(0x7777, "Develtron A/S"),
Expand Down
Loading