├── README.txt ├── arduino code ├── hardware │ └── arduino │ │ └── boards.txt └── libraries │ └── HIDSerial │ ├── Changelog.txt │ ├── CommercialLicense.txt │ ├── HIDSerial.cpp │ ├── HIDSerial.h │ ├── License.txt │ ├── Readme.txt │ ├── USB-ID-FAQ.txt │ ├── USB-IDs-for-free.txt │ ├── asmcommon.inc │ ├── examples │ ├── analog_print │ │ └── analog_print.ino │ ├── button │ │ └── button.ino │ ├── echo │ │ └── echo.ino │ └── hello_world │ │ └── hello_world.ino │ ├── oddebug.c │ ├── oddebug.h │ ├── usbconfig-prototype.h │ ├── usbconfig.h │ ├── usbdrv.c │ ├── usbdrv.h │ ├── usbdrvasm.S │ ├── usbdrvasm.asm │ ├── usbdrvasm12.inc │ ├── usbdrvasm128.inc │ ├── usbdrvasm15.inc │ ├── usbdrvasm16.inc │ ├── usbdrvasm165.inc │ ├── usbdrvasm18-crc.inc │ ├── usbdrvasm20.inc │ └── usbportability.h ├── bootloader ├── Makefile ├── bootloaderconfig.h ├── burn.bat ├── main.bin ├── main.c ├── main.hex ├── main.o ├── readme.txt ├── usbconfig.h └── usbdrv │ ├── Changelog.txt │ ├── CommercialLicense.txt │ ├── License.txt │ ├── Readme.txt │ ├── USB-ID-FAQ.txt │ ├── USB-IDs-for-free.txt │ ├── USBID-License.txt │ ├── asmcommon.inc │ ├── oddebug.c │ ├── oddebug.h │ ├── usbconfig-prototype.h │ ├── usbdrv.c │ ├── usbdrv.h │ ├── usbdrvasm.S │ ├── usbdrvasm.asm │ ├── usbdrvasm.o │ ├── usbdrvasm12.inc │ ├── usbdrvasm128.inc │ ├── usbdrvasm15.inc │ ├── usbdrvasm16.inc │ ├── usbdrvasm165.inc │ ├── usbdrvasm18-crc.inc │ ├── usbdrvasm20.inc │ └── usbportability.h ├── host software ├── HIDSerialMonitor.pde ├── README.txt ├── application.linux32 │ ├── HIDSerialMonitor │ ├── lib │ │ ├── G4P.jar │ │ ├── HIDSerialMonitor.jar │ │ ├── core.jar │ │ ├── gluegen-rt-natives-linux-i586.jar │ │ ├── gluegen-rt.jar │ │ ├── hidapi-1.1.jar │ │ ├── hidapi.jar │ │ ├── jogl-all-natives-linux-i586.jar │ │ └── jogl-all.jar │ └── source │ │ ├── HIDSerialMonitor.java │ │ └── HIDSerialMonitor.pde ├── application.linux64 │ ├── HIDSerialMonitor │ ├── lib │ │ ├── G4P.jar │ │ ├── HIDSerialMonitor.jar │ │ ├── core.jar │ │ ├── gluegen-rt-natives-linux-amd64.jar │ │ ├── gluegen-rt.jar │ │ ├── hidapi-1.1.jar │ │ ├── hidapi.jar │ │ ├── jogl-all-natives-linux-amd64.jar │ │ └── jogl-all.jar │ └── source │ │ ├── HIDSerialMonitor.java │ │ └── HIDSerialMonitor.pde ├── application.macosx │ ├── HIDSerialMonitor.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── JavaApplicationStub │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── Java │ │ │ ├── G4P.jar │ │ │ ├── HIDSerialMonitor.jar │ │ │ ├── core.jar │ │ │ ├── gluegen-rt-natives-macosx-universal.jar │ │ │ ├── gluegen-rt.jar │ │ │ ├── hidapi-1.1.jar │ │ │ ├── hidapi.jar │ │ │ ├── jogl-all-natives-macosx-universal.jar │ │ │ └── jogl-all.jar │ │ │ └── sketch.icns │ └── source │ │ ├── HIDSerialMonitor.java │ │ └── HIDSerialMonitor.pde ├── application.windows32 │ ├── HIDSerialMonitor.exe │ ├── lib │ │ ├── G4P.jar │ │ ├── HIDSerialMonitor.jar │ │ ├── args.txt │ │ ├── core.jar │ │ ├── gluegen-rt-natives-windows-i586.jar │ │ ├── gluegen-rt.jar │ │ ├── hidapi-1.1.jar │ │ ├── hidapi.jar │ │ ├── jogl-all-natives-windows-i586.jar │ │ └── jogl-all.jar │ └── source │ │ ├── HIDSerialMonitor.java │ │ └── HIDSerialMonitor.pde ├── application.windows64 │ ├── HIDSerialMonitor.bat │ ├── lib │ │ ├── G4P.jar │ │ ├── HIDSerialMonitor.jar │ │ ├── args.txt │ │ ├── core.jar │ │ ├── gluegen-rt-natives-windows-amd64.jar │ │ ├── gluegen-rt.jar │ │ ├── hidapi-1.1.jar │ │ ├── hidapi.jar │ │ ├── jogl-all-natives-windows-amd64.jar │ │ └── jogl-all.jar │ └── source │ │ ├── HIDSerialMonitor.java │ │ └── HIDSerialMonitor.pde └── processing libraries │ └── sketchbook │ └── libraries │ ├── G4P │ ├── examples │ │ ├── G4P_CoolSliders │ │ │ └── G4P_CoolSliders.pde │ │ ├── G4P_CustomSlider_Config │ │ │ ├── G4P_CustomSlider_Config.pde │ │ │ └── configcontrols.pde │ │ ├── G4P_Dialogs │ │ │ └── G4P_Dialogs.pde │ │ ├── G4P_EditTextControls │ │ │ ├── G4P_EditTextControls.pde │ │ │ └── data │ │ │ │ └── book3.txt │ │ ├── G4P_ImageButtons │ │ │ ├── G4P_ImageButtons.pde │ │ │ └── data │ │ │ │ ├── coins0.png │ │ │ │ ├── coins1.png │ │ │ │ ├── coins2.png │ │ │ │ ├── ghost0.png │ │ │ │ ├── ghost1.png │ │ │ │ ├── ghost2.png │ │ │ │ ├── infodown.png │ │ │ │ ├── infomask.png │ │ │ │ ├── infooff.png │ │ │ │ ├── infoover.png │ │ │ │ ├── tjdown.jpg │ │ │ │ ├── tjmask.png │ │ │ │ ├── tjoff.jpg │ │ │ │ └── tjover.jpg │ │ ├── G4P_ImgTogButton │ │ │ ├── G4P_ImgTogButton.pde │ │ │ └── data │ │ │ │ ├── bulb.png │ │ │ │ ├── s2.png │ │ │ │ └── s3.png │ │ ├── G4P_Knob_Config │ │ │ ├── G4P_Knob_Config.pde │ │ │ └── configcontrols.pde │ │ ├── G4P_Mandelbrot │ │ │ └── G4P_Mandelbrot.pde │ │ ├── G4P_RGBmixer │ │ │ └── G4P_RGBmixer.pde │ │ ├── G4P_Showcase │ │ │ ├── G4P_Showcase.pde │ │ │ ├── cinfigwindowcontrols.pde │ │ │ ├── data │ │ │ │ ├── book.txt │ │ │ │ ├── castle.jpg │ │ │ │ └── time.png │ │ │ └── showcasecontrols.pde │ │ ├── G4P_Sketchpad │ │ │ └── G4P_Sketchpad.pde │ │ ├── G4P_Slider2D │ │ │ ├── G4P_Slider2D.pde │ │ │ ├── data │ │ │ │ ├── backdrop.jpg │ │ │ │ ├── sight.png │ │ │ │ └── street-scene.jpg │ │ │ └── sketch.properties │ │ ├── G4P_Slider_Config │ │ │ ├── G4P_Slider_Config.pde │ │ │ └── configcontrols.pde │ │ ├── G4P_Stick │ │ │ └── G4P_Stick.pde │ │ ├── G4P_TextAreaControl │ │ │ ├── G4P_TextAreaControl.pde │ │ │ ├── configcontrols.pde │ │ │ └── data │ │ │ │ └── book3.txt │ │ ├── G4P_TextIconControls │ │ │ ├── G4P_TextIconControls.pde │ │ │ ├── configcontrols.pde │ │ │ └── data │ │ │ │ ├── bugtest.png │ │ │ │ ├── smile.png │ │ │ │ └── tisample.txt │ │ ├── G4P_Timer │ │ │ ├── G4P_Timer.pde │ │ │ └── data │ │ │ │ ├── vfront.png │ │ │ │ └── vrear.jpg │ │ ├── G4P_Toroid │ │ │ ├── G4P_Toroid.pde │ │ │ └── Toroid.pde │ │ ├── G4P_WindowsStarter │ │ │ └── G4P_WindowsStarter.pde │ │ └── G4P_with_PeasyCam │ │ │ └── G4P_with_PeasyCam.pde │ ├── library.properties │ ├── library │ │ ├── G4P.jar │ │ └── core.jar │ └── src │ │ ├── data │ │ ├── blue18px │ │ │ ├── centre.png │ │ │ ├── end_left.png │ │ │ ├── end_right.png │ │ │ ├── handle.png │ │ │ └── handle_mouseover.png │ │ ├── combo0.png │ │ ├── default_gui_palette.png │ │ ├── err0.png │ │ ├── err1.png │ │ ├── err2.png │ │ ├── green_red20px │ │ │ ├── centre.png │ │ │ ├── end_left.png │ │ │ ├── end_right.png │ │ │ ├── handle.png │ │ │ └── handle_mouseover.png │ │ ├── grey_blue │ │ │ ├── centre.png │ │ │ ├── end_left.png │ │ │ ├── end_right.png │ │ │ ├── full_back.png │ │ │ ├── handle.png │ │ │ └── handle_mouseover.png │ │ ├── noimage3.png │ │ ├── pinhead.png │ │ ├── purple18px │ │ │ ├── centre.png │ │ │ ├── end_left.png │ │ │ ├── end_right.png │ │ │ ├── handle.png │ │ │ └── handle_mouseover.png │ │ ├── red_yellow18px │ │ │ ├── centre.png │ │ │ ├── end_left.png │ │ │ ├── end_right.png │ │ │ ├── handle.png │ │ │ └── handle_mouseover.png │ │ ├── tick.png │ │ └── toggle.png │ │ └── g4p_controls │ │ ├── ColorPreviewPanel.java │ │ ├── FileChooserFilter.java │ │ ├── FilenameChooserFilter.java │ │ ├── G4P.java │ │ ├── GAbstractControl.java │ │ ├── GAlign.java │ │ ├── GButton.java │ │ ├── GCScheme.java │ │ ├── GCheckbox.java │ │ ├── GClip.java │ │ ├── GConstants.java │ │ ├── GConstantsInternal.java │ │ ├── GControlMode.java │ │ ├── GCustomSlider.java │ │ ├── GDropList.java │ │ ├── GEditableTextControl.java │ │ ├── GEvent.java │ │ ├── GImageButton.java │ │ ├── GImageToggleButton.java │ │ ├── GKnob.java │ │ ├── GLabel.java │ │ ├── GLinearTrackControl.java │ │ ├── GMessenger.java │ │ ├── GOption.java │ │ ├── GPanel.java │ │ ├── GScrollbar.java │ │ ├── GSketchPad.java │ │ ├── GSlider.java │ │ ├── GSlider2D.java │ │ ├── GStick.java │ │ ├── GTabManager.java │ │ ├── GTextAlign.java │ │ ├── GTextArea.java │ │ ├── GTextBase.java │ │ ├── GTextField.java │ │ ├── GTextIconAlignBase.java │ │ ├── GTimer.java │ │ ├── GToggleControl.java │ │ ├── GToggleGroup.java │ │ ├── GValueControl.java │ │ ├── GValueControl2D.java │ │ ├── GWinApplet.java │ │ ├── GWinData.java │ │ ├── GWindow.java │ │ ├── GWindowCloser.java │ │ ├── GWindowInfo.java │ │ ├── HotSpot.java │ │ ├── ImageManager.java │ │ └── StyledString.java │ └── hidapi │ ├── library.properties │ ├── library │ └── hidapi.jar │ └── src │ └── hidapi │ └── hidapi.java └── schematic ├── 328vusb.png ├── 328vusb.sch └── partlist.txt /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/README.txt -------------------------------------------------------------------------------- /arduino code/hardware/arduino/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/hardware/arduino/boards.txt -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/Changelog.txt -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/CommercialLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/CommercialLicense.txt -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/HIDSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/HIDSerial.cpp -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/HIDSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/HIDSerial.h -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/License.txt -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/Readme.txt -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/USB-ID-FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/USB-ID-FAQ.txt -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/USB-IDs-for-free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/USB-IDs-for-free.txt -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/asmcommon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/asmcommon.inc -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/examples/analog_print/analog_print.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/examples/analog_print/analog_print.ino -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/examples/button/button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/examples/button/button.ino -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/examples/echo/echo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/examples/echo/echo.ino -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/examples/hello_world/hello_world.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/examples/hello_world/hello_world.ino -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/oddebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/oddebug.c -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/oddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/oddebug.h -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbconfig-prototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbconfig-prototype.h -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbconfig.h -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrv.c -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrv.h -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrvasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrvasm.S -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrvasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrvasm.asm -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrvasm12.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrvasm12.inc -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrvasm128.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrvasm128.inc -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrvasm15.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrvasm15.inc -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrvasm16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrvasm16.inc -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrvasm165.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrvasm165.inc -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrvasm18-crc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrvasm18-crc.inc -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbdrvasm20.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbdrvasm20.inc -------------------------------------------------------------------------------- /arduino code/libraries/HIDSerial/usbportability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/arduino code/libraries/HIDSerial/usbportability.h -------------------------------------------------------------------------------- /bootloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/Makefile -------------------------------------------------------------------------------- /bootloader/bootloaderconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/bootloaderconfig.h -------------------------------------------------------------------------------- /bootloader/burn.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/burn.bat -------------------------------------------------------------------------------- /bootloader/main.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/main.bin -------------------------------------------------------------------------------- /bootloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/main.c -------------------------------------------------------------------------------- /bootloader/main.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/main.hex -------------------------------------------------------------------------------- /bootloader/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/main.o -------------------------------------------------------------------------------- /bootloader/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/readme.txt -------------------------------------------------------------------------------- /bootloader/usbconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbconfig.h -------------------------------------------------------------------------------- /bootloader/usbdrv/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/Changelog.txt -------------------------------------------------------------------------------- /bootloader/usbdrv/CommercialLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/CommercialLicense.txt -------------------------------------------------------------------------------- /bootloader/usbdrv/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/License.txt -------------------------------------------------------------------------------- /bootloader/usbdrv/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/Readme.txt -------------------------------------------------------------------------------- /bootloader/usbdrv/USB-ID-FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/USB-ID-FAQ.txt -------------------------------------------------------------------------------- /bootloader/usbdrv/USB-IDs-for-free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/USB-IDs-for-free.txt -------------------------------------------------------------------------------- /bootloader/usbdrv/USBID-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/USBID-License.txt -------------------------------------------------------------------------------- /bootloader/usbdrv/asmcommon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/asmcommon.inc -------------------------------------------------------------------------------- /bootloader/usbdrv/oddebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/oddebug.c -------------------------------------------------------------------------------- /bootloader/usbdrv/oddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/oddebug.h -------------------------------------------------------------------------------- /bootloader/usbdrv/usbconfig-prototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbconfig-prototype.h -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrv.c -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrv.h -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm.S -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm.asm -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm.o -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm12.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm12.inc -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm128.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm128.inc -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm15.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm15.inc -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm16.inc -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm165.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm165.inc -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm18-crc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm18-crc.inc -------------------------------------------------------------------------------- /bootloader/usbdrv/usbdrvasm20.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbdrvasm20.inc -------------------------------------------------------------------------------- /bootloader/usbdrv/usbportability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/bootloader/usbdrv/usbportability.h -------------------------------------------------------------------------------- /host software/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /host software/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/README.txt -------------------------------------------------------------------------------- /host software/application.linux32/HIDSerialMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/HIDSerialMonitor -------------------------------------------------------------------------------- /host software/application.linux32/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/lib/G4P.jar -------------------------------------------------------------------------------- /host software/application.linux32/lib/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/lib/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /host software/application.linux32/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/lib/core.jar -------------------------------------------------------------------------------- /host software/application.linux32/lib/gluegen-rt-natives-linux-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/lib/gluegen-rt-natives-linux-i586.jar -------------------------------------------------------------------------------- /host software/application.linux32/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /host software/application.linux32/lib/hidapi-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/lib/hidapi-1.1.jar -------------------------------------------------------------------------------- /host software/application.linux32/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/lib/hidapi.jar -------------------------------------------------------------------------------- /host software/application.linux32/lib/jogl-all-natives-linux-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/lib/jogl-all-natives-linux-i586.jar -------------------------------------------------------------------------------- /host software/application.linux32/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/lib/jogl-all.jar -------------------------------------------------------------------------------- /host software/application.linux32/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /host software/application.linux32/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux32/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /host software/application.linux64/HIDSerialMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/HIDSerialMonitor -------------------------------------------------------------------------------- /host software/application.linux64/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/lib/G4P.jar -------------------------------------------------------------------------------- /host software/application.linux64/lib/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/lib/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /host software/application.linux64/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/lib/core.jar -------------------------------------------------------------------------------- /host software/application.linux64/lib/gluegen-rt-natives-linux-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/lib/gluegen-rt-natives-linux-amd64.jar -------------------------------------------------------------------------------- /host software/application.linux64/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /host software/application.linux64/lib/hidapi-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/lib/hidapi-1.1.jar -------------------------------------------------------------------------------- /host software/application.linux64/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/lib/hidapi.jar -------------------------------------------------------------------------------- /host software/application.linux64/lib/jogl-all-natives-linux-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/lib/jogl-all-natives-linux-amd64.jar -------------------------------------------------------------------------------- /host software/application.linux64/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/lib/jogl-all.jar -------------------------------------------------------------------------------- /host software/application.linux64/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /host software/application.linux64/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.linux64/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Info.plist -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/MacOS/JavaApplicationStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/MacOS/JavaApplicationStub -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/G4P.jar -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/core.jar -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/gluegen-rt-natives-macosx-universal.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/gluegen-rt-natives-macosx-universal.jar -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/gluegen-rt.jar -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/hidapi-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/hidapi-1.1.jar -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/hidapi.jar -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/jogl-all-natives-macosx-universal.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/jogl-all-natives-macosx-universal.jar -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/jogl-all.jar -------------------------------------------------------------------------------- /host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/sketch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/HIDSerialMonitor.app/Contents/Resources/sketch.icns -------------------------------------------------------------------------------- /host software/application.macosx/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /host software/application.macosx/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.macosx/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /host software/application.windows32/HIDSerialMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/HIDSerialMonitor.exe -------------------------------------------------------------------------------- /host software/application.windows32/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/G4P.jar -------------------------------------------------------------------------------- /host software/application.windows32/lib/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /host software/application.windows32/lib/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/args.txt -------------------------------------------------------------------------------- /host software/application.windows32/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/core.jar -------------------------------------------------------------------------------- /host software/application.windows32/lib/gluegen-rt-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/gluegen-rt-natives-windows-i586.jar -------------------------------------------------------------------------------- /host software/application.windows32/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /host software/application.windows32/lib/hidapi-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/hidapi-1.1.jar -------------------------------------------------------------------------------- /host software/application.windows32/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/hidapi.jar -------------------------------------------------------------------------------- /host software/application.windows32/lib/jogl-all-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/jogl-all-natives-windows-i586.jar -------------------------------------------------------------------------------- /host software/application.windows32/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/lib/jogl-all.jar -------------------------------------------------------------------------------- /host software/application.windows32/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /host software/application.windows32/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows32/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /host software/application.windows64/HIDSerialMonitor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/HIDSerialMonitor.bat -------------------------------------------------------------------------------- /host software/application.windows64/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/G4P.jar -------------------------------------------------------------------------------- /host software/application.windows64/lib/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /host software/application.windows64/lib/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/args.txt -------------------------------------------------------------------------------- /host software/application.windows64/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/core.jar -------------------------------------------------------------------------------- /host software/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar -------------------------------------------------------------------------------- /host software/application.windows64/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /host software/application.windows64/lib/hidapi-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/hidapi-1.1.jar -------------------------------------------------------------------------------- /host software/application.windows64/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/hidapi.jar -------------------------------------------------------------------------------- /host software/application.windows64/lib/jogl-all-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/jogl-all-natives-windows-amd64.jar -------------------------------------------------------------------------------- /host software/application.windows64/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/lib/jogl-all.jar -------------------------------------------------------------------------------- /host software/application.windows64/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /host software/application.windows64/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/application.windows64/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_CoolSliders/G4P_CoolSliders.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_CoolSliders/G4P_CoolSliders.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_CustomSlider_Config/G4P_CustomSlider_Config.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_CustomSlider_Config/G4P_CustomSlider_Config.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_CustomSlider_Config/configcontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_CustomSlider_Config/configcontrols.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Dialogs/G4P_Dialogs.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Dialogs/G4P_Dialogs.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_EditTextControls/G4P_EditTextControls.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_EditTextControls/G4P_EditTextControls.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_EditTextControls/data/book3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_EditTextControls/data/book3.txt -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/G4P_ImageButtons.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/G4P_ImageButtons.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/coins0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/coins0.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/coins1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/coins1.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/coins2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/coins2.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/ghost0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/ghost0.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/ghost1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/ghost1.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/ghost2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/ghost2.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/infodown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/infodown.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/infomask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/infomask.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/infooff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/infooff.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/infoover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/infoover.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/tjdown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/tjdown.jpg -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/tjmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/tjmask.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/tjoff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/tjoff.jpg -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/tjover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImageButtons/data/tjover.jpg -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImgTogButton/G4P_ImgTogButton.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImgTogButton/G4P_ImgTogButton.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImgTogButton/data/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImgTogButton/data/bulb.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImgTogButton/data/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImgTogButton/data/s2.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImgTogButton/data/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_ImgTogButton/data/s3.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Knob_Config/G4P_Knob_Config.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Knob_Config/G4P_Knob_Config.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Knob_Config/configcontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Knob_Config/configcontrols.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Mandelbrot/G4P_Mandelbrot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Mandelbrot/G4P_Mandelbrot.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_RGBmixer/G4P_RGBmixer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_RGBmixer/G4P_RGBmixer.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/G4P_Showcase.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/G4P_Showcase.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/cinfigwindowcontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/cinfigwindowcontrols.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/data/book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/data/book.txt -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/data/castle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/data/castle.jpg -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/data/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/data/time.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/showcasecontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Showcase/showcasecontrols.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Sketchpad/G4P_Sketchpad.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Sketchpad/G4P_Sketchpad.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/G4P_Slider2D.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/G4P_Slider2D.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/data/backdrop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/data/backdrop.jpg -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/data/sight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/data/sight.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/data/street-scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/data/street-scene.jpg -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider2D/sketch.properties -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider_Config/G4P_Slider_Config.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider_Config/G4P_Slider_Config.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider_Config/configcontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Slider_Config/configcontrols.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Stick/G4P_Stick.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Stick/G4P_Stick.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextAreaControl/G4P_TextAreaControl.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextAreaControl/G4P_TextAreaControl.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextAreaControl/configcontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextAreaControl/configcontrols.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextAreaControl/data/book3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextAreaControl/data/book3.txt -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/G4P_TextIconControls.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/G4P_TextIconControls.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/configcontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/configcontrols.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/data/bugtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/data/bugtest.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/data/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/data/smile.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/data/tisample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_TextIconControls/data/tisample.txt -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Timer/G4P_Timer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Timer/G4P_Timer.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Timer/data/vfront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Timer/data/vfront.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Timer/data/vrear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Timer/data/vrear.jpg -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Toroid/G4P_Toroid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Toroid/G4P_Toroid.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Toroid/Toroid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_Toroid/Toroid.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_WindowsStarter/G4P_WindowsStarter.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_WindowsStarter/G4P_WindowsStarter.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_with_PeasyCam/G4P_with_PeasyCam.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/examples/G4P_with_PeasyCam/G4P_with_PeasyCam.pde -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/library.properties -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/library/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/library/G4P.jar -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/library/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/library/core.jar -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/centre.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/end_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/end_left.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/end_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/end_right.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/handle.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/handle_mouseover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/blue18px/handle_mouseover.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/combo0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/combo0.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/default_gui_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/default_gui_palette.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/err0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/err0.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/err1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/err1.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/err2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/err2.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/centre.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/end_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/end_left.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/end_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/end_right.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/handle.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/handle_mouseover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/green_red20px/handle_mouseover.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/centre.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/end_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/end_left.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/end_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/end_right.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/full_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/full_back.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/handle.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/handle_mouseover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/grey_blue/handle_mouseover.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/noimage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/noimage3.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/pinhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/pinhead.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/centre.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/end_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/end_left.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/end_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/end_right.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/handle.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/handle_mouseover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/purple18px/handle_mouseover.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/centre.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/end_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/end_left.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/end_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/end_right.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/handle.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/handle_mouseover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/red_yellow18px/handle_mouseover.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/tick.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/data/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/data/toggle.png -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/ColorPreviewPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/ColorPreviewPanel.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/FileChooserFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/FileChooserFilter.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/FilenameChooserFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/FilenameChooserFilter.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/G4P.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/G4P.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GAbstractControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GAbstractControl.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GAlign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GAlign.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GButton.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GCScheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GCScheme.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GCheckbox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GCheckbox.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GClip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GClip.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GConstants.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GConstantsInternal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GConstantsInternal.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GControlMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GControlMode.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GCustomSlider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GCustomSlider.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GDropList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GDropList.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GEditableTextControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GEditableTextControl.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GEvent.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GImageButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GImageButton.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GImageToggleButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GImageToggleButton.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GKnob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GKnob.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GLabel.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GLinearTrackControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GLinearTrackControl.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GMessenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GMessenger.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GOption.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GPanel.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GScrollbar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GScrollbar.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GSketchPad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GSketchPad.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GSlider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GSlider.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GSlider2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GSlider2D.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GStick.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GStick.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTabManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTabManager.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextAlign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextAlign.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextArea.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextBase.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextField.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextIconAlignBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTextIconAlignBase.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTimer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GTimer.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GToggleControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GToggleControl.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GToggleGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GToggleGroup.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GValueControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GValueControl.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GValueControl2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GValueControl2D.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWinApplet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWinApplet.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWinData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWinData.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWindow.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWindowCloser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWindowCloser.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWindowInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/GWindowInfo.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/HotSpot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/HotSpot.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/ImageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/ImageManager.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/StyledString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/G4P/src/g4p_controls/StyledString.java -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/hidapi/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/hidapi/library.properties -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/hidapi/library/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/hidapi/library/hidapi.jar -------------------------------------------------------------------------------- /host software/processing libraries/sketchbook/libraries/hidapi/src/hidapi/hidapi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/host software/processing libraries/sketchbook/libraries/hidapi/src/hidapi/hidapi.java -------------------------------------------------------------------------------- /schematic/328vusb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/schematic/328vusb.png -------------------------------------------------------------------------------- /schematic/328vusb.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/schematic/328vusb.sch -------------------------------------------------------------------------------- /schematic/partlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/hid-serial/HEAD/schematic/partlist.txt --------------------------------------------------------------------------------