├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── authentication.js ├── config ├── PtData.xyz ├── config.js ├── dashboard_config.js ├── engine_config.js ├── g2_config.js ├── index.js ├── instance_config.js ├── machine_config.js ├── opensbp_config.js ├── profile_config.js ├── profile_definition.js └── user_config.js ├── config_watcher.js ├── dashboard ├── app_manager.js ├── apps │ ├── apps.fma │ │ ├── css │ │ │ └── style.css │ │ ├── icon.png │ │ ├── index.html │ │ ├── js │ │ │ ├── Sortable.js │ │ │ └── apps.js │ │ ├── old_icon.png │ │ └── package.json │ ├── configuration.fma │ │ ├── css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── icon.png │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── changepassword.svg │ │ │ ├── delete.png │ │ │ ├── download.png │ │ │ ├── ex.png │ │ │ ├── grantadmin.svg │ │ │ ├── loading.gif │ │ │ ├── recycling10.svg │ │ │ ├── revokeadmin.svg │ │ │ └── shopbot_logo.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app_manager.js │ │ │ ├── configuration.js │ │ │ ├── jquery.dragster.js │ │ │ └── user_manager.js │ │ ├── old_icon.png │ │ └── package.json │ ├── editor.fma │ │ ├── component.json │ │ ├── css │ │ │ ├── codemirror.css │ │ │ ├── style.css │ │ │ └── syntax.css │ │ ├── icon.png │ │ ├── index.html │ │ ├── js │ │ │ ├── cm-addons │ │ │ │ ├── dialog.js │ │ │ │ ├── jump-to-line.js │ │ │ │ ├── search.js │ │ │ │ └── searchcursor.js │ │ │ ├── cm-fabmo-modes.js │ │ │ ├── codemirror.js │ │ │ ├── editor.js │ │ │ └── simple.js │ │ └── package.json │ ├── job_manager.fma │ │ ├── css │ │ │ ├── images │ │ │ │ ├── download151.svg │ │ │ │ ├── player6.svg │ │ │ │ ├── recycling10.svg │ │ │ │ ├── settings46.svg │ │ │ │ └── visible9.svg │ │ │ └── style.css │ │ ├── icon.png │ │ ├── images │ │ │ ├── Sorting icons.psd │ │ │ ├── Thumbs.db │ │ │ ├── Untitled-1.psd │ │ │ ├── arrow_key.png │ │ │ ├── back_disabled.png │ │ │ ├── back_enabled.png │ │ │ ├── back_enabled_hover.png │ │ │ ├── click.png │ │ │ ├── delete.png │ │ │ ├── download.png │ │ │ ├── droptarget.png │ │ │ ├── edit_icon.png │ │ │ ├── favicon.ico │ │ │ ├── forward_disabled.png │ │ │ ├── forward_enabled.png │ │ │ ├── forward_enabled_hover.png │ │ │ ├── loading.gif │ │ │ ├── shopbot_logo.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ ├── index.html │ │ ├── js │ │ │ ├── Sortable.js │ │ │ ├── job_manager.js │ │ │ ├── jquery.dragster.js │ │ │ └── moment.js │ │ └── package.json │ ├── macro_manager.fma │ │ ├── css │ │ │ ├── images │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── Thumbs.db │ │ │ │ ├── arrow_key.png │ │ │ │ ├── back_disabled.png │ │ │ │ ├── back_enabled.png │ │ │ │ ├── back_enabled_hover.png │ │ │ │ ├── delete.png │ │ │ │ ├── details_close.png │ │ │ │ ├── details_open.png │ │ │ │ ├── download.png │ │ │ │ ├── edit_icon.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── forward_disabled.png │ │ │ │ ├── forward_enabled.png │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ ├── loading.gif │ │ │ │ ├── play_icon.png │ │ │ │ ├── recycling10.svg │ │ │ │ ├── shopbot_logo.png │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── style.css │ │ ├── icon.png │ │ ├── images │ │ │ ├── Sorting icons.psd │ │ │ ├── Thumbs.db │ │ │ ├── arrow_key.png │ │ │ ├── back_disabled.png │ │ │ ├── back_enabled.png │ │ │ ├── back_enabled_hover.png │ │ │ ├── delete.png │ │ │ ├── download.png │ │ │ ├── favicon.ico │ │ │ ├── forward_disabled.png │ │ │ ├── forward_enabled.png │ │ │ ├── forward_enabled_hover.png │ │ │ ├── loading.gif │ │ │ ├── shopbot_logo.png │ │ │ ├── signal.png │ │ │ ├── signal_0.png │ │ │ ├── signal_1.png │ │ │ ├── signal_2.png │ │ │ ├── signal_3.png │ │ │ ├── signal_4.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ ├── index.html │ │ ├── js │ │ │ └── macro_manager.js │ │ └── package.json │ ├── network_manager.fma │ │ ├── css │ │ │ └── style.css │ │ ├── icon.png │ │ ├── images │ │ │ ├── signal.png │ │ │ ├── signal_0.png │ │ │ ├── signal_1.png │ │ │ ├── signal_2.png │ │ │ ├── signal_3.png │ │ │ └── signal_4.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.dragster.js │ │ │ └── network_manager.js │ │ └── package.json │ ├── previewer.fma │ │ ├── README.md │ │ ├── css │ │ │ └── style.css │ │ ├── icon.png │ │ ├── images │ │ │ ├── help.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── reset.png │ │ │ ├── settings.png │ │ │ ├── x.png │ │ │ ├── y.png │ │ │ └── z.png │ │ ├── index.html │ │ ├── js │ │ │ ├── OrbitControls.js │ │ │ ├── XgridHelper.js │ │ │ ├── app.js │ │ │ ├── axes.js │ │ │ ├── cookie.js │ │ │ ├── dimensions.js │ │ │ ├── grid.js │ │ │ ├── gui.js │ │ │ ├── helvetiker_regular.typeface.js │ │ │ ├── move.js │ │ │ ├── parser.js │ │ │ ├── path.js │ │ │ ├── table.js │ │ │ ├── three.js │ │ │ ├── tool.js │ │ │ ├── util.js │ │ │ └── viewer.js │ │ └── package.json │ ├── sb4.fma │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── icon_jobs.png │ │ │ ├── icon_jobs_w.png │ │ │ ├── icon_video.png │ │ │ ├── image6b.gif │ │ │ ├── image6b.jpg │ │ │ ├── image6b_transparent.png │ │ │ ├── info_icon.png │ │ │ ├── pad_icon_01.png │ │ │ ├── pad_icon_02.png │ │ │ ├── pad_icon_03.png │ │ │ ├── sb3_commands.json │ │ │ └── settings_icon.png │ │ ├── css │ │ │ ├── css-notes.txt │ │ │ ├── foundation.css │ │ │ ├── foundation.min.css │ │ │ ├── normalize.css │ │ │ ├── style.css │ │ │ ├── stylejogdial.css │ │ │ └── tips.css │ │ ├── icon.png │ │ ├── img │ │ │ └── .gitkeep │ │ ├── index.html │ │ ├── js │ │ │ ├── init_setActions.js │ │ │ ├── jog_dial.js │ │ │ ├── lib │ │ │ │ ├── fastclick.js │ │ │ │ ├── foundation.dropdown.js │ │ │ │ ├── foundation.min.js │ │ │ │ ├── haptics.js │ │ │ │ ├── jquery.js │ │ │ │ ├── modernizr.js │ │ │ │ └── paper-full.min.js │ │ │ ├── message_g2.js │ │ │ ├── mo_pad.js │ │ │ ├── motion.js │ │ │ ├── sb_app.js │ │ │ ├── tool_config.js │ │ │ ├── vendor │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.js │ │ │ │ └── xplaceholder.js │ │ │ └── video.js │ │ └── package.json │ ├── selftest.fma │ │ ├── css │ │ │ ├── font-awesome.min.css │ │ │ ├── pure-min.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── icon.png │ │ ├── index.html │ │ ├── js │ │ │ └── selftest.js │ │ ├── package.json │ │ └── path │ │ │ └── sample.pdf │ └── video.fma │ │ ├── README.md │ │ ├── __pycache__ │ │ ├── v4l2.cpython-311.pyc │ │ └── v4l2.cpython-39.pyc │ │ ├── camera-server │ │ ├── icon.png │ │ ├── images │ │ ├── in-use.jpg │ │ └── offline.jpg │ │ ├── index.html │ │ ├── js │ │ └── video.js │ │ ├── package.json │ │ └── v4l2.py ├── build │ └── index.html ├── img │ └── icon_spindle_off.png ├── index.js └── static │ ├── css │ ├── font-awesome.css │ ├── fonts.css │ ├── foundation.min.css │ ├── normalize.css │ ├── style.css │ ├── tips.css │ └── toastr.min.css │ ├── docs │ ├── ComRef.pdf │ ├── No_Internet.pdf │ ├── ShopBot ATC check list.pdf │ └── ShopBot_checklist.pdf │ ├── favicon.ico │ ├── fonts │ ├── ShopBotStandard-Regular.otf │ ├── droid-sans-mono-v7-latin-regular.eot │ ├── droid-sans-mono-v7-latin-regular.svg │ ├── droid-sans-mono-v7-latin-regular.ttf │ ├── droid-sans-mono-v7-latin-regular.woff │ ├── droid-sans-mono-v7-latin-regular.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── sourcesanspro-bold-webfont.eot │ ├── sourcesanspro-bold-webfont.svg │ ├── sourcesanspro-bold-webfont.ttf │ ├── sourcesanspro-bold-webfont.woff │ ├── sourcesanspro-bold-webfont.woff2 │ ├── sourcesanspro-boldit-webfont.eot │ ├── sourcesanspro-boldit-webfont.svg │ ├── sourcesanspro-boldit-webfont.ttf │ ├── sourcesanspro-boldit-webfont.woff │ ├── sourcesanspro-boldit-webfont.woff2 │ ├── sourcesanspro-extralight-webfont.eot │ ├── sourcesanspro-extralight-webfont.svg │ ├── sourcesanspro-extralight-webfont.ttf │ ├── sourcesanspro-extralight-webfont.woff │ ├── sourcesanspro-extralight-webfont.woff2 │ ├── sourcesanspro-extralightit-webfont.eot │ ├── sourcesanspro-extralightit-webfont.svg │ ├── sourcesanspro-extralightit-webfont.ttf │ ├── sourcesanspro-extralightit-webfont.woff │ ├── sourcesanspro-extralightit-webfont.woff2 │ ├── sourcesanspro-it-webfont.eot │ ├── sourcesanspro-it-webfont.svg │ ├── sourcesanspro-it-webfont.ttf │ ├── sourcesanspro-it-webfont.woff │ ├── sourcesanspro-it-webfont.woff2 │ ├── sourcesanspro-regular-webfont.eot │ ├── sourcesanspro-regular-webfont.svg │ ├── sourcesanspro-regular-webfont.ttf │ ├── sourcesanspro-regular-webfont.woff │ └── sourcesanspro-regular-webfont.woff2 │ ├── img │ ├── Thumbs.db │ ├── fabmo-f.svg │ ├── favicon │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── manifest.json │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ ├── icon_DROin.png │ ├── icon_DROout.png │ ├── icon_apps.png │ ├── icon_apps_w.png │ ├── icon_colapse.png │ ├── icon_colapse_r.png │ ├── icon_details.min.png │ ├── icon_details.png │ ├── icon_editor.png │ ├── icon_folder.png │ ├── icon_folder_w.png │ ├── icon_global.png │ ├── icon_global_w.png │ ├── icon_go-home.png │ ├── icon_home.png │ ├── icon_home_w.png │ ├── icon_jobs.png │ ├── icon_jobs_w.png │ ├── icon_keypad.png │ ├── icon_log.png │ ├── icon_more.png │ ├── icon_mv-xy.png │ ├── icon_network.png │ ├── icon_plus_cross.png │ ├── icon_refresh.png │ ├── icon_search.png │ ├── icon_search_w.png │ ├── icon_settings.png │ ├── icon_settings_w.png │ ├── icon_sign_out.png │ ├── icon_social.png │ ├── icon_social_w.png │ ├── icon_spindle_off.png │ ├── icon_spindle_on.png │ ├── icon_status_green.png │ ├── icon_status_grey.png │ ├── icon_status_red.png │ ├── icon_status_yellow.png │ ├── icon_video.png │ ├── icon_zero-z.png │ └── maingear.png │ └── js │ ├── app.js │ ├── auth.js │ ├── context.js │ ├── dashboard.js │ ├── events.js │ ├── libs │ ├── backbone.js │ ├── fabmo.js │ ├── fabmoapi.js │ ├── fabmoui.js │ ├── foundation.min.js │ ├── hammer.js │ ├── hammer.min.js │ ├── hammer.min.map │ ├── jquery.min.js │ ├── keyboard.js │ ├── keypad.js │ ├── lockr.min.js │ ├── modernizr.js │ ├── moment.js │ ├── pako.min.js │ ├── require.js │ ├── socket.io.js │ ├── socket.io.js.map │ ├── toastr.js.map │ ├── toastr.min.js │ ├── underscore.js │ └── usb-browser.js │ ├── main.js │ ├── models.js │ ├── routers.js │ ├── shared-video.js │ ├── templates │ ├── app-icon-add.html │ ├── app-icon.html │ └── authentication.html │ └── views.js ├── data └── g2_errors.json ├── db.js ├── debug.js ├── doc ├── apple_logo.gif ├── intel_edison.jpg ├── project_layout.md └── raspi.png ├── engine.js ├── example-version.json ├── files ├── README.md ├── camera-server-1.service ├── camera-server-2.service ├── fabmo.service ├── network_conf_fabmo │ ├── fabmo-ip-reporting.desktop │ ├── hostapd.service │ ├── ip-reporting.py │ ├── ip-reporting.sh │ ├── network-monitor.service │ ├── network-monitor.sh │ ├── recent_wifi.json │ ├── setup-wlan0_ap.service │ └── setup_wlan0_ap.sh ├── tools │ ├── ck_heat_volts.sh │ ├── ck_network.sh │ ├── ck_services.sh │ └── ld_firmware.sh └── usb_logger.service ├── firmware ├── g2.bin ├── g2core_101.57.51.bin ├── g2core_101.57.53-6axis.bin └── g2core_101.57.53-Copy.bin ├── g2.js ├── log.js ├── machine.js ├── macros.js ├── network.js ├── network └── linux │ └── raspberry-pi │ ├── commands.js │ └── index.js ├── network_manager.js ├── package.json ├── profiles.js ├── profiles ├── default │ ├── config │ │ ├── engine.json │ │ ├── g2.json │ │ ├── instance.json │ │ ├── machine.json │ │ └── opensbp.json │ └── package.json ├── fabmo-profile-dt │ ├── README.md │ ├── apps │ │ ├── Cutting Settings.fma │ │ └── smooth.fma │ ├── config │ │ ├── engine.json │ │ ├── g2.json │ │ ├── instance.json │ │ ├── machine.json │ │ └── opensbp.json │ ├── macros │ │ ├── macro_10.sbp │ │ ├── macro_2.sbp │ │ ├── macro_201.sbp │ │ ├── macro_211.sbp │ │ ├── macro_3.sbp │ │ ├── macro_5.sbp │ │ ├── macro_6.sbp │ │ ├── macro_7.sbp │ │ ├── macro_78.sbp │ │ ├── macro_79.sbp │ │ ├── macro_9.sbp │ │ ├── macro_90.sbp │ │ └── macro_91.sbp │ └── package.json ├── fabmo-profile-dtatc │ ├── README.md │ ├── apps │ │ ├── CONSOLE_v0.0.04.fma │ │ ├── Cutting Settings.fma │ │ ├── config_app.fma │ │ └── smooth.fma │ ├── config │ │ ├── engine.json │ │ ├── g2.json │ │ ├── instance.json │ │ ├── machine.json │ │ └── opensbp.json │ ├── macros │ │ ├── macro_1.sbp │ │ ├── macro_10.sbp │ │ ├── macro_2.sbp │ │ ├── macro_201.sbp │ │ ├── macro_204.sbp │ │ ├── macro_205.sbp │ │ ├── macro_211.sbp │ │ ├── macro_212.sbp │ │ ├── macro_3.sbp │ │ ├── macro_5.sbp │ │ ├── macro_6.sbp │ │ ├── macro_7.sbp │ │ ├── macro_70.sbp │ │ ├── macro_71.sbp │ │ ├── macro_72.sbp │ │ ├── macro_73.sbp │ │ ├── macro_74.sbp │ │ ├── macro_75.sbp │ │ ├── macro_78.sbp │ │ ├── macro_79.sbp │ │ ├── macro_9.sbp │ │ ├── macro_90.sbp │ │ └── macro_91.sbp │ └── package.json ├── fabmo-profile-dtmax │ ├── README.md │ ├── apps │ │ ├── CONSOLE_v0.0.04.fma │ │ ├── Cutting Settings.fma │ │ ├── FabMo Simple Surfacer_v0.0.3.fma │ │ └── fabmo-app-example_v1.0.3.fma │ ├── config │ │ ├── engine.json │ │ ├── g2.json │ │ ├── instance.json │ │ ├── machine.json │ │ └── opensbp.json │ ├── macros │ │ ├── macro_10.sbp │ │ ├── macro_2.sbp │ │ ├── macro_201.sbp │ │ ├── macro_211.sbp │ │ ├── macro_3.sbp │ │ ├── macro_5.sbp │ │ ├── macro_6.sbp │ │ ├── macro_7.sbp │ │ ├── macro_78.sbp │ │ ├── macro_79.sbp │ │ ├── macro_9.sbp │ │ ├── macro_90.sbp │ │ └── macro_91.sbp │ └── package.json └── fabmo-profile-handibot-2 │ ├── README.md │ ├── apps │ ├── config_app.fma │ ├── fabmo-app-example_v1.0.3.fma │ └── smooth.fma │ ├── config │ ├── engine.json │ ├── g2.json │ ├── instance.json │ ├── machine.json │ └── opensbp.json │ ├── macros │ ├── NEWmacro_10.sbp │ ├── NEWmacro_2.sbp │ ├── NEWmacro_201.sbp │ ├── NEWmacro_211.sbp │ ├── NEWmacro_3.sbp │ ├── NEWmacro_5.sbp │ ├── NEWmacro_6.sbp │ ├── NEWmacro_7.sbp │ ├── NEWmacro_78.sbp │ ├── NEWmacro_79.sbp │ ├── NEWmacro_9.sbp │ ├── NEWmacro_90.sbp │ ├── NEWmacro_91.sbp │ ├── README.txt │ ├── macro_2.sbp │ ├── macro_201.sbp │ ├── macro_211.sbp │ ├── macro_3.sbp │ ├── macro_6.sbp │ ├── macro_7.sbp │ ├── macro_77.sbp │ ├── macro_78.sbp │ ├── macro_79.sbp │ ├── macro_9.sbp │ ├── macro_90.sbp │ └── macro_91.sbp │ └── package.json ├── pythonUtils ├── README.md ├── fabmo_support_contact.txt ├── i2c_display.py ├── libs │ └── ssd1039.py ├── run_i2c_display.sh └── usb_logger.py ├── routes ├── acc.js ├── authentication.js ├── config.js ├── dashboard.js ├── direct.js ├── firmware.js ├── index.js ├── jobs.js ├── kill.js ├── log.js ├── macros.js ├── network.js ├── state.js ├── time.js ├── uix.js ├── updater.js ├── usbFileRoutes.js ├── util.js └── websocket.js ├── runtime ├── gcode │ ├── gcode.js │ └── index.js ├── idle.js ├── manual │ ├── driver.js │ └── index.js ├── opensbp │ ├── commands │ │ ├── custom.js │ │ ├── cut.js │ │ ├── file.js │ │ ├── index.js │ │ ├── jog.js │ │ ├── leveler.js │ │ ├── location.js │ │ ├── move.js │ │ ├── probe.js │ │ ├── setting.js │ │ ├── tools.js │ │ ├── value.js │ │ └── zero.js │ ├── index.js │ ├── interpolate.js │ ├── opensbp.js │ ├── parser.js │ ├── sb3_commands.json │ ├── sbp_parser.js │ ├── sbp_parser.pegjs │ ├── test-error.js │ ├── test1.sbp │ ├── test2.sbp │ ├── test_parser.js │ └── transformation.js └── passthrough │ └── index.js ├── scripts ├── convert_sb3.js └── sb3_to_gcode.js ├── server.js ├── spindle1.js ├── spindles ├── spindle-VFD-data │ ├── spin-DT-1hp-delta.json │ └── spin-DT-1hp-lenze.json └── spindle1_settings.json ├── static.js ├── test ├── machine.test.js └── util.test.js ├── updater.js ├── util.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | unsafe-perm = true -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/README.md -------------------------------------------------------------------------------- /authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/authentication.js -------------------------------------------------------------------------------- /config/PtData.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/PtData.xyz -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/config.js -------------------------------------------------------------------------------- /config/dashboard_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/dashboard_config.js -------------------------------------------------------------------------------- /config/engine_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/engine_config.js -------------------------------------------------------------------------------- /config/g2_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/g2_config.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/index.js -------------------------------------------------------------------------------- /config/instance_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/instance_config.js -------------------------------------------------------------------------------- /config/machine_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/machine_config.js -------------------------------------------------------------------------------- /config/opensbp_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/opensbp_config.js -------------------------------------------------------------------------------- /config/profile_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/profile_config.js -------------------------------------------------------------------------------- /config/profile_definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/profile_definition.js -------------------------------------------------------------------------------- /config/user_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config/user_config.js -------------------------------------------------------------------------------- /config_watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/config_watcher.js -------------------------------------------------------------------------------- /dashboard/app_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/app_manager.js -------------------------------------------------------------------------------- /dashboard/apps/apps.fma/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/apps.fma/css/style.css -------------------------------------------------------------------------------- /dashboard/apps/apps.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/apps.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/apps.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/apps.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/apps.fma/js/Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/apps.fma/js/Sortable.js -------------------------------------------------------------------------------- /dashboard/apps/apps.fma/js/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/apps.fma/js/apps.js -------------------------------------------------------------------------------- /dashboard/apps/apps.fma/old_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/apps.fma/old_icon.png -------------------------------------------------------------------------------- /dashboard/apps/apps.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/apps.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/css/style.css -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/Thumbs.db -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/changepassword.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/changepassword.svg -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/delete.png -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/download.png -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/ex.png -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/grantadmin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/grantadmin.svg -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/loading.gif -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/recycling10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/recycling10.svg -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/revokeadmin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/revokeadmin.svg -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/images/shopbot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/images/shopbot_logo.png -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/js/app_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/js/app_manager.js -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/js/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/js/configuration.js -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/js/jquery.dragster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/js/jquery.dragster.js -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/js/user_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/js/user_manager.js -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/old_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/old_icon.png -------------------------------------------------------------------------------- /dashboard/apps/configuration.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/configuration.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/component.json -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/css/codemirror.css -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/css/style.css -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/css/syntax.css -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/js/cm-addons/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/js/cm-addons/dialog.js -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/js/cm-addons/jump-to-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/js/cm-addons/jump-to-line.js -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/js/cm-addons/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/js/cm-addons/search.js -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/js/cm-addons/searchcursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/js/cm-addons/searchcursor.js -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/js/cm-fabmo-modes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/js/cm-fabmo-modes.js -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/js/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/js/codemirror.js -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/js/editor.js -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/js/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/js/simple.js -------------------------------------------------------------------------------- /dashboard/apps/editor.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/editor.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/css/images/download151.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/css/images/download151.svg -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/css/images/player6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/css/images/player6.svg -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/css/images/recycling10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/css/images/recycling10.svg -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/css/images/settings46.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/css/images/settings46.svg -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/css/images/visible9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/css/images/visible9.svg -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/css/style.css -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/Sorting icons.psd -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/Thumbs.db -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/Untitled-1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/Untitled-1.psd -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/arrow_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/arrow_key.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/back_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/back_enabled.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/back_enabled_hover.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/click.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/delete.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/download.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/droptarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/droptarget.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/edit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/edit_icon.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/favicon.ico -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/forward_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/forward_enabled.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/loading.gif -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/shopbot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/shopbot_logo.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/sort_asc.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/sort_both.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/sort_desc.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/js/Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/js/Sortable.js -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/js/job_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/js/job_manager.js -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/js/jquery.dragster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/js/jquery.dragster.js -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/js/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/js/moment.js -------------------------------------------------------------------------------- /dashboard/apps/job_manager.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/job_manager.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/Sorting icons.psd -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/Thumbs.db -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/arrow_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/arrow_key.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/back_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/back_enabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/back_enabled_hover.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/delete.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/details_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/details_close.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/details_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/details_open.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/download.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/edit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/edit_icon.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/favicon.ico -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/forward_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/forward_enabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/loading.gif -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/play_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/play_icon.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/recycling10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/recycling10.svg -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/shopbot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/shopbot_logo.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/sort_asc.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/sort_both.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/sort_desc.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/css/style.css -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/Sorting icons.psd -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/Thumbs.db -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/arrow_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/arrow_key.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/back_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/back_enabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/back_enabled_hover.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/delete.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/download.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/favicon.ico -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/forward_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/forward_enabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/loading.gif -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/shopbot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/shopbot_logo.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/signal.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/signal_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/signal_0.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/signal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/signal_1.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/signal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/signal_2.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/signal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/signal_3.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/signal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/signal_4.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/sort_asc.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/sort_both.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/sort_desc.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/js/macro_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/js/macro_manager.js -------------------------------------------------------------------------------- /dashboard/apps/macro_manager.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/macro_manager.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/css/style.css -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/images/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/images/signal.png -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/images/signal_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/images/signal_0.png -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/images/signal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/images/signal_1.png -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/images/signal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/images/signal_2.png -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/images/signal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/images/signal_3.png -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/images/signal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/images/signal_4.png -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/js/jquery.dragster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/js/jquery.dragster.js -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/js/network_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/js/network_manager.js -------------------------------------------------------------------------------- /dashboard/apps/network_manager.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/network_manager.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/README.md -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/css/style.css -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/images/help.png -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/images/pause.png -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/images/play.png -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/images/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/images/reset.png -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/images/settings.png -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/images/x.png -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/images/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/images/y.png -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/images/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/images/z.png -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/OrbitControls.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/XgridHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/XgridHelper.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/app.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/axes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/axes.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/cookie.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/dimensions.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/grid.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/gui.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/helvetiker_regular.typeface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/helvetiker_regular.typeface.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/move.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/parser.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/path.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/table.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/three.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/tool.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/util.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/js/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/js/viewer.js -------------------------------------------------------------------------------- /dashboard/apps/previewer.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/previewer.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/LICENSE -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/README.md -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/icon_jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/icon_jobs.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/icon_jobs_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/icon_jobs_w.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/icon_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/icon_video.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/image6b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/image6b.gif -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/image6b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/image6b.jpg -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/image6b_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/image6b_transparent.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/info_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/info_icon.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/pad_icon_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/pad_icon_01.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/pad_icon_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/pad_icon_02.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/pad_icon_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/pad_icon_03.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/sb3_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/sb3_commands.json -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/assets/settings_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/assets/settings_icon.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/css/css-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/css/css-notes.txt -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/css/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/css/foundation.css -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/css/foundation.min.css -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/css/normalize.css -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/css/style.css -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/css/stylejogdial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/css/stylejogdial.css -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/css/tips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/css/tips.css -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/img/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/init_setActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/init_setActions.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/jog_dial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/jog_dial.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/lib/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/lib/fastclick.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/lib/foundation.dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/lib/foundation.dropdown.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/lib/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/lib/foundation.min.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/lib/haptics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/lib/haptics.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/lib/jquery.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/lib/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/lib/modernizr.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/lib/paper-full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/lib/paper-full.min.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/message_g2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/message_g2.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/mo_pad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/mo_pad.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/motion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/motion.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/sb_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/sb_app.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/tool_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/tool_config.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/vendor/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/vendor/jquery.cookie.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/vendor/jquery.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/vendor/xplaceholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/vendor/xplaceholder.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/js/video.js -------------------------------------------------------------------------------- /dashboard/apps/sb4.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/sb4.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/css/font-awesome.min.css -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/css/pure-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/css/pure-min.css -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/css/style.css -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/js/selftest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/js/selftest.js -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/selftest.fma/path/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/selftest.fma/path/sample.pdf -------------------------------------------------------------------------------- /dashboard/apps/video.fma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/README.md -------------------------------------------------------------------------------- /dashboard/apps/video.fma/__pycache__/v4l2.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/__pycache__/v4l2.cpython-311.pyc -------------------------------------------------------------------------------- /dashboard/apps/video.fma/__pycache__/v4l2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/__pycache__/v4l2.cpython-39.pyc -------------------------------------------------------------------------------- /dashboard/apps/video.fma/camera-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/camera-server -------------------------------------------------------------------------------- /dashboard/apps/video.fma/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/icon.png -------------------------------------------------------------------------------- /dashboard/apps/video.fma/images/in-use.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/images/in-use.jpg -------------------------------------------------------------------------------- /dashboard/apps/video.fma/images/offline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/images/offline.jpg -------------------------------------------------------------------------------- /dashboard/apps/video.fma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/index.html -------------------------------------------------------------------------------- /dashboard/apps/video.fma/js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/js/video.js -------------------------------------------------------------------------------- /dashboard/apps/video.fma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/package.json -------------------------------------------------------------------------------- /dashboard/apps/video.fma/v4l2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/apps/video.fma/v4l2.py -------------------------------------------------------------------------------- /dashboard/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/build/index.html -------------------------------------------------------------------------------- /dashboard/img/icon_spindle_off.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/index.js -------------------------------------------------------------------------------- /dashboard/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/css/font-awesome.css -------------------------------------------------------------------------------- /dashboard/static/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/css/fonts.css -------------------------------------------------------------------------------- /dashboard/static/css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/css/foundation.min.css -------------------------------------------------------------------------------- /dashboard/static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/css/normalize.css -------------------------------------------------------------------------------- /dashboard/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/css/style.css -------------------------------------------------------------------------------- /dashboard/static/css/tips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/css/tips.css -------------------------------------------------------------------------------- /dashboard/static/css/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/css/toastr.min.css -------------------------------------------------------------------------------- /dashboard/static/docs/ComRef.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/docs/ComRef.pdf -------------------------------------------------------------------------------- /dashboard/static/docs/No_Internet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/docs/No_Internet.pdf -------------------------------------------------------------------------------- /dashboard/static/docs/ShopBot ATC check list.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/docs/ShopBot ATC check list.pdf -------------------------------------------------------------------------------- /dashboard/static/docs/ShopBot_checklist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/docs/ShopBot_checklist.pdf -------------------------------------------------------------------------------- /dashboard/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/favicon.ico -------------------------------------------------------------------------------- /dashboard/static/fonts/ShopBotStandard-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/ShopBotStandard-Regular.otf -------------------------------------------------------------------------------- /dashboard/static/fonts/droid-sans-mono-v7-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/droid-sans-mono-v7-latin-regular.eot -------------------------------------------------------------------------------- /dashboard/static/fonts/droid-sans-mono-v7-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/droid-sans-mono-v7-latin-regular.svg -------------------------------------------------------------------------------- /dashboard/static/fonts/droid-sans-mono-v7-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/droid-sans-mono-v7-latin-regular.ttf -------------------------------------------------------------------------------- /dashboard/static/fonts/droid-sans-mono-v7-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/droid-sans-mono-v7-latin-regular.woff -------------------------------------------------------------------------------- /dashboard/static/fonts/droid-sans-mono-v7-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/droid-sans-mono-v7-latin-regular.woff2 -------------------------------------------------------------------------------- /dashboard/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dashboard/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /dashboard/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dashboard/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dashboard/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-bold-webfont.eot -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-bold-webfont.svg -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-bold-webfont.ttf -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-bold-webfont.woff -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-bold-webfont.woff2 -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-boldit-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-boldit-webfont.eot -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-boldit-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-boldit-webfont.svg -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-boldit-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-boldit-webfont.ttf -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-boldit-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-boldit-webfont.woff -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-boldit-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-boldit-webfont.woff2 -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralight-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralight-webfont.eot -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralight-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralight-webfont.svg -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralight-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralight-webfont.ttf -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralight-webfont.woff -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralight-webfont.woff2 -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralightit-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralightit-webfont.eot -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralightit-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralightit-webfont.svg -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralightit-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralightit-webfont.ttf -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralightit-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralightit-webfont.woff -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-extralightit-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-extralightit-webfont.woff2 -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-it-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-it-webfont.eot -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-it-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-it-webfont.svg -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-it-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-it-webfont.ttf -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-it-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-it-webfont.woff -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-it-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-it-webfont.woff2 -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-regular-webfont.eot -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-regular-webfont.svg -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-regular-webfont.ttf -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-regular-webfont.woff -------------------------------------------------------------------------------- /dashboard/static/fonts/sourcesanspro-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/fonts/sourcesanspro-regular-webfont.woff2 -------------------------------------------------------------------------------- /dashboard/static/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/Thumbs.db -------------------------------------------------------------------------------- /dashboard/static/img/fabmo-f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/fabmo-f.svg -------------------------------------------------------------------------------- /dashboard/static/img/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/apple-icon.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/browserconfig.xml -------------------------------------------------------------------------------- /dashboard/static/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/manifest.json -------------------------------------------------------------------------------- /dashboard/static/img/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /dashboard/static/img/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_DROin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_DROin.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_DROout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_DROout.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_apps.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_apps_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_apps_w.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_colapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_colapse.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_colapse_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_colapse_r.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_details.min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_details.min.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_details.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_editor.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_folder.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_folder_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_folder_w.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_global.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_global_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_global_w.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_go-home.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_home.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_home_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_home_w.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_jobs.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_jobs_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_jobs_w.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_keypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_keypad.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_log.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_more.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_mv-xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_mv-xy.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_network.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_plus_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_plus_cross.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_refresh.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_search.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_search_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_search_w.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_settings.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_settings_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_settings_w.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_sign_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_sign_out.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_social.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_social_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_social_w.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_spindle_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_spindle_off.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_spindle_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_spindle_on.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_status_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_status_green.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_status_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_status_grey.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_status_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_status_red.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_status_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_status_yellow.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_video.png -------------------------------------------------------------------------------- /dashboard/static/img/icon_zero-z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/icon_zero-z.png -------------------------------------------------------------------------------- /dashboard/static/img/maingear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/img/maingear.png -------------------------------------------------------------------------------- /dashboard/static/js/app.js: -------------------------------------------------------------------------------- 1 | require("./libs/fabmo.js"); 2 | -------------------------------------------------------------------------------- /dashboard/static/js/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/auth.js -------------------------------------------------------------------------------- /dashboard/static/js/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/context.js -------------------------------------------------------------------------------- /dashboard/static/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/dashboard.js -------------------------------------------------------------------------------- /dashboard/static/js/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/events.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/backbone.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/fabmo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/fabmo.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/fabmoapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/fabmoapi.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/fabmoui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/fabmoui.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/foundation.min.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/hammer.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/hammer.min.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/hammer.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/hammer.min.map -------------------------------------------------------------------------------- /dashboard/static/js/libs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/jquery.min.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/keyboard.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/keypad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/keypad.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/lockr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/lockr.min.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/modernizr.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/moment.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/pako.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/pako.min.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/require.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/socket.io.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/socket.io.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/socket.io.js.map -------------------------------------------------------------------------------- /dashboard/static/js/libs/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/toastr.js.map -------------------------------------------------------------------------------- /dashboard/static/js/libs/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/toastr.min.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/underscore.js -------------------------------------------------------------------------------- /dashboard/static/js/libs/usb-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/libs/usb-browser.js -------------------------------------------------------------------------------- /dashboard/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/main.js -------------------------------------------------------------------------------- /dashboard/static/js/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/models.js -------------------------------------------------------------------------------- /dashboard/static/js/routers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/routers.js -------------------------------------------------------------------------------- /dashboard/static/js/shared-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/shared-video.js -------------------------------------------------------------------------------- /dashboard/static/js/templates/app-icon-add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/templates/app-icon-add.html -------------------------------------------------------------------------------- /dashboard/static/js/templates/app-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/templates/app-icon.html -------------------------------------------------------------------------------- /dashboard/static/js/templates/authentication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/templates/authentication.html -------------------------------------------------------------------------------- /dashboard/static/js/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/dashboard/static/js/views.js -------------------------------------------------------------------------------- /data/g2_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/data/g2_errors.json -------------------------------------------------------------------------------- /db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/db.js -------------------------------------------------------------------------------- /debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/debug.js -------------------------------------------------------------------------------- /doc/apple_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/doc/apple_logo.gif -------------------------------------------------------------------------------- /doc/intel_edison.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/doc/intel_edison.jpg -------------------------------------------------------------------------------- /doc/project_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/doc/project_layout.md -------------------------------------------------------------------------------- /doc/raspi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/doc/raspi.png -------------------------------------------------------------------------------- /engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/engine.js -------------------------------------------------------------------------------- /example-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/example-version.json -------------------------------------------------------------------------------- /files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/README.md -------------------------------------------------------------------------------- /files/camera-server-1.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/camera-server-1.service -------------------------------------------------------------------------------- /files/camera-server-2.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/camera-server-2.service -------------------------------------------------------------------------------- /files/fabmo.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/fabmo.service -------------------------------------------------------------------------------- /files/network_conf_fabmo/fabmo-ip-reporting.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/network_conf_fabmo/fabmo-ip-reporting.desktop -------------------------------------------------------------------------------- /files/network_conf_fabmo/hostapd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/network_conf_fabmo/hostapd.service -------------------------------------------------------------------------------- /files/network_conf_fabmo/ip-reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/network_conf_fabmo/ip-reporting.py -------------------------------------------------------------------------------- /files/network_conf_fabmo/ip-reporting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/network_conf_fabmo/ip-reporting.sh -------------------------------------------------------------------------------- /files/network_conf_fabmo/network-monitor.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/network_conf_fabmo/network-monitor.service -------------------------------------------------------------------------------- /files/network_conf_fabmo/network-monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/network_conf_fabmo/network-monitor.sh -------------------------------------------------------------------------------- /files/network_conf_fabmo/recent_wifi.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/network_conf_fabmo/setup-wlan0_ap.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/network_conf_fabmo/setup-wlan0_ap.service -------------------------------------------------------------------------------- /files/network_conf_fabmo/setup_wlan0_ap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/network_conf_fabmo/setup_wlan0_ap.sh -------------------------------------------------------------------------------- /files/tools/ck_heat_volts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/tools/ck_heat_volts.sh -------------------------------------------------------------------------------- /files/tools/ck_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/tools/ck_network.sh -------------------------------------------------------------------------------- /files/tools/ck_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/tools/ck_services.sh -------------------------------------------------------------------------------- /files/tools/ld_firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/tools/ld_firmware.sh -------------------------------------------------------------------------------- /files/usb_logger.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/files/usb_logger.service -------------------------------------------------------------------------------- /firmware/g2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/firmware/g2.bin -------------------------------------------------------------------------------- /firmware/g2core_101.57.51.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/firmware/g2core_101.57.51.bin -------------------------------------------------------------------------------- /firmware/g2core_101.57.53-6axis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/firmware/g2core_101.57.53-6axis.bin -------------------------------------------------------------------------------- /firmware/g2core_101.57.53-Copy.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/firmware/g2core_101.57.53-Copy.bin -------------------------------------------------------------------------------- /g2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/g2.js -------------------------------------------------------------------------------- /log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/log.js -------------------------------------------------------------------------------- /machine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/machine.js -------------------------------------------------------------------------------- /macros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/macros.js -------------------------------------------------------------------------------- /network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/network.js -------------------------------------------------------------------------------- /network/linux/raspberry-pi/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/network/linux/raspberry-pi/commands.js -------------------------------------------------------------------------------- /network/linux/raspberry-pi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/network/linux/raspberry-pi/index.js -------------------------------------------------------------------------------- /network_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/network_manager.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/package.json -------------------------------------------------------------------------------- /profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles.js -------------------------------------------------------------------------------- /profiles/default/config/engine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/default/config/engine.json -------------------------------------------------------------------------------- /profiles/default/config/g2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/default/config/g2.json -------------------------------------------------------------------------------- /profiles/default/config/instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/default/config/instance.json -------------------------------------------------------------------------------- /profiles/default/config/machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/default/config/machine.json -------------------------------------------------------------------------------- /profiles/default/config/opensbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/default/config/opensbp.json -------------------------------------------------------------------------------- /profiles/default/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/default/package.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/README.md -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/apps/Cutting Settings.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/apps/Cutting Settings.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/apps/smooth.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/apps/smooth.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/config/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "profile":"ShopBot Desktop" 3 | } 4 | -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/config/g2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/config/g2.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/config/instance.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/config/machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/config/machine.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/config/opensbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/config/opensbp.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_10.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_10.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_2.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_2.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_201.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_201.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_211.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_211.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_3.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_3.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_5.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_5.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_6.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_6.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_7.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_7.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_78.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_78.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_79.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_79.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_9.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_9.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_90.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_90.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/macros/macro_91.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/macros/macro_91.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dt/package.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/README.md -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/apps/CONSOLE_v0.0.04.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/apps/CONSOLE_v0.0.04.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/apps/Cutting Settings.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/apps/Cutting Settings.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/apps/config_app.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/apps/config_app.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/apps/smooth.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/apps/smooth.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/config/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "profile":"ShopBot Desktop ATC" 3 | } 4 | -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/config/g2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/config/g2.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/config/instance.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/config/machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/config/machine.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/config/opensbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/config/opensbp.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_1.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_1.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_10.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_10.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_2.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_2.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_201.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_201.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_204.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_204.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_205.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_205.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_211.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_211.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_212.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_212.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_3.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_3.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_5.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_5.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_6.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_6.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_7.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_7.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_70.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_70.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_71.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_71.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_72.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_72.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_73.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_73.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_74.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_74.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_75.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_75.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_78.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_78.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_79.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_79.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_9.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_9.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_90.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_90.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/macros/macro_91.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/macros/macro_91.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtatc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtatc/package.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/README.md -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/apps/CONSOLE_v0.0.04.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/apps/CONSOLE_v0.0.04.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/apps/Cutting Settings.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/apps/Cutting Settings.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/apps/FabMo Simple Surfacer_v0.0.3.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/apps/FabMo Simple Surfacer_v0.0.3.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/apps/fabmo-app-example_v1.0.3.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/apps/fabmo-app-example_v1.0.3.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/config/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "profile":"ShopBot Desktop MAX" 3 | } 4 | -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/config/g2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/config/g2.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/config/instance.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/config/machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/config/machine.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/config/opensbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/config/opensbp.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_10.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_10.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_2.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_2.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_201.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_201.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_211.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_211.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_3.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_3.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_5.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_5.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_6.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_6.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_7.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_7.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_78.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_78.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_79.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_79.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_9.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_9.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_90.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_90.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/macros/macro_91.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/macros/macro_91.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-dtmax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-dtmax/package.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/README.md -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/apps/config_app.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/apps/config_app.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/apps/fabmo-app-example_v1.0.3.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/apps/fabmo-app-example_v1.0.3.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/apps/smooth.fma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/apps/smooth.fma -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/config/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "profile":"Handibot 2.0/2.1" 3 | } 4 | -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/config/g2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/config/g2.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/config/instance.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/config/machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/config/machine.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/config/opensbp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/config/opensbp.json -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_10.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_10.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_2.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_2.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_201.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_201.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_211.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_211.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_3.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_3.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_5.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_5.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_6.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_6.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_7.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_7.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_78.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_78.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_79.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_79.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_9.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_9.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_90.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_90.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/NEWmacro_91.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/NEWmacro_91.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/README.txt -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_2.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_2.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_201.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_201.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_211.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_211.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_3.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_3.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_6.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_6.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_7.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_7.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_77.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_77.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_78.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_78.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_79.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_79.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_9.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_9.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_90.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_90.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/macros/macro_91.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/macros/macro_91.sbp -------------------------------------------------------------------------------- /profiles/fabmo-profile-handibot-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/profiles/fabmo-profile-handibot-2/package.json -------------------------------------------------------------------------------- /pythonUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/pythonUtils/README.md -------------------------------------------------------------------------------- /pythonUtils/fabmo_support_contact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/pythonUtils/fabmo_support_contact.txt -------------------------------------------------------------------------------- /pythonUtils/i2c_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/pythonUtils/i2c_display.py -------------------------------------------------------------------------------- /pythonUtils/libs/ssd1039.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/pythonUtils/libs/ssd1039.py -------------------------------------------------------------------------------- /pythonUtils/run_i2c_display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/pythonUtils/run_i2c_display.sh -------------------------------------------------------------------------------- /pythonUtils/usb_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/pythonUtils/usb_logger.py -------------------------------------------------------------------------------- /routes/acc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/acc.js -------------------------------------------------------------------------------- /routes/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/authentication.js -------------------------------------------------------------------------------- /routes/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/config.js -------------------------------------------------------------------------------- /routes/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/dashboard.js -------------------------------------------------------------------------------- /routes/direct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/direct.js -------------------------------------------------------------------------------- /routes/firmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/firmware.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/jobs.js -------------------------------------------------------------------------------- /routes/kill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/kill.js -------------------------------------------------------------------------------- /routes/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/log.js -------------------------------------------------------------------------------- /routes/macros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/macros.js -------------------------------------------------------------------------------- /routes/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/network.js -------------------------------------------------------------------------------- /routes/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/state.js -------------------------------------------------------------------------------- /routes/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/time.js -------------------------------------------------------------------------------- /routes/uix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/uix.js -------------------------------------------------------------------------------- /routes/updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/updater.js -------------------------------------------------------------------------------- /routes/usbFileRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/usbFileRoutes.js -------------------------------------------------------------------------------- /routes/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/util.js -------------------------------------------------------------------------------- /routes/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/routes/websocket.js -------------------------------------------------------------------------------- /runtime/gcode/gcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/gcode/gcode.js -------------------------------------------------------------------------------- /runtime/gcode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/gcode/index.js -------------------------------------------------------------------------------- /runtime/idle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/idle.js -------------------------------------------------------------------------------- /runtime/manual/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/manual/driver.js -------------------------------------------------------------------------------- /runtime/manual/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/manual/index.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/custom.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/cut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/cut.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/file.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/index.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/jog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/jog.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/leveler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/leveler.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/location.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/move.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/probe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/probe.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/setting.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/tools.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/value.js -------------------------------------------------------------------------------- /runtime/opensbp/commands/zero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/commands/zero.js -------------------------------------------------------------------------------- /runtime/opensbp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/index.js -------------------------------------------------------------------------------- /runtime/opensbp/interpolate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/interpolate.js -------------------------------------------------------------------------------- /runtime/opensbp/opensbp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/opensbp.js -------------------------------------------------------------------------------- /runtime/opensbp/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/parser.js -------------------------------------------------------------------------------- /runtime/opensbp/sb3_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/sb3_commands.json -------------------------------------------------------------------------------- /runtime/opensbp/sbp_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/sbp_parser.js -------------------------------------------------------------------------------- /runtime/opensbp/sbp_parser.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/sbp_parser.pegjs -------------------------------------------------------------------------------- /runtime/opensbp/test-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/test-error.js -------------------------------------------------------------------------------- /runtime/opensbp/test1.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/test1.sbp -------------------------------------------------------------------------------- /runtime/opensbp/test2.sbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/test2.sbp -------------------------------------------------------------------------------- /runtime/opensbp/test_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/test_parser.js -------------------------------------------------------------------------------- /runtime/opensbp/transformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/opensbp/transformation.js -------------------------------------------------------------------------------- /runtime/passthrough/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/runtime/passthrough/index.js -------------------------------------------------------------------------------- /scripts/convert_sb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/scripts/convert_sb3.js -------------------------------------------------------------------------------- /scripts/sb3_to_gcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/scripts/sb3_to_gcode.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/server.js -------------------------------------------------------------------------------- /spindle1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/spindle1.js -------------------------------------------------------------------------------- /spindles/spindle-VFD-data/spin-DT-1hp-delta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/spindles/spindle-VFD-data/spin-DT-1hp-delta.json -------------------------------------------------------------------------------- /spindles/spindle-VFD-data/spin-DT-1hp-lenze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/spindles/spindle-VFD-data/spin-DT-1hp-lenze.json -------------------------------------------------------------------------------- /spindles/spindle1_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/spindles/spindle1_settings.json -------------------------------------------------------------------------------- /static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/static.js -------------------------------------------------------------------------------- /test/machine.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/test/machine.test.js -------------------------------------------------------------------------------- /test/util.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/test/util.test.js -------------------------------------------------------------------------------- /updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/updater.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/util.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FabMo/FabMo-Engine/HEAD/webpack.config.js --------------------------------------------------------------------------------