├── .gitignore ├── LICENSE ├── README.md ├── client ├── .bowerrc ├── bower.json ├── css │ ├── jumbotron-narrow.css │ ├── styles.css │ └── theme.css ├── images │ ├── RoseGuarden.png │ └── loading.gif ├── index.html ├── js │ ├── controllers │ │ ├── AdminSpaceCtrl.js │ │ ├── AdminTabCtrl.js │ │ ├── ApplicationCtrl.js │ │ ├── HomeCtrl.js │ │ ├── HomeTabCtrl.js │ │ ├── LoginCtrl.js │ │ ├── LogoutCtrl.js │ │ ├── LostPasswordCtrl.js │ │ ├── RegisterCtrl.js │ │ ├── SupervisorTabCtrl.js │ │ ├── UserAdminsListCtrl.js │ │ ├── UserLogCtrl.js │ │ ├── UserProfileCtrl.js │ │ ├── admin │ │ │ ├── AdminDebugCtrl.js │ │ │ ├── AdminDoorsCtrl.js │ │ │ ├── AdminLogCtrl.js │ │ │ ├── AdminSettingsCtrl.js │ │ │ ├── AdminStatsCtrl.js │ │ │ └── AdminUsersCtrl.js │ │ ├── modal │ │ │ ├── InvalidateRFIDCtrl.js │ │ │ ├── RemoveDoorCtrl.js │ │ │ ├── RemoveUserCtrl.js │ │ │ ├── SendWelcomeMailCtrl.js │ │ │ └── SetupUserAccessCtrl.js │ │ └── supervisor │ │ │ └── SupervisorUsersCtrl.js │ ├── directives │ │ ├── Match.js │ │ └── SmartTableRatio.js │ ├── factories │ │ ├── Door.js │ │ ├── InvalidateAuthCardRequest.js │ │ ├── Log.js │ │ ├── OpeningRequest.js │ │ ├── PasswordRequest.js │ │ ├── RfidTag.js │ │ ├── Session.js │ │ ├── Setting.js │ │ ├── Statistic.js │ │ ├── SyncRequest.js │ │ └── User.js │ ├── filters │ │ ├── accessType.js │ │ ├── bitwiseAnd.js │ │ ├── moment.js │ │ ├── roles.js │ │ ├── unsafeHTML.js │ │ └── weekdaysBitwise.js │ ├── main.js │ └── services │ │ └── AuthService.js ├── partials │ ├── admin │ │ ├── debug.html │ │ ├── devices.html │ │ ├── doors.html │ │ ├── log.html │ │ ├── settings.html │ │ ├── stats.html │ │ └── users.html │ ├── main │ │ ├── admin.html │ │ ├── home.html │ │ └── supervisor.html │ ├── modals │ │ ├── InvalidateRfidTag.html │ │ ├── LostAuthCard.html │ │ ├── RemoveDoor.html │ │ ├── RemoveUser.html │ │ ├── SendWelcomeMail.html │ │ └── SetupUserAccess.html │ ├── session │ │ ├── login.html │ │ ├── logout.html │ │ ├── lostpassword.html │ │ └── register.html │ ├── supervisor │ │ └── users.html │ └── user │ │ ├── adminsList.html │ │ ├── log.html │ │ └── profile.html └── snippets │ ├── css_snippets │ ├── html_snippets.txt │ └── js_snippets.txt ├── documentation ├── datasheets │ └── Mifare_S50_Datasheet_MF1S50YYX_V1.pdf ├── instructions │ ├── RoseGuarden_Schematic.odg │ ├── RoseGuarden_Schematic.png │ └── RoseGuarden_Schematic.svg ├── manual&guides │ ├── images │ │ ├── CC-symbols.png │ │ ├── FabLabDD.png │ │ ├── Konglomerat_eV.png │ │ ├── Overview.odg │ │ ├── RoseGuarden.png │ │ └── Roseguarden_Overview.png │ ├── roseGuarden_developerGuide_eng.lyx │ ├── roseGuarden_developerGuide_eng.pdf │ ├── roseGuarden_manual_ger.lyx │ └── roseGuarden_manual_ger.pdf ├── photos │ ├── RoseGuarden_Hardware_Assembled_v1.jpg │ └── RoseGuarden_Hardware_Mounted_v1.jpg ├── presentations │ ├── Talk_at_VOW_Dresden_Germany_2015-11-06.odp │ ├── Talk_at_VOW_Dresden_Germany_2015-11-06.pdf │ └── Talk_at_VOW_Dresden_Germany_2015-11-06.txt ├── screenshots │ ├── admin_doors.png │ ├── admin_log.png │ ├── admin_stats.png │ ├── admin_users.png │ ├── freecad_raspberry_plate_model_v4.png │ ├── login.png │ ├── register.png │ ├── supervisor_space.png │ └── userspace.png └── templates&scripts │ ├── supervisord.config.txt │ └── wifi_reonnect.sh ├── hardware ├── Components_Dimensions.svg ├── case │ ├── GCode │ │ ├── raspB_cover_v1(0).gcode │ │ ├── raspB_cover_v1.gcode │ │ └── rasp_plate_v5.gcode │ ├── STL │ │ ├── knop_20mm_v1.stl │ │ ├── knop_20mm_v2.stl │ │ ├── raspB_cover_v1.stl │ │ ├── rasp_plate_v4.stl │ │ ├── rasp_plate_v5.stl │ │ └── test.stl │ ├── case_raspberryB.fcstd1 │ ├── case_raspberryB_cover.fcstd │ ├── case_raspberryB_cover.fcstd1 │ ├── case_raspberryB_plate.fcstd │ ├── case_raspberryB_plate.fcstd1 │ ├── case_raspberryB_plate_v2.fcstd │ ├── case_raspberryB_plate_v2.fcstd1 │ ├── case_raspberryB_plate_v3.fcstd │ ├── case_raspberryB_plate_v3.fcstd1 │ ├── case_raspberryB_plate_v4.fcstd │ ├── case_raspberryB_plate_v4.fcstd1 │ ├── case_raspberryB_plate_v5.fcstd │ ├── case_raspberryB_plate_v5.fcstd1 │ ├── knob_20mm.fcstd │ ├── knob_20mm.fcstd1 │ ├── logo.svg │ ├── logo_flattened.png │ ├── rfid_logo.svg │ ├── roseguarden_logo_constructed.fcstd │ ├── roseguarden_logo_constructed.fcstd1 │ ├── roseguarden_logo_svg_imported.fcstd │ └── roseguarden_logo_svg_imported.stl ├── case2 │ ├── Board.fcstd │ ├── Board.fcstd1 │ ├── Case.fcstd │ ├── Case.fcstd1 │ ├── Edge.fcstd │ ├── Edge.fcstd1 │ ├── Plate.svg │ ├── Plate_v2.pdf │ ├── Plate_v2.svg │ ├── Plate_v3.svg │ ├── Plate_v4.svg │ ├── Sidepanel.fcstd │ ├── Sidepanel.fcstd1 │ ├── Sidepanel_v1.svg │ ├── Sidepanel_v2.svg │ ├── Sucker.fcstd │ ├── SuckerHolder.fcstd │ ├── SuckerHolder.fcstd1 │ ├── SuckerHolder2.fcstd │ └── SuckerHolder2.fcstd1 └── terminal │ ├── Oled_drawing.jpg │ ├── terminal1.FCStd1 │ ├── terminal_v1.FCStd │ ├── terminal_v2_cap.FCStd │ └── terminal_v2_cap.FCStd1 └── server ├── __init__.py ├── app ├── GPIO.py ├── GPIO.pyc ├── ILI9163Driver │ ├── ILI9163Driver.py │ ├── ILI9163Driver_example.py │ └── heart.png ├── MFRC522 │ ├── Dump.py │ ├── MFRC522.py │ ├── README.md │ ├── Read.py │ ├── Write.py │ ├── __init__.py │ ├── roseGuarden_Test_Assign.py │ ├── roseGuarden_Test_Check.py │ ├── roseGuarden_Test_Read.py │ └── roseGuarden_Test_Withdraw.py ├── RFID.py ├── RFID.pyc ├── SPI-Py │ ├── README.md │ ├── __init__.py │ ├── build │ │ ├── lib.linux-i686-2.7 │ │ │ └── spi.so │ │ └── temp.linux-i686-2.7 │ │ │ └── spi.o │ ├── setup.py │ └── spi.c ├── __init__.py ├── __init__.pyc ├── config.py ├── config.pyc ├── email.py ├── email.pyc ├── forms.py ├── forms.pyc ├── helpers.py ├── helpers.pyc ├── logging.py ├── logging.pyc ├── models.py ├── models.pyc ├── platform.py ├── platform.pyc ├── security.py ├── security.pyc ├── seed.py ├── seed.pyc ├── serializers.py ├── serializers.pyc ├── server.py ├── server.pyc ├── settings.py ├── settings.pyc ├── statistics.py ├── statistics.pyc ├── templates │ ├── lostpassword_mail.html │ ├── lostpassword_mail.txt │ ├── welcome_mail.html │ └── welcome_mail.txt ├── test.py ├── test.pyc ├── views.py ├── views.pyc ├── worker.py └── worker.pyc ├── config.master_template.ini ├── config.slave_template.ini ├── database └── description.md ├── migrations ├── README ├── alembic.ini ├── env.py ├── env.pyc ├── script.py.mako └── versions │ ├── 1c98d63b6508_.py │ ├── 1c98d63b6508_.pyc │ ├── 296a9288bc8e_.py │ ├── 296a9288bc8e_.pyc │ ├── 31b5bd80b4ea_.py │ ├── 31b5bd80b4ea_.pyc │ ├── 4a5c5d68e81e_.py │ └── 4a5c5d68e81e_.pyc ├── requirements.txt ├── requirements_win_dev.txt ├── roseGuarden.py ├── roseGuardenHelper.py ├── roseGuardenTest.py ├── snippedtest.py └── tests └── REST_Requests ├── Doors_Request.xml ├── Password_Request.xml ├── User_Request.xml └── register_User.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/README.md -------------------------------------------------------------------------------- /client/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "bower_components" 3 | } -------------------------------------------------------------------------------- /client/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/bower.json -------------------------------------------------------------------------------- /client/css/jumbotron-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/css/jumbotron-narrow.css -------------------------------------------------------------------------------- /client/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/css/styles.css -------------------------------------------------------------------------------- /client/css/theme.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/images/RoseGuarden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/images/RoseGuarden.png -------------------------------------------------------------------------------- /client/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/images/loading.gif -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/index.html -------------------------------------------------------------------------------- /client/js/controllers/AdminSpaceCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/AdminSpaceCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/AdminTabCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/AdminTabCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/ApplicationCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/ApplicationCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/HomeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/HomeCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/HomeTabCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/HomeTabCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/LoginCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/LoginCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/LogoutCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/LogoutCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/LostPasswordCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/LostPasswordCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/RegisterCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/RegisterCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/SupervisorTabCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/SupervisorTabCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/UserAdminsListCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/UserAdminsListCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/UserLogCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/UserLogCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/UserProfileCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/UserProfileCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/admin/AdminDebugCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/admin/AdminDebugCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/admin/AdminDoorsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/admin/AdminDoorsCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/admin/AdminLogCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/admin/AdminLogCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/admin/AdminSettingsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/admin/AdminSettingsCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/admin/AdminStatsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/admin/AdminStatsCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/admin/AdminUsersCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/admin/AdminUsersCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/modal/InvalidateRFIDCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/modal/InvalidateRFIDCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/modal/RemoveDoorCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/modal/RemoveDoorCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/modal/RemoveUserCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/modal/RemoveUserCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/modal/SendWelcomeMailCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/modal/SendWelcomeMailCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/modal/SetupUserAccessCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/modal/SetupUserAccessCtrl.js -------------------------------------------------------------------------------- /client/js/controllers/supervisor/SupervisorUsersCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/controllers/supervisor/SupervisorUsersCtrl.js -------------------------------------------------------------------------------- /client/js/directives/Match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/directives/Match.js -------------------------------------------------------------------------------- /client/js/directives/SmartTableRatio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/directives/SmartTableRatio.js -------------------------------------------------------------------------------- /client/js/factories/Door.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/Door.js -------------------------------------------------------------------------------- /client/js/factories/InvalidateAuthCardRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/InvalidateAuthCardRequest.js -------------------------------------------------------------------------------- /client/js/factories/Log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/Log.js -------------------------------------------------------------------------------- /client/js/factories/OpeningRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/OpeningRequest.js -------------------------------------------------------------------------------- /client/js/factories/PasswordRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/PasswordRequest.js -------------------------------------------------------------------------------- /client/js/factories/RfidTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/RfidTag.js -------------------------------------------------------------------------------- /client/js/factories/Session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/Session.js -------------------------------------------------------------------------------- /client/js/factories/Setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/Setting.js -------------------------------------------------------------------------------- /client/js/factories/Statistic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/Statistic.js -------------------------------------------------------------------------------- /client/js/factories/SyncRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/SyncRequest.js -------------------------------------------------------------------------------- /client/js/factories/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/factories/User.js -------------------------------------------------------------------------------- /client/js/filters/accessType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/filters/accessType.js -------------------------------------------------------------------------------- /client/js/filters/bitwiseAnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/filters/bitwiseAnd.js -------------------------------------------------------------------------------- /client/js/filters/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/filters/moment.js -------------------------------------------------------------------------------- /client/js/filters/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/filters/roles.js -------------------------------------------------------------------------------- /client/js/filters/unsafeHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/filters/unsafeHTML.js -------------------------------------------------------------------------------- /client/js/filters/weekdaysBitwise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/filters/weekdaysBitwise.js -------------------------------------------------------------------------------- /client/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/main.js -------------------------------------------------------------------------------- /client/js/services/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/js/services/AuthService.js -------------------------------------------------------------------------------- /client/partials/admin/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/admin/debug.html -------------------------------------------------------------------------------- /client/partials/admin/devices.html: -------------------------------------------------------------------------------- 1 | Devices comming soon. -------------------------------------------------------------------------------- /client/partials/admin/doors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/admin/doors.html -------------------------------------------------------------------------------- /client/partials/admin/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/admin/log.html -------------------------------------------------------------------------------- /client/partials/admin/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/admin/settings.html -------------------------------------------------------------------------------- /client/partials/admin/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/admin/stats.html -------------------------------------------------------------------------------- /client/partials/admin/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/admin/users.html -------------------------------------------------------------------------------- /client/partials/main/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/main/admin.html -------------------------------------------------------------------------------- /client/partials/main/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/main/home.html -------------------------------------------------------------------------------- /client/partials/main/supervisor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/main/supervisor.html -------------------------------------------------------------------------------- /client/partials/modals/InvalidateRfidTag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/modals/InvalidateRfidTag.html -------------------------------------------------------------------------------- /client/partials/modals/LostAuthCard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/modals/LostAuthCard.html -------------------------------------------------------------------------------- /client/partials/modals/RemoveDoor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/modals/RemoveDoor.html -------------------------------------------------------------------------------- /client/partials/modals/RemoveUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/modals/RemoveUser.html -------------------------------------------------------------------------------- /client/partials/modals/SendWelcomeMail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/modals/SendWelcomeMail.html -------------------------------------------------------------------------------- /client/partials/modals/SetupUserAccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/modals/SetupUserAccess.html -------------------------------------------------------------------------------- /client/partials/session/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/session/login.html -------------------------------------------------------------------------------- /client/partials/session/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/session/logout.html -------------------------------------------------------------------------------- /client/partials/session/lostpassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/session/lostpassword.html -------------------------------------------------------------------------------- /client/partials/session/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/session/register.html -------------------------------------------------------------------------------- /client/partials/supervisor/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/supervisor/users.html -------------------------------------------------------------------------------- /client/partials/user/adminsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/user/adminsList.html -------------------------------------------------------------------------------- /client/partials/user/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/user/log.html -------------------------------------------------------------------------------- /client/partials/user/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/partials/user/profile.html -------------------------------------------------------------------------------- /client/snippets/css_snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/snippets/css_snippets -------------------------------------------------------------------------------- /client/snippets/html_snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/client/snippets/html_snippets.txt -------------------------------------------------------------------------------- /client/snippets/js_snippets.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/datasheets/Mifare_S50_Datasheet_MF1S50YYX_V1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/datasheets/Mifare_S50_Datasheet_MF1S50YYX_V1.pdf -------------------------------------------------------------------------------- /documentation/instructions/RoseGuarden_Schematic.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/instructions/RoseGuarden_Schematic.odg -------------------------------------------------------------------------------- /documentation/instructions/RoseGuarden_Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/instructions/RoseGuarden_Schematic.png -------------------------------------------------------------------------------- /documentation/instructions/RoseGuarden_Schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/instructions/RoseGuarden_Schematic.svg -------------------------------------------------------------------------------- /documentation/manual&guides/images/CC-symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/images/CC-symbols.png -------------------------------------------------------------------------------- /documentation/manual&guides/images/FabLabDD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/images/FabLabDD.png -------------------------------------------------------------------------------- /documentation/manual&guides/images/Konglomerat_eV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/images/Konglomerat_eV.png -------------------------------------------------------------------------------- /documentation/manual&guides/images/Overview.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/images/Overview.odg -------------------------------------------------------------------------------- /documentation/manual&guides/images/RoseGuarden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/images/RoseGuarden.png -------------------------------------------------------------------------------- /documentation/manual&guides/images/Roseguarden_Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/images/Roseguarden_Overview.png -------------------------------------------------------------------------------- /documentation/manual&guides/roseGuarden_developerGuide_eng.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/roseGuarden_developerGuide_eng.lyx -------------------------------------------------------------------------------- /documentation/manual&guides/roseGuarden_developerGuide_eng.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/roseGuarden_developerGuide_eng.pdf -------------------------------------------------------------------------------- /documentation/manual&guides/roseGuarden_manual_ger.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/roseGuarden_manual_ger.lyx -------------------------------------------------------------------------------- /documentation/manual&guides/roseGuarden_manual_ger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/manual&guides/roseGuarden_manual_ger.pdf -------------------------------------------------------------------------------- /documentation/photos/RoseGuarden_Hardware_Assembled_v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/photos/RoseGuarden_Hardware_Assembled_v1.jpg -------------------------------------------------------------------------------- /documentation/photos/RoseGuarden_Hardware_Mounted_v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/photos/RoseGuarden_Hardware_Mounted_v1.jpg -------------------------------------------------------------------------------- /documentation/presentations/Talk_at_VOW_Dresden_Germany_2015-11-06.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/presentations/Talk_at_VOW_Dresden_Germany_2015-11-06.odp -------------------------------------------------------------------------------- /documentation/presentations/Talk_at_VOW_Dresden_Germany_2015-11-06.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/presentations/Talk_at_VOW_Dresden_Germany_2015-11-06.pdf -------------------------------------------------------------------------------- /documentation/presentations/Talk_at_VOW_Dresden_Germany_2015-11-06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/presentations/Talk_at_VOW_Dresden_Germany_2015-11-06.txt -------------------------------------------------------------------------------- /documentation/screenshots/admin_doors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/screenshots/admin_doors.png -------------------------------------------------------------------------------- /documentation/screenshots/admin_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/screenshots/admin_log.png -------------------------------------------------------------------------------- /documentation/screenshots/admin_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/screenshots/admin_stats.png -------------------------------------------------------------------------------- /documentation/screenshots/admin_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/screenshots/admin_users.png -------------------------------------------------------------------------------- /documentation/screenshots/freecad_raspberry_plate_model_v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/screenshots/freecad_raspberry_plate_model_v4.png -------------------------------------------------------------------------------- /documentation/screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/screenshots/login.png -------------------------------------------------------------------------------- /documentation/screenshots/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/screenshots/register.png -------------------------------------------------------------------------------- /documentation/screenshots/supervisor_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/screenshots/supervisor_space.png -------------------------------------------------------------------------------- /documentation/screenshots/userspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/screenshots/userspace.png -------------------------------------------------------------------------------- /documentation/templates&scripts/supervisord.config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/templates&scripts/supervisord.config.txt -------------------------------------------------------------------------------- /documentation/templates&scripts/wifi_reonnect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/documentation/templates&scripts/wifi_reonnect.sh -------------------------------------------------------------------------------- /hardware/Components_Dimensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/Components_Dimensions.svg -------------------------------------------------------------------------------- /hardware/case/GCode/raspB_cover_v1(0).gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/GCode/raspB_cover_v1(0).gcode -------------------------------------------------------------------------------- /hardware/case/GCode/raspB_cover_v1.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/GCode/raspB_cover_v1.gcode -------------------------------------------------------------------------------- /hardware/case/GCode/rasp_plate_v5.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/GCode/rasp_plate_v5.gcode -------------------------------------------------------------------------------- /hardware/case/STL/knop_20mm_v1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/STL/knop_20mm_v1.stl -------------------------------------------------------------------------------- /hardware/case/STL/knop_20mm_v2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/STL/knop_20mm_v2.stl -------------------------------------------------------------------------------- /hardware/case/STL/raspB_cover_v1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/STL/raspB_cover_v1.stl -------------------------------------------------------------------------------- /hardware/case/STL/rasp_plate_v4.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/STL/rasp_plate_v4.stl -------------------------------------------------------------------------------- /hardware/case/STL/rasp_plate_v5.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/STL/rasp_plate_v5.stl -------------------------------------------------------------------------------- /hardware/case/STL/test.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/STL/test.stl -------------------------------------------------------------------------------- /hardware/case/case_raspberryB.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB.fcstd1 -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_cover.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_cover.fcstd -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_cover.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_cover.fcstd1 -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate.fcstd -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate.fcstd1 -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate_v2.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate_v2.fcstd -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate_v2.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate_v2.fcstd1 -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate_v3.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate_v3.fcstd -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate_v3.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate_v3.fcstd1 -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate_v4.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate_v4.fcstd -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate_v4.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate_v4.fcstd1 -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate_v5.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate_v5.fcstd -------------------------------------------------------------------------------- /hardware/case/case_raspberryB_plate_v5.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/case_raspberryB_plate_v5.fcstd1 -------------------------------------------------------------------------------- /hardware/case/knob_20mm.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/knob_20mm.fcstd -------------------------------------------------------------------------------- /hardware/case/knob_20mm.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/knob_20mm.fcstd1 -------------------------------------------------------------------------------- /hardware/case/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/logo.svg -------------------------------------------------------------------------------- /hardware/case/logo_flattened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/logo_flattened.png -------------------------------------------------------------------------------- /hardware/case/rfid_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/rfid_logo.svg -------------------------------------------------------------------------------- /hardware/case/roseguarden_logo_constructed.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/roseguarden_logo_constructed.fcstd -------------------------------------------------------------------------------- /hardware/case/roseguarden_logo_constructed.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/roseguarden_logo_constructed.fcstd1 -------------------------------------------------------------------------------- /hardware/case/roseguarden_logo_svg_imported.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/roseguarden_logo_svg_imported.fcstd -------------------------------------------------------------------------------- /hardware/case/roseguarden_logo_svg_imported.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case/roseguarden_logo_svg_imported.stl -------------------------------------------------------------------------------- /hardware/case2/Board.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Board.fcstd -------------------------------------------------------------------------------- /hardware/case2/Board.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Board.fcstd1 -------------------------------------------------------------------------------- /hardware/case2/Case.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Case.fcstd -------------------------------------------------------------------------------- /hardware/case2/Case.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Case.fcstd1 -------------------------------------------------------------------------------- /hardware/case2/Edge.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Edge.fcstd -------------------------------------------------------------------------------- /hardware/case2/Edge.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Edge.fcstd1 -------------------------------------------------------------------------------- /hardware/case2/Plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Plate.svg -------------------------------------------------------------------------------- /hardware/case2/Plate_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Plate_v2.pdf -------------------------------------------------------------------------------- /hardware/case2/Plate_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Plate_v2.svg -------------------------------------------------------------------------------- /hardware/case2/Plate_v3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Plate_v3.svg -------------------------------------------------------------------------------- /hardware/case2/Plate_v4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Plate_v4.svg -------------------------------------------------------------------------------- /hardware/case2/Sidepanel.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Sidepanel.fcstd -------------------------------------------------------------------------------- /hardware/case2/Sidepanel.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Sidepanel.fcstd1 -------------------------------------------------------------------------------- /hardware/case2/Sidepanel_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Sidepanel_v1.svg -------------------------------------------------------------------------------- /hardware/case2/Sidepanel_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Sidepanel_v2.svg -------------------------------------------------------------------------------- /hardware/case2/Sucker.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/Sucker.fcstd -------------------------------------------------------------------------------- /hardware/case2/SuckerHolder.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/SuckerHolder.fcstd -------------------------------------------------------------------------------- /hardware/case2/SuckerHolder.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/SuckerHolder.fcstd1 -------------------------------------------------------------------------------- /hardware/case2/SuckerHolder2.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/SuckerHolder2.fcstd -------------------------------------------------------------------------------- /hardware/case2/SuckerHolder2.fcstd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/case2/SuckerHolder2.fcstd1 -------------------------------------------------------------------------------- /hardware/terminal/Oled_drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/terminal/Oled_drawing.jpg -------------------------------------------------------------------------------- /hardware/terminal/terminal1.FCStd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/terminal/terminal1.FCStd1 -------------------------------------------------------------------------------- /hardware/terminal/terminal_v1.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/terminal/terminal_v1.FCStd -------------------------------------------------------------------------------- /hardware/terminal/terminal_v2_cap.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/terminal/terminal_v2_cap.FCStd -------------------------------------------------------------------------------- /hardware/terminal/terminal_v2_cap.FCStd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/hardware/terminal/terminal_v2_cap.FCStd1 -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'drobisch' 2 | -------------------------------------------------------------------------------- /server/app/GPIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/GPIO.py -------------------------------------------------------------------------------- /server/app/GPIO.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/GPIO.pyc -------------------------------------------------------------------------------- /server/app/ILI9163Driver/ILI9163Driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/ILI9163Driver/ILI9163Driver.py -------------------------------------------------------------------------------- /server/app/ILI9163Driver/ILI9163Driver_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/ILI9163Driver/ILI9163Driver_example.py -------------------------------------------------------------------------------- /server/app/ILI9163Driver/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/ILI9163Driver/heart.png -------------------------------------------------------------------------------- /server/app/MFRC522/Dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/MFRC522/Dump.py -------------------------------------------------------------------------------- /server/app/MFRC522/MFRC522.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/MFRC522/MFRC522.py -------------------------------------------------------------------------------- /server/app/MFRC522/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/MFRC522/README.md -------------------------------------------------------------------------------- /server/app/MFRC522/Read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/MFRC522/Read.py -------------------------------------------------------------------------------- /server/app/MFRC522/Write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/MFRC522/Write.py -------------------------------------------------------------------------------- /server/app/MFRC522/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'drobisch' 2 | -------------------------------------------------------------------------------- /server/app/MFRC522/roseGuarden_Test_Assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/MFRC522/roseGuarden_Test_Assign.py -------------------------------------------------------------------------------- /server/app/MFRC522/roseGuarden_Test_Check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/MFRC522/roseGuarden_Test_Check.py -------------------------------------------------------------------------------- /server/app/MFRC522/roseGuarden_Test_Read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/MFRC522/roseGuarden_Test_Read.py -------------------------------------------------------------------------------- /server/app/MFRC522/roseGuarden_Test_Withdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/MFRC522/roseGuarden_Test_Withdraw.py -------------------------------------------------------------------------------- /server/app/RFID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/RFID.py -------------------------------------------------------------------------------- /server/app/RFID.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/RFID.pyc -------------------------------------------------------------------------------- /server/app/SPI-Py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/SPI-Py/README.md -------------------------------------------------------------------------------- /server/app/SPI-Py/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'drobisch' 2 | -------------------------------------------------------------------------------- /server/app/SPI-Py/build/lib.linux-i686-2.7/spi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/SPI-Py/build/lib.linux-i686-2.7/spi.so -------------------------------------------------------------------------------- /server/app/SPI-Py/build/temp.linux-i686-2.7/spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/SPI-Py/build/temp.linux-i686-2.7/spi.o -------------------------------------------------------------------------------- /server/app/SPI-Py/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/SPI-Py/setup.py -------------------------------------------------------------------------------- /server/app/SPI-Py/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/SPI-Py/spi.c -------------------------------------------------------------------------------- /server/app/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'drobisch' 2 | -------------------------------------------------------------------------------- /server/app/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/__init__.pyc -------------------------------------------------------------------------------- /server/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/config.py -------------------------------------------------------------------------------- /server/app/config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/config.pyc -------------------------------------------------------------------------------- /server/app/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/email.py -------------------------------------------------------------------------------- /server/app/email.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/email.pyc -------------------------------------------------------------------------------- /server/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/forms.py -------------------------------------------------------------------------------- /server/app/forms.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/forms.pyc -------------------------------------------------------------------------------- /server/app/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/helpers.py -------------------------------------------------------------------------------- /server/app/helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/helpers.pyc -------------------------------------------------------------------------------- /server/app/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/logging.py -------------------------------------------------------------------------------- /server/app/logging.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/logging.pyc -------------------------------------------------------------------------------- /server/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/models.py -------------------------------------------------------------------------------- /server/app/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/models.pyc -------------------------------------------------------------------------------- /server/app/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/platform.py -------------------------------------------------------------------------------- /server/app/platform.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/platform.pyc -------------------------------------------------------------------------------- /server/app/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/security.py -------------------------------------------------------------------------------- /server/app/security.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/security.pyc -------------------------------------------------------------------------------- /server/app/seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/seed.py -------------------------------------------------------------------------------- /server/app/seed.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/seed.pyc -------------------------------------------------------------------------------- /server/app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/serializers.py -------------------------------------------------------------------------------- /server/app/serializers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/serializers.pyc -------------------------------------------------------------------------------- /server/app/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/server.py -------------------------------------------------------------------------------- /server/app/server.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/server.pyc -------------------------------------------------------------------------------- /server/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/settings.py -------------------------------------------------------------------------------- /server/app/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/settings.pyc -------------------------------------------------------------------------------- /server/app/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/statistics.py -------------------------------------------------------------------------------- /server/app/statistics.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/statistics.pyc -------------------------------------------------------------------------------- /server/app/templates/lostpassword_mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/templates/lostpassword_mail.html -------------------------------------------------------------------------------- /server/app/templates/lostpassword_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/templates/lostpassword_mail.txt -------------------------------------------------------------------------------- /server/app/templates/welcome_mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/templates/welcome_mail.html -------------------------------------------------------------------------------- /server/app/templates/welcome_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/templates/welcome_mail.txt -------------------------------------------------------------------------------- /server/app/test.py: -------------------------------------------------------------------------------- 1 | __author__ = 'drobisch' 2 | import os 3 | 4 | -------------------------------------------------------------------------------- /server/app/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/test.pyc -------------------------------------------------------------------------------- /server/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/views.py -------------------------------------------------------------------------------- /server/app/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/views.pyc -------------------------------------------------------------------------------- /server/app/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/worker.py -------------------------------------------------------------------------------- /server/app/worker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/app/worker.pyc -------------------------------------------------------------------------------- /server/config.master_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/config.master_template.ini -------------------------------------------------------------------------------- /server/config.slave_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/config.slave_template.ini -------------------------------------------------------------------------------- /server/database/description.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /server/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/alembic.ini -------------------------------------------------------------------------------- /server/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/env.py -------------------------------------------------------------------------------- /server/migrations/env.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/env.pyc -------------------------------------------------------------------------------- /server/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/script.py.mako -------------------------------------------------------------------------------- /server/migrations/versions/1c98d63b6508_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/versions/1c98d63b6508_.py -------------------------------------------------------------------------------- /server/migrations/versions/1c98d63b6508_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/versions/1c98d63b6508_.pyc -------------------------------------------------------------------------------- /server/migrations/versions/296a9288bc8e_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/versions/296a9288bc8e_.py -------------------------------------------------------------------------------- /server/migrations/versions/296a9288bc8e_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/versions/296a9288bc8e_.pyc -------------------------------------------------------------------------------- /server/migrations/versions/31b5bd80b4ea_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/versions/31b5bd80b4ea_.py -------------------------------------------------------------------------------- /server/migrations/versions/31b5bd80b4ea_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/versions/31b5bd80b4ea_.pyc -------------------------------------------------------------------------------- /server/migrations/versions/4a5c5d68e81e_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/versions/4a5c5d68e81e_.py -------------------------------------------------------------------------------- /server/migrations/versions/4a5c5d68e81e_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/migrations/versions/4a5c5d68e81e_.pyc -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/requirements.txt -------------------------------------------------------------------------------- /server/requirements_win_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/requirements_win_dev.txt -------------------------------------------------------------------------------- /server/roseGuarden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/roseGuarden.py -------------------------------------------------------------------------------- /server/roseGuardenHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/roseGuardenHelper.py -------------------------------------------------------------------------------- /server/roseGuardenTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/roseGuardenTest.py -------------------------------------------------------------------------------- /server/snippedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/snippedtest.py -------------------------------------------------------------------------------- /server/tests/REST_Requests/Doors_Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/tests/REST_Requests/Doors_Request.xml -------------------------------------------------------------------------------- /server/tests/REST_Requests/Password_Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/tests/REST_Requests/Password_Request.xml -------------------------------------------------------------------------------- /server/tests/REST_Requests/User_Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/tests/REST_Requests/User_Request.xml -------------------------------------------------------------------------------- /server/tests/REST_Requests/register_User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdrobisch/roseguarden/HEAD/server/tests/REST_Requests/register_User.xml --------------------------------------------------------------------------------