├── Bluetooth_Configuration ├── HC05_BT_config │ └── HC05_BT_config.ino └── HC06_BT_config │ └── HC06_BT_config.ino ├── CAD ├── Body.STL ├── Foot_Left.STL ├── Foot_Right.STL ├── Head.STL └── Leg.STL ├── Images ├── Otto_Assembly1.PNG ├── Otto_Assembly2.PNG ├── Otto_Assembly3.PNG ├── Otto_Assembly_All.PNG └── Otto_Assembly_Transparency.PNG ├── Libraries_revised ├── BatReader │ ├── BatReader.cpp │ ├── BatReader.h │ ├── BatReader.zip │ └── BatReader_Example │ │ └── BatReader_Example.ino ├── EnableInterrupt │ ├── EnableInterrupt.h │ ├── EnableInterrupt.zip │ ├── README.md │ ├── ReleaseChecklist │ ├── Technical_Notes │ ├── examples │ │ ├── AllPins2560 │ │ │ ├── AllPins2560.ino │ │ │ └── Makefile │ │ ├── AllPins328 │ │ │ ├── AllPins328.ino │ │ │ └── Makefile │ │ ├── EnableInterruptTest │ │ │ └── EnableInterruptTest.ino │ │ ├── HiSpeed │ │ │ ├── HiSpeed.ino │ │ │ ├── Makefile │ │ │ └── README │ │ ├── HiSpeedAllPins2560 │ │ │ ├── HiSpeedAllPins2560.ino │ │ │ └── Makefile │ │ ├── HiSpeedAllPins328 │ │ │ ├── HiSpeedAllPins328.ino │ │ │ └── Makefile │ │ ├── HiSpeedTest │ │ │ ├── HiSpeedTest.ino │ │ │ └── Makefile │ │ ├── InterruptedPin2560 │ │ │ ├── InterruptedPin2560.ino │ │ │ └── Makefile │ │ ├── InterruptedPin328 │ │ │ ├── InterruptedPin328.ino │ │ │ └── Makefile │ │ ├── Mighty1284p │ │ │ └── Mighty1284p.ino │ │ ├── OOSimple │ │ │ ├── Makefile │ │ │ └── OOSimple.ino │ │ ├── Simple │ │ │ ├── Makefile │ │ │ └── Simple.ino │ │ ├── SimpleFunctionWithArg │ │ │ ├── Makefile │ │ │ └── SimpleFunctionWithArg.ino │ │ └── Testing │ │ │ ├── Makefile │ │ │ └── Testing.ino │ ├── extras │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── RELEASE_NOTES │ ├── findInH │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── utility │ │ ├── ei_External1284.h │ │ ├── ei_External2560.h │ │ ├── ei_External328.h │ │ ├── ei_ExternalLeonardo.h │ │ ├── ei_ExternalTiny24.h │ │ ├── ei_ExternalTiny25.h │ │ ├── ei_PinChange1284.h │ │ ├── ei_PinChange2560.h │ │ ├── ei_PinChange328.h │ │ ├── ei_PinChangeLeonardo.h │ │ ├── ei_PinChangeTiny24.h │ │ ├── ei_PinChangeTiny25.h │ │ ├── ei_pindefs_speed.h │ │ ├── ei_porta_speed.h │ │ ├── ei_portb_speed.h │ │ ├── ei_portc_speed.h │ │ ├── ei_portd_speed.h │ │ ├── ei_portj_speed.h │ │ └── ei_portk_speed.h ├── Oscillator │ ├── Oscillator.cpp │ ├── Oscillator.h │ └── Oscillator.zip ├── Otto │ ├── MaxMatrix.cpp │ ├── MaxMatrix.h │ ├── Otto.cpp │ ├── Otto.h │ ├── Otto_gestures.h │ ├── Otto_mouths.h │ ├── Otto_sounds.h │ └── PinChangeInt.h ├── OttoSerialCommand │ ├── OttoSerialCommand.cpp │ └── OttoSerialCommand.h └── US │ ├── US.cpp │ ├── US.h │ └── US.zip ├── Librerias ├── BatReader │ ├── BatReader.cpp │ ├── BatReader.h │ └── BatReader_Example │ │ └── BatReader_Example.ino ├── EnableInterrupt │ ├── EnableInterrupt.h │ ├── README.md │ ├── ReleaseChecklist │ ├── Technical_Notes │ ├── examples │ │ ├── AllPins2560 │ │ │ ├── AllPins2560.ino │ │ │ └── Makefile │ │ ├── AllPins328 │ │ │ ├── AllPins328.ino │ │ │ └── Makefile │ │ ├── EnableInterruptTest │ │ │ └── EnableInterruptTest.ino │ │ ├── HiSpeed │ │ │ ├── HiSpeed.ino │ │ │ ├── Makefile │ │ │ └── README │ │ ├── HiSpeedAllPins2560 │ │ │ ├── HiSpeedAllPins2560.ino │ │ │ └── Makefile │ │ ├── HiSpeedAllPins328 │ │ │ ├── HiSpeedAllPins328.ino │ │ │ └── Makefile │ │ ├── HiSpeedTest │ │ │ ├── HiSpeedTest.ino │ │ │ └── Makefile │ │ ├── InterruptedPin2560 │ │ │ ├── InterruptedPin2560.ino │ │ │ └── Makefile │ │ ├── InterruptedPin328 │ │ │ ├── InterruptedPin328.ino │ │ │ └── Makefile │ │ ├── Mighty1284p │ │ │ └── Mighty1284p.ino │ │ ├── OOSimple │ │ │ ├── Makefile │ │ │ └── OOSimple.ino │ │ ├── Simple │ │ │ ├── Makefile │ │ │ └── Simple.ino │ │ ├── SimpleFunctionWithArg │ │ │ ├── Makefile │ │ │ └── SimpleFunctionWithArg.ino │ │ └── Testing │ │ │ ├── Makefile │ │ │ └── Testing.ino │ ├── extras │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── RELEASE_NOTES │ ├── findInH │ ├── keywords.txt │ ├── library.json │ ├── library.properties │ └── utility │ │ ├── ei_External1284.h │ │ ├── ei_External2560.h │ │ ├── ei_External328.h │ │ ├── ei_ExternalLeonardo.h │ │ ├── ei_ExternalTiny24.h │ │ ├── ei_ExternalTiny25.h │ │ ├── ei_PinChange1284.h │ │ ├── ei_PinChange2560.h │ │ ├── ei_PinChange328.h │ │ ├── ei_PinChangeLeonardo.h │ │ ├── ei_PinChangeTiny24.h │ │ ├── ei_PinChangeTiny25.h │ │ ├── ei_pindefs_speed.h │ │ ├── ei_porta_speed.h │ │ ├── ei_portb_speed.h │ │ ├── ei_portc_speed.h │ │ ├── ei_portd_speed.h │ │ ├── ei_portj_speed.h │ │ └── ei_portk_speed.h ├── MaxMatrix │ ├── MaxMatrix.cpp │ └── MaxMatrix.h ├── Oscillator │ ├── Oscillator.cpp │ └── Oscillator.h ├── Otto │ ├── Otto.cpp │ ├── Otto.h │ ├── Otto_gestures.h │ ├── Otto_mouths.h │ └── Otto_sounds.h ├── OttoSerialCommand │ ├── OttoSerialCommand.cpp │ └── OttoSerialCommand.h └── US │ ├── US.cpp │ └── US.h ├── Librerias_reducidas ├── MaxMatrix │ ├── MaxMatrix.cpp │ └── MaxMatrix.h ├── Memory_limited.PNG ├── Memory_reduced.PNG ├── OTTO_BT_Matrix_LED_Reduced │ └── OTTO_BT_Matrix_LED_Reduced.ino └── Otto │ ├── Otto.cpp │ ├── Otto.h │ ├── Otto_gestures.h │ ├── Otto_mouths.h │ └── Otto_sounds.h ├── Matrix_Led_8x8_with_MAX7219.JPG ├── OTTO_BT_Matrix_LED └── OTTO_BT_Matrix_LED.ino ├── OTTO_BT_Matrix_LED_revised └── OTTO_BT_Matrix_LED_revised.ino ├── OttoDIY+Bluetooth.pdf ├── OttoDIY-MXR_InstructionsManual_V01.pdf └── README.md /Bluetooth_Configuration/HC05_BT_config/HC05_BT_config.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Bluetooth_Configuration/HC05_BT_config/HC05_BT_config.ino -------------------------------------------------------------------------------- /Bluetooth_Configuration/HC06_BT_config/HC06_BT_config.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Bluetooth_Configuration/HC06_BT_config/HC06_BT_config.ino -------------------------------------------------------------------------------- /CAD/Body.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/CAD/Body.STL -------------------------------------------------------------------------------- /CAD/Foot_Left.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/CAD/Foot_Left.STL -------------------------------------------------------------------------------- /CAD/Foot_Right.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/CAD/Foot_Right.STL -------------------------------------------------------------------------------- /CAD/Head.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/CAD/Head.STL -------------------------------------------------------------------------------- /CAD/Leg.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/CAD/Leg.STL -------------------------------------------------------------------------------- /Images/Otto_Assembly1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Images/Otto_Assembly1.PNG -------------------------------------------------------------------------------- /Images/Otto_Assembly2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Images/Otto_Assembly2.PNG -------------------------------------------------------------------------------- /Images/Otto_Assembly3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Images/Otto_Assembly3.PNG -------------------------------------------------------------------------------- /Images/Otto_Assembly_All.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Images/Otto_Assembly_All.PNG -------------------------------------------------------------------------------- /Images/Otto_Assembly_Transparency.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Images/Otto_Assembly_Transparency.PNG -------------------------------------------------------------------------------- /Libraries_revised/BatReader/BatReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/BatReader/BatReader.cpp -------------------------------------------------------------------------------- /Libraries_revised/BatReader/BatReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/BatReader/BatReader.h -------------------------------------------------------------------------------- /Libraries_revised/BatReader/BatReader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/BatReader/BatReader.zip -------------------------------------------------------------------------------- /Libraries_revised/BatReader/BatReader_Example/BatReader_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/BatReader/BatReader_Example/BatReader_Example.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/EnableInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/EnableInterrupt.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/EnableInterrupt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/EnableInterrupt.zip -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/README.md -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/ReleaseChecklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/ReleaseChecklist -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/Technical_Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/Technical_Notes -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/AllPins2560/AllPins2560.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/AllPins2560/AllPins2560.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/AllPins2560/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/AllPins2560/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/AllPins328/AllPins328.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/AllPins328/AllPins328.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/AllPins328/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/AllPins328/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/EnableInterruptTest/EnableInterruptTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/EnableInterruptTest/EnableInterruptTest.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/HiSpeed/HiSpeed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/HiSpeed/HiSpeed.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/HiSpeed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/HiSpeed/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/HiSpeed/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/HiSpeed/README -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/HiSpeedAllPins2560/HiSpeedAllPins2560.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/HiSpeedAllPins2560/HiSpeedAllPins2560.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/HiSpeedAllPins2560/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/HiSpeedAllPins2560/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/HiSpeedAllPins328/HiSpeedAllPins328.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/HiSpeedAllPins328/HiSpeedAllPins328.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/HiSpeedAllPins328/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/HiSpeedAllPins328/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/HiSpeedTest/HiSpeedTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/HiSpeedTest/HiSpeedTest.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/HiSpeedTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/HiSpeedTest/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/InterruptedPin2560/InterruptedPin2560.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/InterruptedPin2560/InterruptedPin2560.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/InterruptedPin2560/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/InterruptedPin2560/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/InterruptedPin328/InterruptedPin328.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/InterruptedPin328/InterruptedPin328.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/InterruptedPin328/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/InterruptedPin328/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/Mighty1284p/Mighty1284p.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/Mighty1284p/Mighty1284p.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/OOSimple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/OOSimple/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/OOSimple/OOSimple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/OOSimple/OOSimple.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/Simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/Simple/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/Simple/Simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/Simple/Simple.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/SimpleFunctionWithArg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/SimpleFunctionWithArg/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/SimpleFunctionWithArg/SimpleFunctionWithArg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/SimpleFunctionWithArg/SimpleFunctionWithArg.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/Testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/Testing/Makefile -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/examples/Testing/Testing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/examples/Testing/Testing.ino -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/extras/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/extras/LICENSE -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/extras/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/extras/NOTICE -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/extras/RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/extras/RELEASE_NOTES -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/findInH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/findInH -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/keywords.txt -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/library.json -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/library.properties -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_External1284.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_External1284.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_External2560.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_External2560.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_External328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_External328.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_ExternalLeonardo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_ExternalLeonardo.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_ExternalTiny24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_ExternalTiny24.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_ExternalTiny25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_ExternalTiny25.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_PinChange1284.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_PinChange1284.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_PinChange2560.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_PinChange2560.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_PinChange328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_PinChange328.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_PinChangeLeonardo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_PinChangeLeonardo.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_PinChangeTiny24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_PinChangeTiny24.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_PinChangeTiny25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_PinChangeTiny25.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_pindefs_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_pindefs_speed.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_porta_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_porta_speed.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_portb_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_portb_speed.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_portc_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_portc_speed.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_portd_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_portd_speed.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_portj_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_portj_speed.h -------------------------------------------------------------------------------- /Libraries_revised/EnableInterrupt/utility/ei_portk_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/EnableInterrupt/utility/ei_portk_speed.h -------------------------------------------------------------------------------- /Libraries_revised/Oscillator/Oscillator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Oscillator/Oscillator.cpp -------------------------------------------------------------------------------- /Libraries_revised/Oscillator/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Oscillator/Oscillator.h -------------------------------------------------------------------------------- /Libraries_revised/Oscillator/Oscillator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Oscillator/Oscillator.zip -------------------------------------------------------------------------------- /Libraries_revised/Otto/MaxMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Otto/MaxMatrix.cpp -------------------------------------------------------------------------------- /Libraries_revised/Otto/MaxMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Otto/MaxMatrix.h -------------------------------------------------------------------------------- /Libraries_revised/Otto/Otto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Otto/Otto.cpp -------------------------------------------------------------------------------- /Libraries_revised/Otto/Otto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Otto/Otto.h -------------------------------------------------------------------------------- /Libraries_revised/Otto/Otto_gestures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Otto/Otto_gestures.h -------------------------------------------------------------------------------- /Libraries_revised/Otto/Otto_mouths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Otto/Otto_mouths.h -------------------------------------------------------------------------------- /Libraries_revised/Otto/Otto_sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Otto/Otto_sounds.h -------------------------------------------------------------------------------- /Libraries_revised/Otto/PinChangeInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/Otto/PinChangeInt.h -------------------------------------------------------------------------------- /Libraries_revised/OttoSerialCommand/OttoSerialCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/OttoSerialCommand/OttoSerialCommand.cpp -------------------------------------------------------------------------------- /Libraries_revised/OttoSerialCommand/OttoSerialCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/OttoSerialCommand/OttoSerialCommand.h -------------------------------------------------------------------------------- /Libraries_revised/US/US.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/US/US.cpp -------------------------------------------------------------------------------- /Libraries_revised/US/US.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/US/US.h -------------------------------------------------------------------------------- /Libraries_revised/US/US.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Libraries_revised/US/US.zip -------------------------------------------------------------------------------- /Librerias/BatReader/BatReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/BatReader/BatReader.cpp -------------------------------------------------------------------------------- /Librerias/BatReader/BatReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/BatReader/BatReader.h -------------------------------------------------------------------------------- /Librerias/BatReader/BatReader_Example/BatReader_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/BatReader/BatReader_Example/BatReader_Example.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/EnableInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/EnableInterrupt.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/README.md -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/ReleaseChecklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/ReleaseChecklist -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/Technical_Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/Technical_Notes -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/AllPins2560/AllPins2560.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/AllPins2560/AllPins2560.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/AllPins2560/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/AllPins2560/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/AllPins328/AllPins328.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/AllPins328/AllPins328.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/AllPins328/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/AllPins328/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/EnableInterruptTest/EnableInterruptTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/EnableInterruptTest/EnableInterruptTest.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/HiSpeed/HiSpeed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/HiSpeed/HiSpeed.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/HiSpeed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/HiSpeed/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/HiSpeed/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/HiSpeed/README -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/HiSpeedAllPins2560/HiSpeedAllPins2560.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/HiSpeedAllPins2560/HiSpeedAllPins2560.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/HiSpeedAllPins2560/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/HiSpeedAllPins2560/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/HiSpeedAllPins328/HiSpeedAllPins328.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/HiSpeedAllPins328/HiSpeedAllPins328.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/HiSpeedAllPins328/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/HiSpeedAllPins328/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/HiSpeedTest/HiSpeedTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/HiSpeedTest/HiSpeedTest.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/HiSpeedTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/HiSpeedTest/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/InterruptedPin2560/InterruptedPin2560.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/InterruptedPin2560/InterruptedPin2560.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/InterruptedPin2560/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/InterruptedPin2560/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/InterruptedPin328/InterruptedPin328.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/InterruptedPin328/InterruptedPin328.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/InterruptedPin328/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/InterruptedPin328/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/Mighty1284p/Mighty1284p.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/Mighty1284p/Mighty1284p.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/OOSimple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/OOSimple/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/OOSimple/OOSimple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/OOSimple/OOSimple.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/Simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/Simple/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/Simple/Simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/Simple/Simple.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/SimpleFunctionWithArg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/SimpleFunctionWithArg/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/SimpleFunctionWithArg/SimpleFunctionWithArg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/SimpleFunctionWithArg/SimpleFunctionWithArg.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/Testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/Testing/Makefile -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/examples/Testing/Testing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/examples/Testing/Testing.ino -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/extras/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/extras/LICENSE -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/extras/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/extras/NOTICE -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/extras/RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/extras/RELEASE_NOTES -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/findInH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/findInH -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/keywords.txt -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/library.json -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/library.properties -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_External1284.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_External1284.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_External2560.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_External2560.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_External328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_External328.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_ExternalLeonardo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_ExternalLeonardo.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_ExternalTiny24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_ExternalTiny24.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_ExternalTiny25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_ExternalTiny25.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_PinChange1284.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_PinChange1284.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_PinChange2560.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_PinChange2560.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_PinChange328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_PinChange328.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_PinChangeLeonardo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_PinChangeLeonardo.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_PinChangeTiny24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_PinChangeTiny24.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_PinChangeTiny25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_PinChangeTiny25.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_pindefs_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_pindefs_speed.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_porta_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_porta_speed.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_portb_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_portb_speed.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_portc_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_portc_speed.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_portd_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_portd_speed.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_portj_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_portj_speed.h -------------------------------------------------------------------------------- /Librerias/EnableInterrupt/utility/ei_portk_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/EnableInterrupt/utility/ei_portk_speed.h -------------------------------------------------------------------------------- /Librerias/MaxMatrix/MaxMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/MaxMatrix/MaxMatrix.cpp -------------------------------------------------------------------------------- /Librerias/MaxMatrix/MaxMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/MaxMatrix/MaxMatrix.h -------------------------------------------------------------------------------- /Librerias/Oscillator/Oscillator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/Oscillator/Oscillator.cpp -------------------------------------------------------------------------------- /Librerias/Oscillator/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/Oscillator/Oscillator.h -------------------------------------------------------------------------------- /Librerias/Otto/Otto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/Otto/Otto.cpp -------------------------------------------------------------------------------- /Librerias/Otto/Otto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/Otto/Otto.h -------------------------------------------------------------------------------- /Librerias/Otto/Otto_gestures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/Otto/Otto_gestures.h -------------------------------------------------------------------------------- /Librerias/Otto/Otto_mouths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/Otto/Otto_mouths.h -------------------------------------------------------------------------------- /Librerias/Otto/Otto_sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/Otto/Otto_sounds.h -------------------------------------------------------------------------------- /Librerias/OttoSerialCommand/OttoSerialCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/OttoSerialCommand/OttoSerialCommand.cpp -------------------------------------------------------------------------------- /Librerias/OttoSerialCommand/OttoSerialCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/OttoSerialCommand/OttoSerialCommand.h -------------------------------------------------------------------------------- /Librerias/US/US.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/US/US.cpp -------------------------------------------------------------------------------- /Librerias/US/US.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias/US/US.h -------------------------------------------------------------------------------- /Librerias_reducidas/MaxMatrix/MaxMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/MaxMatrix/MaxMatrix.cpp -------------------------------------------------------------------------------- /Librerias_reducidas/MaxMatrix/MaxMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/MaxMatrix/MaxMatrix.h -------------------------------------------------------------------------------- /Librerias_reducidas/Memory_limited.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/Memory_limited.PNG -------------------------------------------------------------------------------- /Librerias_reducidas/Memory_reduced.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/Memory_reduced.PNG -------------------------------------------------------------------------------- /Librerias_reducidas/OTTO_BT_Matrix_LED_Reduced/OTTO_BT_Matrix_LED_Reduced.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/OTTO_BT_Matrix_LED_Reduced/OTTO_BT_Matrix_LED_Reduced.ino -------------------------------------------------------------------------------- /Librerias_reducidas/Otto/Otto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/Otto/Otto.cpp -------------------------------------------------------------------------------- /Librerias_reducidas/Otto/Otto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/Otto/Otto.h -------------------------------------------------------------------------------- /Librerias_reducidas/Otto/Otto_gestures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/Otto/Otto_gestures.h -------------------------------------------------------------------------------- /Librerias_reducidas/Otto/Otto_mouths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/Otto/Otto_mouths.h -------------------------------------------------------------------------------- /Librerias_reducidas/Otto/Otto_sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Librerias_reducidas/Otto/Otto_sounds.h -------------------------------------------------------------------------------- /Matrix_Led_8x8_with_MAX7219.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/Matrix_Led_8x8_with_MAX7219.JPG -------------------------------------------------------------------------------- /OTTO_BT_Matrix_LED/OTTO_BT_Matrix_LED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/OTTO_BT_Matrix_LED/OTTO_BT_Matrix_LED.ino -------------------------------------------------------------------------------- /OTTO_BT_Matrix_LED_revised/OTTO_BT_Matrix_LED_revised.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/OTTO_BT_Matrix_LED_revised/OTTO_BT_Matrix_LED_revised.ino -------------------------------------------------------------------------------- /OttoDIY+Bluetooth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/OttoDIY+Bluetooth.pdf -------------------------------------------------------------------------------- /OttoDIY-MXR_InstructionsManual_V01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/OttoDIY-MXR_InstructionsManual_V01.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MexRoboTics/OttoDIY-MXR/HEAD/README.md --------------------------------------------------------------------------------