├── README ├── docs ├── v1.1 │ ├── SquareWearProgrammingReference1.0.odt │ ├── SquareWearProgrammingReference1.0.pdf │ ├── SquareWearUserManual-Basics.pdf │ └── SquareWearUserManual-Learning.pdf └── v2.0 │ └── SquareWear2.0.pdf ├── hardware ├── ledmatrix │ ├── ledmatrixv2-brd.png │ ├── ledmatrixv2-sch.png │ ├── ledmatrixv2.brd │ ├── ledmatrixv2.sch │ ├── sqrwear-ledmatrix.brd │ ├── sqrwear-ledmatrix.png │ └── sqrwear-ledmatrix.sch ├── mini │ ├── sqrwear-mini.brd │ ├── sqrwear-mini.png │ └── sqrwear-mini.sch ├── v1.1c (coin) │ ├── sqw_11c.brd │ ├── sqw_11c.png │ └── sqw_11c.sch ├── v1.1p (li-po) │ ├── sqw_11p.brd │ ├── sqw_11p.png │ └── sqw_11p.sch ├── v2.0 │ ├── sqrwear2.0.brd │ ├── sqrwear2.0.png │ └── sqrwear2.0.sch └── v2.3 │ ├── sqw23.brd │ ├── sqw23.sch │ └── sqw23_sch.png └── software ├── v1.1 ├── SquareWearDemo.X │ ├── Makefile │ ├── SquareWear.h │ ├── SquareWearDemo.c │ ├── SquareWearLib.X.lib │ ├── nbproject │ │ ├── Makefile-01.BLINK.mk │ │ ├── Makefile-02.BLINK_NODELAY.mk │ │ ├── Makefile-03.BLINK_ALL.mk │ │ ├── Makefile-04.BUTTON_PRESS.mk │ │ ├── Makefile-05.DIGITAL_INPUT.mk │ │ ├── Makefile-06.SOFTWARE_PWM.mk │ │ ├── Makefile-07.HARDWARE_PWM.mk │ │ ├── Makefile-08.USB_SERIAL_OUTPUT.mk │ │ ├── Makefile-09.USB_SERIAL_INPUT.mk │ │ ├── Makefile-10.ADC_PWM.mk │ │ ├── Makefile-11.ADC_BLINK.mk │ │ ├── Makefile-12.ADC_USB_SERIAL.mk │ │ ├── Makefile-13.TIMER_INTERRUPT.mk │ │ ├── Makefile-14.BUTTON_INTERRUPT.mk │ │ ├── Makefile-15.EXT_INTERRUPT.mk │ │ ├── Makefile-16.USART_OUTPUT.mk │ │ ├── Makefile-17.USART_INPUT.mk │ │ ├── Makefile-18.EEPROM.mk │ │ ├── Makefile-19.FANCY_PWM.mk │ │ ├── Makefile-20.PULSE_SENSOR.mk │ │ ├── Makefile-21.TEMPERATURE_SENSOR.mk │ │ ├── Makefile-22.LED_MULTI_PATTERN.mk │ │ ├── Makefile-default.mk │ │ ├── Makefile-genesis.properties │ │ ├── Makefile-impl.mk │ │ ├── Makefile-local-01.BLINK.mk │ │ ├── Makefile-local-02.BLINK_NODELAY.mk │ │ ├── Makefile-local-03.BLINK_ALL.mk │ │ ├── Makefile-local-04.BUTTON_PRESS.mk │ │ ├── Makefile-local-05.DIGITAL_INPUT.mk │ │ ├── Makefile-local-06.SOFTWARE_PWM.mk │ │ ├── Makefile-local-07.HARDWARE_PWM.mk │ │ ├── Makefile-local-08.USB_SERIAL_OUTPUT.mk │ │ ├── Makefile-local-09.USB_SERIAL_INPUT.mk │ │ ├── Makefile-local-10.ADC_PWM.mk │ │ ├── Makefile-local-11.ADC_BLINK.mk │ │ ├── Makefile-local-12.ADC_USB_SERIAL.mk │ │ ├── Makefile-local-13.TIMER_INTERRUPT.mk │ │ ├── Makefile-local-14.BUTTON_INTERRUPT.mk │ │ ├── Makefile-local-15.EXT_INTERRUPT.mk │ │ ├── Makefile-local-16.USART_OUTPUT.mk │ │ ├── Makefile-local-17.USART_INPUT.mk │ │ ├── Makefile-local-18.EEPROM.mk │ │ ├── Makefile-local-19.FANCY_PWM.mk │ │ ├── Makefile-local-20.PULSE_SENSOR.mk │ │ ├── Makefile-local-21.TEMPERATURE_SENSOR.mk │ │ ├── Makefile-local-22.LED_MULTI_PATTERN.mk │ │ ├── Makefile-local-default.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-01.BLINK.bash │ │ ├── Package-02.BLINK_NODELAY.bash │ │ ├── Package-03.BLINK_ALL.bash │ │ ├── Package-04.BUTTON_PRESS.bash │ │ ├── Package-05.DIGITAL_INPUT.bash │ │ ├── Package-06.SOFTWARE_PWM.bash │ │ ├── Package-07.HARDWARE_PWM.bash │ │ ├── Package-08.USB_SERIAL_OUTPUT.bash │ │ ├── Package-09.USB_SERIAL_INPUT.bash │ │ ├── Package-10.ADC_PWM.bash │ │ ├── Package-11.ADC_BLINK.bash │ │ ├── Package-12.ADC_USB_SERIAL.bash │ │ ├── Package-13.TIMER_INTERRUPT.bash │ │ ├── Package-14.BUTTON_INTERRUPT.bash │ │ ├── Package-15.EXT_INTERRUPT.bash │ │ ├── Package-16.USART_OUTPUT.bash │ │ ├── Package-17.USART_INPUT.bash │ │ ├── Package-18.EEPROM.bash │ │ ├── Package-19.FANCY_PWM.bash │ │ ├── Package-20.PULSE_SENSOR.bash │ │ ├── Package-21.TEMPERATURE_SENSOR.bash │ │ ├── Package-22.LED_MULTI_PATTERN.bash │ │ ├── Package-default.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── SuppressibleMessageMemo.properties │ │ │ ├── configurations.xml │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ └── rm18F14K50.lkr ├── SquareWearTemplate.X │ ├── Makefile │ ├── SquareWear.h │ ├── SquareWearLib.X.lib │ ├── main.c │ ├── nbproject │ │ ├── Makefile-default.mk │ │ ├── Makefile-genesis.properties │ │ ├── Makefile-impl.mk │ │ ├── Makefile-local-default.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-default.bash │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── configurations.xml │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ └── rm18F14K50.lkr ├── Uploader │ ├── CDC inf (Windows Driver) │ │ ├── mchpcdc.cat │ │ └── mchpcdc.inf │ ├── HIDBootloader (Linux 32-bit) │ ├── HIDBootloader (Linux 64-bit) │ ├── HIDBootloader (Mac).app.zip │ ├── HIDBootloader (Windows).exe │ ├── IMPORTANT README.txt │ ├── Linux rules.d │ │ └── 60-microchip.rules │ ├── QtCore4.dll │ ├── QtGui4.dll │ ├── USB Device - HID - HID Bootloader - C18 - PIC18F14K50.hex │ ├── libgcc_s_dw2-1.dll │ └── mingwm10.dll ├── compiled demos │ ├── 01.BLINK │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 02.BLINK_NODELAY │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 03.BLINK_ALL │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 04.BUTTON_PRESS │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 05.DIGITAL_INPUT │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 06.SOFTWARE_PWM │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 07.HARDWARE_PWM │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 08.USB_SERIAL_OUTPUT │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 09.USB_SERIAL_INPUT │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 10.ADC_PWM │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 11.ADC_BLINK │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 12.ADC_USB_SERIAL │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 13.TIMER_INTERRUPT │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 14.BUTTON_INTERRUPT │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 15.EXT_INTERRUPT │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 16.USART_OUTPUT │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 17.USART_INPUT │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 18.EEPROM │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 19.FANCY_PWM │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 20.PULSE_SENSOR │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ ├── 21.TEMPERATURE_SENSOR │ │ └── production │ │ │ ├── SquareWearDemo.X.production.cof │ │ │ └── SquareWearDemo.X.production.hex │ └── 22.LED_MULTI_PATTERN │ │ └── production │ │ ├── SquareWearDemo.X.production.cof │ │ └── SquareWearDemo.X.production.hex └── library │ └── SquareWearLib.X │ ├── Makefile │ ├── SquareWear.h │ ├── SquareWearLib.c │ ├── USBSerial │ ├── ccode │ │ ├── usb_descriptors.c │ │ ├── usb_device.c │ │ ├── usb_function_cdc.c │ │ └── usb_serial_cdc.c │ └── include │ │ ├── Compiler.h │ │ ├── GenericTypeDefs.h │ │ ├── HardwareProfile.h │ │ ├── usb.h │ │ ├── usb_ch9.h │ │ ├── usb_common.h │ │ ├── usb_config.h │ │ ├── usb_device.h │ │ ├── usb_device_local.h │ │ ├── usb_function_cdc.h │ │ ├── usb_hal.h │ │ └── usb_hal_pic18.h │ └── nbproject │ ├── Makefile-default.mk │ ├── Makefile-genesis.properties │ ├── Makefile-impl.mk │ ├── Makefile-local-default.mk │ ├── Makefile-variables.mk │ ├── Package-default.bash │ ├── configurations.xml │ ├── private │ ├── configurations.xml │ ├── private.properties │ └── private.xml │ ├── project.properties │ └── project.xml └── v2.0 ├── HIDSerialMonitor ├── HIDSerialMonitor.pde ├── application.linux32 │ ├── HIDSerialMonitor │ ├── lib │ │ ├── G4P.jar │ │ ├── HIDSerialMonitor.jar │ │ ├── core.jar │ │ ├── gluegen-rt-natives-linux-i586.jar │ │ ├── gluegen-rt.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.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.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.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.jar │ ├── jogl-all-natives-windows-amd64.jar │ └── jogl-all.jar │ └── source │ ├── HIDSerialMonitor.java │ └── HIDSerialMonitor.pde ├── README.txt ├── arduino-1.0.5 ├── hardware │ └── arduino │ │ └── boards.txt └── libraries │ └── SquareWear2 │ ├── Changelog.txt │ ├── CommercialLicense.txt │ ├── HIDSerial.cpp │ ├── HIDSerial.h │ ├── License.txt │ ├── PciListener.h │ ├── PciListenerImp.cpp │ ├── PciListenerImp.h │ ├── PciManager.cpp │ ├── PciManager.h │ ├── Readme.txt │ ├── SoftPWM.cpp │ ├── SoftPWM.h │ ├── SoftPWM_timer.h │ ├── USB-ID-FAQ.txt │ ├── USB-IDs-for-free.txt │ ├── asmcommon.inc │ ├── examples │ ├── 01.Basics │ │ ├── blink │ │ │ └── blink.ino │ │ ├── button │ │ │ └── button.ino │ │ ├── demopack │ │ │ └── demopack.ino │ │ ├── demopack_eeprom │ │ │ └── demopack_eeprom.ino │ │ └── fade │ │ │ └── fade.ino │ ├── 02.Sensors │ │ ├── light_sensor │ │ │ └── light_sensor.ino │ │ ├── light_sensor_buzzer │ │ │ └── light_sensor_buzzer.ino │ │ ├── music_box │ │ │ └── music_box.ino │ │ ├── temp_sensor │ │ │ └── temp_sensor.ino │ │ └── touch_sensing │ │ │ └── touch_sensing.ino │ ├── 03.Serial │ │ ├── hid_button │ │ │ └── hid_button.ino │ │ ├── hid_echo │ │ │ └── hid_echo.ino │ │ └── hid_sendreceive │ │ │ └── hid_sendreceive.ino │ └── 04.LED Matrix │ │ ├── blink_icon │ │ └── blink_icon.ino │ │ ├── flipbook │ │ ├── flipbook.ino │ │ └── pitchesArray.h │ │ ├── music_note │ │ ├── glcdfont.h │ │ └── music_note.ino │ │ ├── rainbow │ │ └── rainbow.ino │ │ ├── scroll_temp │ │ ├── glcdfont.h │ │ └── scroll_temp.ino │ │ └── scroll_text │ │ ├── glcdfont.h │ │ └── scroll_text.ino │ ├── oddebug.c │ ├── oddebug.h │ ├── pitches.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 ├── fuses.txt ├── main.c ├── 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 │ ├── usbdrvasm12.inc │ ├── usbdrvasm128.inc │ ├── usbdrvasm15.inc │ ├── usbdrvasm16.inc │ ├── usbdrvasm165.inc │ ├── usbdrvasm18-crc.inc │ ├── usbdrvasm20.inc │ └── usbportability.h ├── flipbookHost ├── application.linux32 │ ├── colorSelector.png │ ├── flipbookHost │ ├── lib │ │ ├── G4P.jar │ │ ├── core.jar │ │ ├── flipbookHost.jar │ │ ├── gluegen-rt-natives-linux-i586.jar │ │ ├── gluegen-rt.jar │ │ ├── hidapi.jar │ │ ├── jogl-all-natives-linux-i586.jar │ │ └── jogl-all.jar │ └── source │ │ ├── flipbookHost.java │ │ ├── flipbookHost.pde │ │ └── pitchesArray.java ├── application.linux64 │ ├── colorSelector.png │ ├── flipbookHost │ ├── lib │ │ ├── G4P.jar │ │ ├── core.jar │ │ ├── flipbookHost.jar │ │ ├── gluegen-rt-natives-linux-amd64.jar │ │ ├── gluegen-rt.jar │ │ ├── hidapi.jar │ │ ├── jogl-all-natives-linux-amd64.jar │ │ └── jogl-all.jar │ └── source │ │ ├── flipbookHost.java │ │ ├── flipbookHost.pde │ │ └── pitchesArray.java ├── application.macosx │ ├── colorSelector.png │ ├── flipbookHost.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── JavaApplicationStub │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── Java │ │ │ ├── G4P.jar │ │ │ ├── core.jar │ │ │ ├── flipbookHost.jar │ │ │ ├── gluegen-rt-natives-macosx-universal.jar │ │ │ ├── gluegen-rt.jar │ │ │ ├── hidapi.jar │ │ │ ├── jogl-all-natives-macosx-universal.jar │ │ │ └── jogl-all.jar │ │ │ └── sketch.icns │ └── source │ │ ├── flipbookHost.java │ │ ├── flipbookHost.pde │ │ └── pitchesArray.java ├── application.windows32 │ ├── colorSelector.png │ ├── flipbookHost.exe │ ├── lib │ │ ├── G4P.jar │ │ ├── args.txt │ │ ├── core.jar │ │ ├── flipbookHost.jar │ │ ├── gluegen-rt-natives-windows-i586.jar │ │ ├── gluegen-rt.jar │ │ ├── hidapi.jar │ │ ├── jogl-all-natives-windows-i586.jar │ │ └── jogl-all.jar │ └── source │ │ ├── flipbookHost.java │ │ ├── flipbookHost.pde │ │ └── pitchesArray.java ├── application.windows64 │ ├── colorSelector.png │ ├── flipbookHost.bat │ ├── lib │ │ ├── G4P.jar │ │ ├── args.txt │ │ ├── core.jar │ │ ├── flipbookHost.jar │ │ ├── gluegen-rt-natives-windows-amd64.jar │ │ ├── gluegen-rt.jar │ │ ├── hidapi.jar │ │ ├── jogl-all-natives-windows-amd64.jar │ │ └── jogl-all.jar │ └── source │ │ ├── flipbookHost.java │ │ ├── flipbookHost.pde │ │ └── pitchesArray.java ├── colorSelector.png ├── flipbookHost.pde └── pitchesArray.java └── usbasp_windows_driver └── usbasp-windriver.2011-05-28 ├── Readme.txt ├── libusb_0.1.12.1 ├── libusb0.dll ├── libusb0.sys ├── libusb0_x64.dll ├── libusb0_x64.sys ├── testlibusb-win.exe ├── testlibusb.exe ├── usbasp.cat ├── usbasp.inf └── usbasp_x64.cat └── libusb_1.2.4.0 ├── amd64 ├── libusb0.dll └── libusb0.sys ├── ia64 ├── libusb0.dll └── libusb0.sys ├── installer_x64.exe ├── installer_x86.exe ├── libusb-win32-bin-README.txt ├── license └── libusb-win32 │ └── installer_license.txt ├── usbasp.cat ├── usbasp.inf └── x86 ├── libusb0.sys └── libusb0_x86.dll /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/README -------------------------------------------------------------------------------- /docs/v1.1/SquareWearProgrammingReference1.0.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/docs/v1.1/SquareWearProgrammingReference1.0.odt -------------------------------------------------------------------------------- /docs/v1.1/SquareWearProgrammingReference1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/docs/v1.1/SquareWearProgrammingReference1.0.pdf -------------------------------------------------------------------------------- /docs/v1.1/SquareWearUserManual-Basics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/docs/v1.1/SquareWearUserManual-Basics.pdf -------------------------------------------------------------------------------- /docs/v1.1/SquareWearUserManual-Learning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/docs/v1.1/SquareWearUserManual-Learning.pdf -------------------------------------------------------------------------------- /docs/v2.0/SquareWear2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/docs/v2.0/SquareWear2.0.pdf -------------------------------------------------------------------------------- /hardware/ledmatrix/ledmatrixv2-brd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/ledmatrix/ledmatrixv2-brd.png -------------------------------------------------------------------------------- /hardware/ledmatrix/ledmatrixv2-sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/ledmatrix/ledmatrixv2-sch.png -------------------------------------------------------------------------------- /hardware/ledmatrix/ledmatrixv2.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/ledmatrix/ledmatrixv2.brd -------------------------------------------------------------------------------- /hardware/ledmatrix/ledmatrixv2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/ledmatrix/ledmatrixv2.sch -------------------------------------------------------------------------------- /hardware/ledmatrix/sqrwear-ledmatrix.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/ledmatrix/sqrwear-ledmatrix.brd -------------------------------------------------------------------------------- /hardware/ledmatrix/sqrwear-ledmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/ledmatrix/sqrwear-ledmatrix.png -------------------------------------------------------------------------------- /hardware/ledmatrix/sqrwear-ledmatrix.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/ledmatrix/sqrwear-ledmatrix.sch -------------------------------------------------------------------------------- /hardware/mini/sqrwear-mini.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/mini/sqrwear-mini.brd -------------------------------------------------------------------------------- /hardware/mini/sqrwear-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/mini/sqrwear-mini.png -------------------------------------------------------------------------------- /hardware/mini/sqrwear-mini.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/mini/sqrwear-mini.sch -------------------------------------------------------------------------------- /hardware/v1.1c (coin)/sqw_11c.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v1.1c (coin)/sqw_11c.brd -------------------------------------------------------------------------------- /hardware/v1.1c (coin)/sqw_11c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v1.1c (coin)/sqw_11c.png -------------------------------------------------------------------------------- /hardware/v1.1c (coin)/sqw_11c.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v1.1c (coin)/sqw_11c.sch -------------------------------------------------------------------------------- /hardware/v1.1p (li-po)/sqw_11p.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v1.1p (li-po)/sqw_11p.brd -------------------------------------------------------------------------------- /hardware/v1.1p (li-po)/sqw_11p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v1.1p (li-po)/sqw_11p.png -------------------------------------------------------------------------------- /hardware/v1.1p (li-po)/sqw_11p.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v1.1p (li-po)/sqw_11p.sch -------------------------------------------------------------------------------- /hardware/v2.0/sqrwear2.0.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v2.0/sqrwear2.0.brd -------------------------------------------------------------------------------- /hardware/v2.0/sqrwear2.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v2.0/sqrwear2.0.png -------------------------------------------------------------------------------- /hardware/v2.0/sqrwear2.0.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v2.0/sqrwear2.0.sch -------------------------------------------------------------------------------- /hardware/v2.3/sqw23.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v2.3/sqw23.brd -------------------------------------------------------------------------------- /hardware/v2.3/sqw23.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v2.3/sqw23.sch -------------------------------------------------------------------------------- /hardware/v2.3/sqw23_sch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/hardware/v2.3/sqw23_sch.png -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/Makefile -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/SquareWear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/SquareWear.h -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/SquareWearDemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/SquareWearDemo.c -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/SquareWearLib.X.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/SquareWearLib.X.lib -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-01.BLINK.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-01.BLINK.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-02.BLINK_NODELAY.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-02.BLINK_NODELAY.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-03.BLINK_ALL.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-03.BLINK_ALL.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-04.BUTTON_PRESS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-04.BUTTON_PRESS.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-05.DIGITAL_INPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-05.DIGITAL_INPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-06.SOFTWARE_PWM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-06.SOFTWARE_PWM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-07.HARDWARE_PWM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-07.HARDWARE_PWM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-08.USB_SERIAL_OUTPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-08.USB_SERIAL_OUTPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-09.USB_SERIAL_INPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-09.USB_SERIAL_INPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-10.ADC_PWM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-10.ADC_PWM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-11.ADC_BLINK.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-11.ADC_BLINK.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-12.ADC_USB_SERIAL.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-12.ADC_USB_SERIAL.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-13.TIMER_INTERRUPT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-13.TIMER_INTERRUPT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-14.BUTTON_INTERRUPT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-14.BUTTON_INTERRUPT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-15.EXT_INTERRUPT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-15.EXT_INTERRUPT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-16.USART_OUTPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-16.USART_OUTPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-17.USART_INPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-17.USART_INPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-18.EEPROM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-18.EEPROM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-19.FANCY_PWM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-19.FANCY_PWM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-20.PULSE_SENSOR.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-20.PULSE_SENSOR.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-21.TEMPERATURE_SENSOR.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-21.TEMPERATURE_SENSOR.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-22.LED_MULTI_PATTERN.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-22.LED_MULTI_PATTERN.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-default.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-genesis.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-genesis.properties -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-01.BLINK.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-01.BLINK.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-02.BLINK_NODELAY.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-02.BLINK_NODELAY.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-03.BLINK_ALL.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-03.BLINK_ALL.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-04.BUTTON_PRESS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-04.BUTTON_PRESS.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-05.DIGITAL_INPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-05.DIGITAL_INPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-06.SOFTWARE_PWM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-06.SOFTWARE_PWM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-07.HARDWARE_PWM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-07.HARDWARE_PWM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-08.USB_SERIAL_OUTPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-08.USB_SERIAL_OUTPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-09.USB_SERIAL_INPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-09.USB_SERIAL_INPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-10.ADC_PWM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-10.ADC_PWM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-11.ADC_BLINK.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-11.ADC_BLINK.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-12.ADC_USB_SERIAL.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-12.ADC_USB_SERIAL.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-13.TIMER_INTERRUPT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-13.TIMER_INTERRUPT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-14.BUTTON_INTERRUPT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-14.BUTTON_INTERRUPT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-15.EXT_INTERRUPT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-15.EXT_INTERRUPT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-16.USART_OUTPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-16.USART_OUTPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-17.USART_INPUT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-17.USART_INPUT.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-18.EEPROM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-18.EEPROM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-19.FANCY_PWM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-19.FANCY_PWM.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-20.PULSE_SENSOR.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-20.PULSE_SENSOR.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-21.TEMPERATURE_SENSOR.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-21.TEMPERATURE_SENSOR.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-22.LED_MULTI_PATTERN.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-22.LED_MULTI_PATTERN.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-local-default.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-01.BLINK.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-01.BLINK.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-02.BLINK_NODELAY.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-02.BLINK_NODELAY.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-03.BLINK_ALL.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-03.BLINK_ALL.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-04.BUTTON_PRESS.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-04.BUTTON_PRESS.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-05.DIGITAL_INPUT.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-05.DIGITAL_INPUT.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-06.SOFTWARE_PWM.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-06.SOFTWARE_PWM.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-07.HARDWARE_PWM.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-07.HARDWARE_PWM.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-08.USB_SERIAL_OUTPUT.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-08.USB_SERIAL_OUTPUT.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-09.USB_SERIAL_INPUT.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-09.USB_SERIAL_INPUT.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-10.ADC_PWM.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-10.ADC_PWM.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-11.ADC_BLINK.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-11.ADC_BLINK.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-12.ADC_USB_SERIAL.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-12.ADC_USB_SERIAL.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-13.TIMER_INTERRUPT.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-13.TIMER_INTERRUPT.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-14.BUTTON_INTERRUPT.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-14.BUTTON_INTERRUPT.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-15.EXT_INTERRUPT.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-15.EXT_INTERRUPT.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-16.USART_OUTPUT.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-16.USART_OUTPUT.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-17.USART_INPUT.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-17.USART_INPUT.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-18.EEPROM.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-18.EEPROM.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-19.FANCY_PWM.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-19.FANCY_PWM.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-20.PULSE_SENSOR.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-20.PULSE_SENSOR.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-21.TEMPERATURE_SENSOR.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-21.TEMPERATURE_SENSOR.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-22.LED_MULTI_PATTERN.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-22.LED_MULTI_PATTERN.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/Package-default.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/Package-default.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/configurations.xml -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/private/SuppressibleMessageMemo.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/private/SuppressibleMessageMemo.properties -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/private/private.xml -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/nbproject/project.xml -------------------------------------------------------------------------------- /software/v1.1/SquareWearDemo.X/rm18F14K50.lkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearDemo.X/rm18F14K50.lkr -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/Makefile -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/SquareWear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/SquareWear.h -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/SquareWearLib.X.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/SquareWearLib.X.lib -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/main.c -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/Makefile-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/Makefile-default.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/Makefile-genesis.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/Makefile-genesis.properties -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/Makefile-local-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/Makefile-local-default.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/Package-default.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/Package-default.bash -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/configurations.xml -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/private/private.xml -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/nbproject/project.xml -------------------------------------------------------------------------------- /software/v1.1/SquareWearTemplate.X/rm18F14K50.lkr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/SquareWearTemplate.X/rm18F14K50.lkr -------------------------------------------------------------------------------- /software/v1.1/Uploader/CDC inf (Windows Driver)/mchpcdc.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/CDC inf (Windows Driver)/mchpcdc.cat -------------------------------------------------------------------------------- /software/v1.1/Uploader/CDC inf (Windows Driver)/mchpcdc.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/CDC inf (Windows Driver)/mchpcdc.inf -------------------------------------------------------------------------------- /software/v1.1/Uploader/HIDBootloader (Linux 32-bit): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/HIDBootloader (Linux 32-bit) -------------------------------------------------------------------------------- /software/v1.1/Uploader/HIDBootloader (Linux 64-bit): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/HIDBootloader (Linux 64-bit) -------------------------------------------------------------------------------- /software/v1.1/Uploader/HIDBootloader (Mac).app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/HIDBootloader (Mac).app.zip -------------------------------------------------------------------------------- /software/v1.1/Uploader/HIDBootloader (Windows).exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/HIDBootloader (Windows).exe -------------------------------------------------------------------------------- /software/v1.1/Uploader/IMPORTANT README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/IMPORTANT README.txt -------------------------------------------------------------------------------- /software/v1.1/Uploader/Linux rules.d/60-microchip.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/Linux rules.d/60-microchip.rules -------------------------------------------------------------------------------- /software/v1.1/Uploader/QtCore4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/QtCore4.dll -------------------------------------------------------------------------------- /software/v1.1/Uploader/QtGui4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/QtGui4.dll -------------------------------------------------------------------------------- /software/v1.1/Uploader/USB Device - HID - HID Bootloader - C18 - PIC18F14K50.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/USB Device - HID - HID Bootloader - C18 - PIC18F14K50.hex -------------------------------------------------------------------------------- /software/v1.1/Uploader/libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /software/v1.1/Uploader/mingwm10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/Uploader/mingwm10.dll -------------------------------------------------------------------------------- /software/v1.1/compiled demos/01.BLINK/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/01.BLINK/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/01.BLINK/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/01.BLINK/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/02.BLINK_NODELAY/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/02.BLINK_NODELAY/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/02.BLINK_NODELAY/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/02.BLINK_NODELAY/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/03.BLINK_ALL/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/03.BLINK_ALL/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/03.BLINK_ALL/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/03.BLINK_ALL/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/04.BUTTON_PRESS/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/04.BUTTON_PRESS/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/04.BUTTON_PRESS/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/04.BUTTON_PRESS/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/05.DIGITAL_INPUT/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/05.DIGITAL_INPUT/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/05.DIGITAL_INPUT/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/05.DIGITAL_INPUT/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/06.SOFTWARE_PWM/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/06.SOFTWARE_PWM/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/06.SOFTWARE_PWM/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/06.SOFTWARE_PWM/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/07.HARDWARE_PWM/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/07.HARDWARE_PWM/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/07.HARDWARE_PWM/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/07.HARDWARE_PWM/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/08.USB_SERIAL_OUTPUT/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/08.USB_SERIAL_OUTPUT/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/08.USB_SERIAL_OUTPUT/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/08.USB_SERIAL_OUTPUT/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/09.USB_SERIAL_INPUT/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/09.USB_SERIAL_INPUT/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/09.USB_SERIAL_INPUT/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/09.USB_SERIAL_INPUT/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/10.ADC_PWM/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/10.ADC_PWM/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/10.ADC_PWM/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/10.ADC_PWM/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/11.ADC_BLINK/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/11.ADC_BLINK/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/11.ADC_BLINK/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/11.ADC_BLINK/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/12.ADC_USB_SERIAL/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/12.ADC_USB_SERIAL/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/12.ADC_USB_SERIAL/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/12.ADC_USB_SERIAL/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/13.TIMER_INTERRUPT/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/13.TIMER_INTERRUPT/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/13.TIMER_INTERRUPT/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/13.TIMER_INTERRUPT/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/14.BUTTON_INTERRUPT/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/14.BUTTON_INTERRUPT/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/14.BUTTON_INTERRUPT/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/14.BUTTON_INTERRUPT/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/15.EXT_INTERRUPT/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/15.EXT_INTERRUPT/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/15.EXT_INTERRUPT/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/15.EXT_INTERRUPT/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/16.USART_OUTPUT/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/16.USART_OUTPUT/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/16.USART_OUTPUT/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/16.USART_OUTPUT/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/17.USART_INPUT/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/17.USART_INPUT/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/17.USART_INPUT/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/17.USART_INPUT/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/18.EEPROM/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/18.EEPROM/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/18.EEPROM/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/18.EEPROM/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/19.FANCY_PWM/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/19.FANCY_PWM/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/19.FANCY_PWM/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/19.FANCY_PWM/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/20.PULSE_SENSOR/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/20.PULSE_SENSOR/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/20.PULSE_SENSOR/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/20.PULSE_SENSOR/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/21.TEMPERATURE_SENSOR/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/21.TEMPERATURE_SENSOR/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/21.TEMPERATURE_SENSOR/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/21.TEMPERATURE_SENSOR/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/compiled demos/22.LED_MULTI_PATTERN/production/SquareWearDemo.X.production.cof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/22.LED_MULTI_PATTERN/production/SquareWearDemo.X.production.cof -------------------------------------------------------------------------------- /software/v1.1/compiled demos/22.LED_MULTI_PATTERN/production/SquareWearDemo.X.production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/compiled demos/22.LED_MULTI_PATTERN/production/SquareWearDemo.X.production.hex -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/Makefile -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/SquareWear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/SquareWear.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/SquareWearLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/SquareWearLib.c -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/ccode/usb_descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/ccode/usb_descriptors.c -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/ccode/usb_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/ccode/usb_device.c -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/ccode/usb_function_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/ccode/usb_function_cdc.c -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/ccode/usb_serial_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/ccode/usb_serial_cdc.c -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/Compiler.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/GenericTypeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/GenericTypeDefs.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/HardwareProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/HardwareProfile.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/usb.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_ch9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_ch9.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_common.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_config.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_device.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_device_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_device_local.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_function_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_function_cdc.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_hal.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_hal_pic18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/USBSerial/include/usb_hal_pic18.h -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/Makefile-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/Makefile-default.mk -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/Makefile-genesis.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/Makefile-genesis.properties -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/Makefile-local-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/Makefile-local-default.mk -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/Package-default.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/Package-default.bash -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/configurations.xml -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/private/private.xml -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/v1.1/library/SquareWearLib.X/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v1.1/library/SquareWearLib.X/nbproject/project.xml -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/HIDSerialMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/HIDSerialMonitor -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/lib/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/lib/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/lib/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/lib/core.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/lib/gluegen-rt-natives-linux-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/lib/gluegen-rt-natives-linux-i586.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/lib/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/lib/jogl-all-natives-linux-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/lib/jogl-all-natives-linux-i586.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/lib/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux32/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux32/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/HIDSerialMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/HIDSerialMonitor -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/lib/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/lib/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/lib/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/lib/core.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/lib/gluegen-rt-natives-linux-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/lib/gluegen-rt-natives-linux-amd64.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/lib/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/lib/jogl-all-natives-linux-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/lib/jogl-all-natives-linux-amd64.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/lib/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.linux64/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.linux64/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Info.plist -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/MacOS/JavaApplicationStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/MacOS/JavaApplicationStub -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/core.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/gluegen-rt-natives-macosx-universal.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/gluegen-rt-natives-macosx-universal.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/jogl-all-natives-macosx-universal.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/jogl-all-natives-macosx-universal.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/Java/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/sketch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/HIDSerialMonitor.app/Contents/Resources/sketch.icns -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.macosx/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.macosx/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/HIDSerialMonitor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/HIDSerialMonitor.exe -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/lib/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/lib/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/lib/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/lib/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/lib/args.txt -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/lib/core.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/lib/gluegen-rt-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/lib/gluegen-rt-natives-windows-i586.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/lib/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/lib/jogl-all-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/lib/jogl-all-natives-windows-i586.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/lib/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows32/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows32/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/HIDSerialMonitor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/HIDSerialMonitor.bat -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/lib/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/lib/HIDSerialMonitor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/lib/HIDSerialMonitor.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/lib/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/lib/args.txt -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/lib/core.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/lib/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/lib/jogl-all-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/lib/jogl-all-natives-windows-amd64.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/lib/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/source/HIDSerialMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/source/HIDSerialMonitor.java -------------------------------------------------------------------------------- /software/v2.0/HIDSerialMonitor/application.windows64/source/HIDSerialMonitor.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/HIDSerialMonitor/application.windows64/source/HIDSerialMonitor.pde -------------------------------------------------------------------------------- /software/v2.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/README.txt -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/hardware/arduino/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/hardware/arduino/boards.txt -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/Changelog.txt -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/CommercialLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/CommercialLicense.txt -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/HIDSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/HIDSerial.cpp -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/HIDSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/HIDSerial.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/License.txt -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciListener.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciListenerImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciListenerImp.cpp -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciListenerImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciListenerImp.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciManager.cpp -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/PciManager.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/Readme.txt -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/SoftPWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/SoftPWM.cpp -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/SoftPWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/SoftPWM.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/SoftPWM_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/SoftPWM_timer.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/USB-ID-FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/USB-ID-FAQ.txt -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/USB-IDs-for-free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/USB-IDs-for-free.txt -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/asmcommon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/asmcommon.inc -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/blink/blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/blink/blink.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/button/button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/button/button.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/demopack/demopack.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/demopack/demopack.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/demopack_eeprom/demopack_eeprom.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/demopack_eeprom/demopack_eeprom.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/fade/fade.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/01.Basics/fade/fade.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/light_sensor/light_sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/light_sensor/light_sensor.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/light_sensor_buzzer/light_sensor_buzzer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/light_sensor_buzzer/light_sensor_buzzer.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/music_box/music_box.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/music_box/music_box.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/temp_sensor/temp_sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/temp_sensor/temp_sensor.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/touch_sensing/touch_sensing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/02.Sensors/touch_sensing/touch_sensing.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/03.Serial/hid_button/hid_button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/03.Serial/hid_button/hid_button.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/03.Serial/hid_echo/hid_echo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/03.Serial/hid_echo/hid_echo.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/03.Serial/hid_sendreceive/hid_sendreceive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/03.Serial/hid_sendreceive/hid_sendreceive.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/blink_icon/blink_icon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/blink_icon/blink_icon.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/flipbook/flipbook.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/flipbook/flipbook.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/flipbook/pitchesArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/flipbook/pitchesArray.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/music_note/glcdfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/music_note/glcdfont.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/music_note/music_note.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/music_note/music_note.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/rainbow/rainbow.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/rainbow/rainbow.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/scroll_temp/glcdfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/scroll_temp/glcdfont.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/scroll_temp/scroll_temp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/scroll_temp/scroll_temp.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/scroll_text/glcdfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/scroll_text/glcdfont.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/scroll_text/scroll_text.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/examples/04.LED Matrix/scroll_text/scroll_text.ino -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/oddebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/oddebug.c -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/oddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/oddebug.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/pitches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/pitches.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbconfig-prototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbconfig-prototype.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbconfig.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrv.c -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrv.h -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm.S -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm.asm -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm12.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm12.inc -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm128.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm128.inc -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm15.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm15.inc -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm16.inc -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm165.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm165.inc -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm18-crc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm18-crc.inc -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm20.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbdrvasm20.inc -------------------------------------------------------------------------------- /software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbportability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/arduino-1.0.5/libraries/SquareWear2/usbportability.h -------------------------------------------------------------------------------- /software/v2.0/bootloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/Makefile -------------------------------------------------------------------------------- /software/v2.0/bootloader/bootloaderconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/bootloaderconfig.h -------------------------------------------------------------------------------- /software/v2.0/bootloader/burn.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/burn.bat -------------------------------------------------------------------------------- /software/v2.0/bootloader/fuses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/fuses.txt -------------------------------------------------------------------------------- /software/v2.0/bootloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/main.c -------------------------------------------------------------------------------- /software/v2.0/bootloader/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/readme.txt -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbconfig.h -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/Changelog.txt -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/CommercialLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/CommercialLicense.txt -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/License.txt -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/Readme.txt -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/USB-ID-FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/USB-ID-FAQ.txt -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/USB-IDs-for-free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/USB-IDs-for-free.txt -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/USBID-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/USBID-License.txt -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/asmcommon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/asmcommon.inc -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/oddebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/oddebug.c -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/oddebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/oddebug.h -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbconfig-prototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbconfig-prototype.h -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrv.c -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrv.h -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrvasm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrvasm.S -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrvasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrvasm.asm -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrvasm12.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrvasm12.inc -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrvasm128.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrvasm128.inc -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrvasm15.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrvasm15.inc -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrvasm16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrvasm16.inc -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrvasm165.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrvasm165.inc -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrvasm18-crc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrvasm18-crc.inc -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbdrvasm20.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbdrvasm20.inc -------------------------------------------------------------------------------- /software/v2.0/bootloader/usbdrv/usbportability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/bootloader/usbdrv/usbportability.h -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/colorSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/colorSelector.png -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/flipbookHost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/flipbookHost -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/lib/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/lib/core.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/lib/flipbookHost.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/lib/flipbookHost.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/lib/gluegen-rt-natives-linux-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/lib/gluegen-rt-natives-linux-i586.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/lib/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/lib/jogl-all-natives-linux-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/lib/jogl-all-natives-linux-i586.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/lib/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/source/flipbookHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/source/flipbookHost.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/source/flipbookHost.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/source/flipbookHost.pde -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux32/source/pitchesArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux32/source/pitchesArray.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/colorSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/colorSelector.png -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/flipbookHost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/flipbookHost -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/lib/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/lib/core.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/lib/flipbookHost.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/lib/flipbookHost.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/lib/gluegen-rt-natives-linux-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/lib/gluegen-rt-natives-linux-amd64.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/lib/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/lib/jogl-all-natives-linux-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/lib/jogl-all-natives-linux-amd64.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/lib/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/source/flipbookHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/source/flipbookHost.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/source/flipbookHost.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/source/flipbookHost.pde -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.linux64/source/pitchesArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.linux64/source/pitchesArray.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/colorSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/colorSelector.png -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Info.plist -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/MacOS/JavaApplicationStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/MacOS/JavaApplicationStub -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/core.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/flipbookHost.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/flipbookHost.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/gluegen-rt-natives-macosx-universal.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/gluegen-rt-natives-macosx-universal.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/jogl-all-natives-macosx-universal.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/jogl-all-natives-macosx-universal.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/Java/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/sketch.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/flipbookHost.app/Contents/Resources/sketch.icns -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/source/flipbookHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/source/flipbookHost.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/source/flipbookHost.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/source/flipbookHost.pde -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.macosx/source/pitchesArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.macosx/source/pitchesArray.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/colorSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/colorSelector.png -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/flipbookHost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/flipbookHost.exe -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/lib/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/lib/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/lib/args.txt -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/lib/core.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/lib/flipbookHost.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/lib/flipbookHost.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/lib/gluegen-rt-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/lib/gluegen-rt-natives-windows-i586.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/lib/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/lib/jogl-all-natives-windows-i586.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/lib/jogl-all-natives-windows-i586.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/lib/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/source/flipbookHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/source/flipbookHost.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/source/flipbookHost.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/source/flipbookHost.pde -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows32/source/pitchesArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows32/source/pitchesArray.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/colorSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/colorSelector.png -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/flipbookHost.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/flipbookHost.bat -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/lib/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/lib/G4P.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/lib/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/lib/args.txt -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/lib/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/lib/core.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/lib/flipbookHost.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/lib/flipbookHost.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/lib/gluegen-rt-natives-windows-amd64.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/lib/gluegen-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/lib/gluegen-rt.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/lib/hidapi.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/lib/hidapi.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/lib/jogl-all-natives-windows-amd64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/lib/jogl-all-natives-windows-amd64.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/lib/jogl-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/lib/jogl-all.jar -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/source/flipbookHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/source/flipbookHost.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/source/flipbookHost.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/source/flipbookHost.pde -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/application.windows64/source/pitchesArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/application.windows64/source/pitchesArray.java -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/colorSelector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/colorSelector.png -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/flipbookHost.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/flipbookHost.pde -------------------------------------------------------------------------------- /software/v2.0/flipbookHost/pitchesArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/flipbookHost/pitchesArray.java -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/Readme.txt -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/libusb0.dll -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/libusb0.sys -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/libusb0_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/libusb0_x64.dll -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/libusb0_x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/libusb0_x64.sys -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/testlibusb-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/testlibusb-win.exe -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/testlibusb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/testlibusb.exe -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/usbasp.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/usbasp.cat -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/usbasp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/usbasp.inf -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/usbasp_x64.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_0.1.12.1/usbasp_x64.cat -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/amd64/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/amd64/libusb0.dll -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/amd64/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/amd64/libusb0.sys -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/ia64/libusb0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/ia64/libusb0.dll -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/ia64/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/ia64/libusb0.sys -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/installer_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/installer_x64.exe -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/installer_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/installer_x86.exe -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/libusb-win32-bin-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/libusb-win32-bin-README.txt -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/license/libusb-win32/installer_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/license/libusb-win32/installer_license.txt -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/usbasp.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/usbasp.cat -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/usbasp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/usbasp.inf -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/x86/libusb0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/x86/libusb0.sys -------------------------------------------------------------------------------- /software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/x86/libusb0_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshobby/squarewear/HEAD/software/v2.0/usbasp_windows_driver/usbasp-windriver.2011-05-28/libusb_1.2.4.0/x86/libusb0_x86.dll --------------------------------------------------------------------------------