diff --git a/README.md b/README.md new file mode 100644 index 0000000..ee36cef --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# b0xx-input-viewer + +The B0XX Input Viewer uses electron-serialport and is derived from one if its examples. To install this dependency follow the following instruction and move the node-modules from electron-serialport into the main directory. It can then be run using npm start and compiled. + +To clone and run this repository you'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) installed on your computer. From your command line: + +```bash +# Clone this repository +git clone https://github.com/serialport/electron-serialport.git +# Go into the repository +cd electron-serialport +# Install dependencies +npm install +# Run the app +npm start +``` + +This app may be used by third parties with disclosure. It is easy to change the background by simply changing bg.png. Layout changes are done by changing the images (assigned to each button) as they are just layered and shown and masked accordingly. diff --git a/icons/B0XX.icns b/icons/B0XX.icns new file mode 100644 index 0000000..d8b63e4 Binary files /dev/null and b/icons/B0XX.icns differ diff --git a/icons/Contents.json b/icons/Contents.json new file mode 100644 index 0000000..b32bc8b --- /dev/null +++ b/icons/Contents.json @@ -0,0 +1,68 @@ +{ + "images" : [ + { + "idiom" : "mac", + "size" : "16x16", + "scale" : "1x", + "filename" : "icon_16@1x.png" + }, + { + "idiom" : "mac", + "size" : "16x16", + "scale" : "2x", + "filename" : "icon_16@2x.png" + }, + { + "idiom" : "mac", + "size" : "32x32", + "scale" : "1x", + "filename" : "icon_32@1x.png" + }, + { + "idiom" : "mac", + "size" : "32x32", + "scale" : "2x", + "filename" : "icon_32@2x.png" + }, + { + "idiom" : "mac", + "size" : "128x128", + "scale" : "1x", + "filename" : "icon_128@1x.png" + }, + { + "idiom" : "mac", + "size" : "128x128", + "scale" : "2x", + "filename" : "icon_128@2x.png" + }, + { + "idiom" : "mac", + "size" : "256x256", + "scale" : "1x", + "filename" : "icon_256@1x.png" + }, + { + "idiom" : "mac", + "size" : "256x256", + "scale" : "2x", + "filename" : "icon_256@2x.png" + }, + { + "idiom" : "mac", + "size" : "512x512", + "scale" : "1x", + "filename" : "icon_512@1x.png" + }, + { + "idiom" : "mac", + "size" : "512x512", + "scale" : "2x", + "filename" : "icon_512@2x.png" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/icons/icon_128@1x.png b/icons/icon_128@1x.png new file mode 100644 index 0000000..e13066a Binary files /dev/null and b/icons/icon_128@1x.png differ diff --git a/icons/icon_128@2x.png b/icons/icon_128@2x.png new file mode 100644 index 0000000..de084e4 Binary files /dev/null and b/icons/icon_128@2x.png differ diff --git a/icons/icon_16@1x.png b/icons/icon_16@1x.png new file mode 100644 index 0000000..3c1633c Binary files /dev/null and b/icons/icon_16@1x.png differ diff --git a/icons/icon_16@2x.png b/icons/icon_16@2x.png new file mode 100644 index 0000000..6aaa8fe Binary files /dev/null and b/icons/icon_16@2x.png differ diff --git a/icons/icon_256@1x.png b/icons/icon_256@1x.png new file mode 100644 index 0000000..de084e4 Binary files /dev/null and b/icons/icon_256@1x.png differ diff --git a/icons/icon_256@2x.png b/icons/icon_256@2x.png new file mode 100644 index 0000000..a5d8da5 Binary files /dev/null and b/icons/icon_256@2x.png differ diff --git a/icons/icon_32@1x.png b/icons/icon_32@1x.png new file mode 100644 index 0000000..6aaa8fe Binary files /dev/null and b/icons/icon_32@1x.png differ diff --git a/icons/icon_32@2x.png b/icons/icon_32@2x.png new file mode 100644 index 0000000..3d3eade Binary files /dev/null and b/icons/icon_32@2x.png differ diff --git a/icons/icon_512@1x.png b/icons/icon_512@1x.png new file mode 100644 index 0000000..a5d8da5 Binary files /dev/null and b/icons/icon_512@1x.png differ diff --git a/icons/icon_512@2x.png b/icons/icon_512@2x.png new file mode 100644 index 0000000..e94f6d3 Binary files /dev/null and b/icons/icon_512@2x.png differ diff --git a/images/A.png b/images/A.png new file mode 100644 index 0000000..c5578b9 Binary files /dev/null and b/images/A.png differ diff --git a/images/B.png b/images/B.png new file mode 100644 index 0000000..2d31555 Binary files /dev/null and b/images/B.png differ diff --git a/images/B0XX.icns b/images/B0XX.icns new file mode 100644 index 0000000..d117ffa Binary files /dev/null and b/images/B0XX.icns differ diff --git a/images/B0XX.ico b/images/B0XX.ico new file mode 100644 index 0000000..19a8c30 Binary files /dev/null and b/images/B0XX.ico differ diff --git a/images/B0XX_256.ico b/images/B0XX_256.ico new file mode 100644 index 0000000..ffa74ce Binary files /dev/null and b/images/B0XX_256.ico differ diff --git a/images/CD.png b/images/CD.png new file mode 100644 index 0000000..d699c78 Binary files /dev/null and b/images/CD.png differ diff --git a/images/CL.png b/images/CL.png new file mode 100644 index 0000000..d87745f Binary files /dev/null and b/images/CL.png differ diff --git a/images/CR.png b/images/CR.png new file mode 100644 index 0000000..11cb7ee Binary files /dev/null and b/images/CR.png differ diff --git a/images/CU.png b/images/CU.png new file mode 100644 index 0000000..6ad2db3 Binary files /dev/null and b/images/CU.png differ diff --git a/images/DN.png b/images/DN.png new file mode 100644 index 0000000..b9aaaf8 Binary files /dev/null and b/images/DN.png differ diff --git a/images/L.png b/images/L.png new file mode 100644 index 0000000..45388f8 Binary files /dev/null and b/images/L.png differ diff --git a/images/LS.png b/images/LS.png new file mode 100644 index 0000000..a333b02 Binary files /dev/null and b/images/LS.png differ diff --git a/images/LT.png b/images/LT.png new file mode 100644 index 0000000..0d739ef Binary files /dev/null and b/images/LT.png differ diff --git a/images/M1.png b/images/M1.png new file mode 100644 index 0000000..6b3f4f5 Binary files /dev/null and b/images/M1.png differ diff --git a/images/M2.png b/images/M2.png new file mode 100644 index 0000000..4209fca Binary files /dev/null and b/images/M2.png differ diff --git a/images/MS.png b/images/MS.png new file mode 100644 index 0000000..578617a Binary files /dev/null and b/images/MS.png differ diff --git a/images/R.png b/images/R.png new file mode 100644 index 0000000..86f953f Binary files /dev/null and b/images/R.png differ diff --git a/images/R2.png b/images/R2.png new file mode 100644 index 0000000..d7ba2a5 Binary files /dev/null and b/images/R2.png differ diff --git a/images/RT.png b/images/RT.png new file mode 100644 index 0000000..7462f9e Binary files /dev/null and b/images/RT.png differ diff --git a/images/ST.png b/images/ST.png new file mode 100644 index 0000000..5ef48a1 Binary files /dev/null and b/images/ST.png differ diff --git a/images/UP.png b/images/UP.png new file mode 100644 index 0000000..64cba45 Binary files /dev/null and b/images/UP.png differ diff --git a/images/X.png b/images/X.png new file mode 100644 index 0000000..b8b328b Binary files /dev/null and b/images/X.png differ diff --git a/images/Y.png b/images/Y.png new file mode 100644 index 0000000..896170c Binary files /dev/null and b/images/Y.png differ diff --git a/images/Z.png b/images/Z.png new file mode 100644 index 0000000..0a716bf Binary files /dev/null and b/images/Z.png differ diff --git a/images/bg.png b/images/bg.png new file mode 100644 index 0000000..892c1f4 Binary files /dev/null and b/images/bg.png differ diff --git a/images/recconect.png b/images/recconect.png new file mode 100644 index 0000000..a6b2322 Binary files /dev/null and b/images/recconect.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..9b406a2 --- /dev/null +++ b/index.html @@ -0,0 +1,46 @@ + + + +
+ +