├── README.md ├── doc └── hexedit.png ├── examples ├── analog_graph │ └── analog_graph.ino ├── box_demo │ └── box_demo.ino ├── draw_circle │ └── draw_circle.ino ├── hexeditor_demo │ └── hexeditor_demo.ino ├── hexeditor_eeprom │ └── hexeditor_eeprom.ino ├── key_test │ └── key_test.ino ├── matrixRain_demo │ └── matrixRain_demo.ino ├── number_edit_demo │ └── number_edit_demo.ino ├── screen_demo │ └── screen_demo.ino ├── simple_test │ └── simple_test.ino ├── temperature_demo │ └── temperature_demo.ino └── towers_of_hanoi │ └── towers_of_hanoi.ino ├── library.json ├── library.properties ├── screenshot.png └── src ├── editor.c ├── editor.h ├── hexedit.c ├── hexedit.h ├── mcurses-config.h ├── mcurses.c └── mcurses.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/README.md -------------------------------------------------------------------------------- /doc/hexedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/doc/hexedit.png -------------------------------------------------------------------------------- /examples/analog_graph/analog_graph.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/analog_graph/analog_graph.ino -------------------------------------------------------------------------------- /examples/box_demo/box_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/box_demo/box_demo.ino -------------------------------------------------------------------------------- /examples/draw_circle/draw_circle.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/draw_circle/draw_circle.ino -------------------------------------------------------------------------------- /examples/hexeditor_demo/hexeditor_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/hexeditor_demo/hexeditor_demo.ino -------------------------------------------------------------------------------- /examples/hexeditor_eeprom/hexeditor_eeprom.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/hexeditor_eeprom/hexeditor_eeprom.ino -------------------------------------------------------------------------------- /examples/key_test/key_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/key_test/key_test.ino -------------------------------------------------------------------------------- /examples/matrixRain_demo/matrixRain_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/matrixRain_demo/matrixRain_demo.ino -------------------------------------------------------------------------------- /examples/number_edit_demo/number_edit_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/number_edit_demo/number_edit_demo.ino -------------------------------------------------------------------------------- /examples/screen_demo/screen_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/screen_demo/screen_demo.ino -------------------------------------------------------------------------------- /examples/simple_test/simple_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/simple_test/simple_test.ino -------------------------------------------------------------------------------- /examples/temperature_demo/temperature_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/temperature_demo/temperature_demo.ino -------------------------------------------------------------------------------- /examples/towers_of_hanoi/towers_of_hanoi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/examples/towers_of_hanoi/towers_of_hanoi.ino -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/library.properties -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/src/editor.c -------------------------------------------------------------------------------- /src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/src/editor.h -------------------------------------------------------------------------------- /src/hexedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/src/hexedit.c -------------------------------------------------------------------------------- /src/hexedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/src/hexedit.h -------------------------------------------------------------------------------- /src/mcurses-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/src/mcurses-config.h -------------------------------------------------------------------------------- /src/mcurses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/src/mcurses.c -------------------------------------------------------------------------------- /src/mcurses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMicro/mcurses/HEAD/src/mcurses.h --------------------------------------------------------------------------------