├── .gitignore ├── .project ├── .pydevproject ├── .settings └── org.eclipse.core.resources.prefs ├── LICENSE ├── README.md ├── bin └── .gitignore ├── doc ├── screenshoot1.png ├── simbolbrowser.png ├── snipplets.png ├── terminal.png ├── toolbar.png └── toolbar.svg ├── freeze_setup.py ├── genexe.bat ├── mk_install.nsi ├── requeriments.txt ├── share └── uPyIDE │ ├── fakelibs │ └── pyb.py │ ├── help.css │ ├── help.html │ ├── help.md │ ├── images │ ├── about.png │ ├── document-new.png │ ├── document-open.png │ ├── document-save.png │ ├── download.png │ ├── run.png │ ├── splash.png │ ├── terminal-out.png │ ├── terminal.png │ ├── uPyIDE.ico │ ├── uPyIDE.png │ └── upload.png │ └── snipplet │ ├── Main_ExtInt.py │ ├── Main_PWM.py │ ├── Main_Timers.py │ ├── Main_Timers_2.py │ ├── Main_dac.py │ ├── Main_gc.py │ ├── Main_gpios.py │ ├── Main_perf.py │ ├── Main_perf2.py │ ├── Main_python.py │ ├── Main_rgb.py │ ├── Main_uart.py │ ├── Main_welcome.py │ ├── snipplet_class.py │ ├── snipplet_iterator.py │ ├── snipplet_main.py │ ├── snipplet_open.py │ ├── snipplet_try.py │ └── snipplets.xml ├── src ├── images │ ├── about.svg │ ├── document-new.svg │ ├── document-open.svg │ ├── document-save.svg │ ├── download.svg │ ├── run.svg │ ├── terminal-out.svg │ ├── terminal.svg │ └── upload.svg ├── myDef.py ├── pyqode_i18n.py ├── server.py ├── termWidget.py └── uPyIDE.py └── svg2png.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/.pydevproject -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /doc/screenshoot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/doc/screenshoot1.png -------------------------------------------------------------------------------- /doc/simbolbrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/doc/simbolbrowser.png -------------------------------------------------------------------------------- /doc/snipplets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/doc/snipplets.png -------------------------------------------------------------------------------- /doc/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/doc/terminal.png -------------------------------------------------------------------------------- /doc/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/doc/toolbar.png -------------------------------------------------------------------------------- /doc/toolbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/doc/toolbar.svg -------------------------------------------------------------------------------- /freeze_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/freeze_setup.py -------------------------------------------------------------------------------- /genexe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/genexe.bat -------------------------------------------------------------------------------- /mk_install.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/mk_install.nsi -------------------------------------------------------------------------------- /requeriments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/requeriments.txt -------------------------------------------------------------------------------- /share/uPyIDE/fakelibs/pyb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/fakelibs/pyb.py -------------------------------------------------------------------------------- /share/uPyIDE/help.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /share/uPyIDE/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/help.html -------------------------------------------------------------------------------- /share/uPyIDE/help.md: -------------------------------------------------------------------------------- 1 | *** uPyIDE *** 2 | 3 | - TODO -------------------------------------------------------------------------------- /share/uPyIDE/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/about.png -------------------------------------------------------------------------------- /share/uPyIDE/images/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/document-new.png -------------------------------------------------------------------------------- /share/uPyIDE/images/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/document-open.png -------------------------------------------------------------------------------- /share/uPyIDE/images/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/document-save.png -------------------------------------------------------------------------------- /share/uPyIDE/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/download.png -------------------------------------------------------------------------------- /share/uPyIDE/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/run.png -------------------------------------------------------------------------------- /share/uPyIDE/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/splash.png -------------------------------------------------------------------------------- /share/uPyIDE/images/terminal-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/terminal-out.png -------------------------------------------------------------------------------- /share/uPyIDE/images/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/terminal.png -------------------------------------------------------------------------------- /share/uPyIDE/images/uPyIDE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/uPyIDE.ico -------------------------------------------------------------------------------- /share/uPyIDE/images/uPyIDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/uPyIDE.png -------------------------------------------------------------------------------- /share/uPyIDE/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/images/upload.png -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_ExtInt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_ExtInt.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_PWM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_PWM.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_Timers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_Timers.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_Timers_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_Timers_2.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_dac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_dac.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_gc.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_gpios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_gpios.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_perf.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_perf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_perf2.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_python.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_rgb.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/Main_uart.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/Main_welcome.py: -------------------------------------------------------------------------------- 1 | print("Welcome to Micropython on EDU-CIAA-NXP") 2 | -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/snipplet_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/snipplet_class.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/snipplet_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/snipplet_iterator.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/snipplet_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/snipplet_main.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/snipplet_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/snipplet_open.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/snipplet_try.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/snipplet_try.py -------------------------------------------------------------------------------- /share/uPyIDE/snipplet/snipplets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/share/uPyIDE/snipplet/snipplets.xml -------------------------------------------------------------------------------- /src/images/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/images/about.svg -------------------------------------------------------------------------------- /src/images/document-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/images/document-new.svg -------------------------------------------------------------------------------- /src/images/document-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/images/document-open.svg -------------------------------------------------------------------------------- /src/images/document-save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/images/document-save.svg -------------------------------------------------------------------------------- /src/images/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/images/download.svg -------------------------------------------------------------------------------- /src/images/run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/images/run.svg -------------------------------------------------------------------------------- /src/images/terminal-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/images/terminal-out.svg -------------------------------------------------------------------------------- /src/images/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/images/terminal.svg -------------------------------------------------------------------------------- /src/images/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/images/upload.svg -------------------------------------------------------------------------------- /src/myDef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/myDef.py -------------------------------------------------------------------------------- /src/pyqode_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/pyqode_i18n.py -------------------------------------------------------------------------------- /src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/server.py -------------------------------------------------------------------------------- /src/termWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/termWidget.py -------------------------------------------------------------------------------- /src/uPyIDE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/src/uPyIDE.py -------------------------------------------------------------------------------- /svg2png.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinribelotta/uPyIDE/HEAD/svg2png.bat --------------------------------------------------------------------------------