├── .env ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── build.yml ├── .gitignore ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── .travis.yml ├── LICENSE ├── README.md ├── background_tasks ├── linker.html └── playback.html ├── docs ├── images │ ├── 2019_09_01_20_59_07.jpg │ ├── about_us.jpg │ ├── data_logger.jpg │ ├── device_screen.jpg │ ├── drawer.jpg │ ├── faq.jpg │ ├── home_screen.png │ ├── logic_analyzer.jpg │ ├── multimeter.jpg │ ├── oscilloscope.jpg │ ├── power_source.jpg │ ├── project_banner.jpg │ ├── robot.jpg │ ├── settings.jpg │ └── wave_generator.jpg └── screenshots-and-demos.md ├── package.json ├── public ├── app_icon.png ├── electron.js ├── favicon.ico ├── index.html └── manifest.json ├── scripts ├── analytics.py ├── bridge.py ├── device_detection.py ├── file_write.py ├── logic_analyser.py ├── multimeter.py ├── oscilloscope.py ├── playback_bridge.py ├── playback_la.py ├── playback_robot.py ├── power_source.py ├── robotic_arm.py ├── sensors.py └── wave_generator.py ├── src ├── App.js ├── App.test.js ├── components │ ├── Appshell │ │ ├── Appshell.js │ │ ├── Appshell.styles.js │ │ └── index.js │ ├── CustomCircularInput │ │ ├── CustomCircularInput.js │ │ └── index.js │ ├── CustomDialog │ │ ├── CustomDialog.js │ │ ├── CustomDialog.stories.js │ │ └── index.js │ ├── CustomIcons │ │ ├── CapacitorIcon.js │ │ └── ResistorIcon.js │ ├── CustomKnob │ │ ├── CustomKnob.js │ │ ├── index.js │ │ └── skins │ │ │ └── s3.js │ ├── CustomSliderInput │ │ ├── CustomSliderInput.js │ │ └── index.js │ ├── Decorators │ │ └── Decorators.styles.js │ ├── Display │ │ ├── Display.js │ │ ├── Display.styles.js │ │ └── index.js │ ├── GraphPanelLayout │ │ ├── GraphPanelLayout.js │ │ ├── GraphPanelLayout.styles.js │ │ └── index.js │ ├── HomeLayout │ │ ├── HomeLayout.js │ │ ├── HomeLayout.styles.js │ │ └── index.js │ ├── Icons │ │ └── PSLabIcons.js │ └── SimplePanelLayout │ │ ├── SimplePanelLayout.js │ │ ├── SimplePanelLayout.styles.js │ │ └── index.js ├── index.css ├── index.js ├── redux │ ├── actionTypes │ │ └── app.js │ ├── actions │ │ ├── app.js │ │ └── config.js │ ├── reducers │ │ ├── app.js │ │ └── config.js │ └── store.js ├── resources │ ├── accelerometer.svg │ ├── accelerometer_red.svg │ ├── app_icon.png │ ├── back_layout.png │ ├── barometer.svg │ ├── barometer_red.svg │ ├── compass.svg │ ├── compass_red.svg │ ├── device_connected.svg │ ├── device_disconnected.svg │ ├── ds_con.png │ ├── ds_discon.png │ ├── fb.png │ ├── front_layout.png │ ├── git.png │ ├── ic_pwm_pic.png │ ├── ic_sin.png │ ├── ic_square.png │ ├── ic_triangular.png │ ├── logic_analyzer.svg │ ├── logic_analyzer_red.svg │ ├── lux_meter.svg │ ├── lux_meter_red.svg │ ├── multimeter.svg │ ├── multimeter_red.svg │ ├── oscilloscope.svg │ ├── oscilloscope_red.svg │ ├── power_source.svg │ ├── power_source_red.svg │ ├── sensors.svg │ ├── sensors_red.svg │ ├── t.png │ ├── wave_generator.svg │ ├── wave_generator_red.svg │ └── yt.png ├── screen │ ├── AboutUs │ │ ├── AboutUs.js │ │ ├── AboutUs.styles.js │ │ └── index.js │ ├── DeviceScreen │ │ ├── DeviceScreen.js │ │ ├── DeviceScreen.styles.js │ │ └── index.js │ ├── FAQ │ │ ├── FAQ.js │ │ ├── FAQ.styles.js │ │ └── index.js │ ├── Home │ │ ├── Home.js │ │ ├── components │ │ │ ├── InstrumentCard.js │ │ │ ├── InstrumentCard.styles.js │ │ │ ├── Tabs.js │ │ │ ├── Tabs.styles.js │ │ │ ├── Title.js │ │ │ └── Title.styles.js │ │ └── index.js │ ├── Layout │ │ ├── BackLayout.js │ │ ├── FrontLayout.js │ │ └── styles.js │ ├── LoggedData │ │ ├── LoggedData.js │ │ ├── LoggedData.styles.js │ │ └── index.js │ ├── LogicAnalyzer │ │ ├── LogicAnalyzer.js │ │ ├── components │ │ │ ├── ActionButtons.js │ │ │ ├── ActionButtons.styles.js │ │ │ ├── AnalysisParameters.js │ │ │ ├── ChannelParameters.js │ │ │ ├── Graph.js │ │ │ ├── NumberParameter.js │ │ │ ├── Settings.js │ │ │ ├── Settings.styles.js │ │ │ ├── TimeParameters.js │ │ │ └── settingOptions.js │ │ └── index.js │ ├── Multimeter │ │ ├── Multimeter.js │ │ ├── components │ │ │ ├── Dial.js │ │ │ ├── Dial.styles.js │ │ │ ├── InstrumentCluster.js │ │ │ ├── InstrumentCluster.styles.js │ │ │ ├── MeasurementDisplay.js │ │ │ └── SettingOptions.js │ │ └── index.js │ ├── Oscilloscope │ │ ├── Oscilloscope.js │ │ ├── components │ │ │ ├── ActionButtons.js │ │ │ ├── ActionButtons.styles.js │ │ │ ├── AnalysisParameters.js │ │ │ ├── ChannelParameters.js │ │ │ ├── FFTGraph.js │ │ │ ├── FitPanel.js │ │ │ ├── FitPanel.styles.js │ │ │ ├── Graph.js │ │ │ ├── PlotParameters.js │ │ │ ├── Settings.js │ │ │ ├── Settings.styles.js │ │ │ ├── TimeParameters.js │ │ │ ├── XYPlotGraph.js │ │ │ └── settingOptions.js │ │ └── index.js │ ├── PowerSource │ │ ├── PowerSource.js │ │ ├── components │ │ │ ├── InstrumentCluster.js │ │ │ └── InstrumentCluster.styles.js │ │ └── index.js │ ├── RobotArm │ │ ├── Components │ │ │ ├── KnobControl.js │ │ │ ├── PaintArea.js │ │ │ └── styles.js │ │ ├── RobotArm.js │ │ ├── RobotArm.styles.js │ │ └── index.js │ ├── Sensors │ │ ├── Sensors.js │ │ ├── index.js │ │ └── styles.js │ ├── Settings │ │ ├── Settings.js │ │ ├── Settings.styles.js │ │ └── index.js │ └── WaveGenerator │ │ ├── WaveGenerator.js │ │ ├── components │ │ ├── AnalogController.js │ │ ├── DigitalController.js │ │ ├── InstrumentCluster.js │ │ ├── Settings.styles.js │ │ ├── SineWaveParameters.js │ │ ├── SquareWaveParameters.js │ │ └── settingOptions.js │ │ ├── index.js │ │ └── styles.js ├── serviceWorker.js ├── theme.js └── utils │ ├── arithmetics.js │ ├── fileNameProcessor.js │ └── formStyles.js └── utils └── preProcessor.js /.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- 1 | 2 | export const parameters = { 3 | actions: { argTypesRegex: "^on[A-Z].*" }, 4 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/README.md -------------------------------------------------------------------------------- /background_tasks/linker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/background_tasks/linker.html -------------------------------------------------------------------------------- /background_tasks/playback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/background_tasks/playback.html -------------------------------------------------------------------------------- /docs/images/2019_09_01_20_59_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/2019_09_01_20_59_07.jpg -------------------------------------------------------------------------------- /docs/images/about_us.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/about_us.jpg -------------------------------------------------------------------------------- /docs/images/data_logger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/data_logger.jpg -------------------------------------------------------------------------------- /docs/images/device_screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/device_screen.jpg -------------------------------------------------------------------------------- /docs/images/drawer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/drawer.jpg -------------------------------------------------------------------------------- /docs/images/faq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/faq.jpg -------------------------------------------------------------------------------- /docs/images/home_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/home_screen.png -------------------------------------------------------------------------------- /docs/images/logic_analyzer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/logic_analyzer.jpg -------------------------------------------------------------------------------- /docs/images/multimeter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/multimeter.jpg -------------------------------------------------------------------------------- /docs/images/oscilloscope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/oscilloscope.jpg -------------------------------------------------------------------------------- /docs/images/power_source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/power_source.jpg -------------------------------------------------------------------------------- /docs/images/project_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/project_banner.jpg -------------------------------------------------------------------------------- /docs/images/robot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/robot.jpg -------------------------------------------------------------------------------- /docs/images/settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/settings.jpg -------------------------------------------------------------------------------- /docs/images/wave_generator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/images/wave_generator.jpg -------------------------------------------------------------------------------- /docs/screenshots-and-demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/docs/screenshots-and-demos.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/package.json -------------------------------------------------------------------------------- /public/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/public/app_icon.png -------------------------------------------------------------------------------- /public/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/public/electron.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/analytics.py -------------------------------------------------------------------------------- /scripts/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/bridge.py -------------------------------------------------------------------------------- /scripts/device_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/device_detection.py -------------------------------------------------------------------------------- /scripts/file_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/file_write.py -------------------------------------------------------------------------------- /scripts/logic_analyser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/logic_analyser.py -------------------------------------------------------------------------------- /scripts/multimeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/multimeter.py -------------------------------------------------------------------------------- /scripts/oscilloscope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/oscilloscope.py -------------------------------------------------------------------------------- /scripts/playback_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/playback_bridge.py -------------------------------------------------------------------------------- /scripts/playback_la.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/playback_la.py -------------------------------------------------------------------------------- /scripts/playback_robot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/playback_robot.py -------------------------------------------------------------------------------- /scripts/power_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/power_source.py -------------------------------------------------------------------------------- /scripts/robotic_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/robotic_arm.py -------------------------------------------------------------------------------- /scripts/sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/sensors.py -------------------------------------------------------------------------------- /scripts/wave_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/scripts/wave_generator.py -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Appshell/Appshell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/Appshell/Appshell.js -------------------------------------------------------------------------------- /src/components/Appshell/Appshell.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/Appshell/Appshell.styles.js -------------------------------------------------------------------------------- /src/components/Appshell/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/Appshell/index.js -------------------------------------------------------------------------------- /src/components/CustomCircularInput/CustomCircularInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomCircularInput/CustomCircularInput.js -------------------------------------------------------------------------------- /src/components/CustomCircularInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomCircularInput/index.js -------------------------------------------------------------------------------- /src/components/CustomDialog/CustomDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomDialog/CustomDialog.js -------------------------------------------------------------------------------- /src/components/CustomDialog/CustomDialog.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomDialog/CustomDialog.stories.js -------------------------------------------------------------------------------- /src/components/CustomDialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomDialog/index.js -------------------------------------------------------------------------------- /src/components/CustomIcons/CapacitorIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomIcons/CapacitorIcon.js -------------------------------------------------------------------------------- /src/components/CustomIcons/ResistorIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomIcons/ResistorIcon.js -------------------------------------------------------------------------------- /src/components/CustomKnob/CustomKnob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomKnob/CustomKnob.js -------------------------------------------------------------------------------- /src/components/CustomKnob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomKnob/index.js -------------------------------------------------------------------------------- /src/components/CustomKnob/skins/s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomKnob/skins/s3.js -------------------------------------------------------------------------------- /src/components/CustomSliderInput/CustomSliderInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomSliderInput/CustomSliderInput.js -------------------------------------------------------------------------------- /src/components/CustomSliderInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/CustomSliderInput/index.js -------------------------------------------------------------------------------- /src/components/Decorators/Decorators.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/Decorators/Decorators.styles.js -------------------------------------------------------------------------------- /src/components/Display/Display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/Display/Display.js -------------------------------------------------------------------------------- /src/components/Display/Display.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/Display/Display.styles.js -------------------------------------------------------------------------------- /src/components/Display/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/Display/index.js -------------------------------------------------------------------------------- /src/components/GraphPanelLayout/GraphPanelLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/GraphPanelLayout/GraphPanelLayout.js -------------------------------------------------------------------------------- /src/components/GraphPanelLayout/GraphPanelLayout.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/GraphPanelLayout/GraphPanelLayout.styles.js -------------------------------------------------------------------------------- /src/components/GraphPanelLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/GraphPanelLayout/index.js -------------------------------------------------------------------------------- /src/components/HomeLayout/HomeLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/HomeLayout/HomeLayout.js -------------------------------------------------------------------------------- /src/components/HomeLayout/HomeLayout.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/HomeLayout/HomeLayout.styles.js -------------------------------------------------------------------------------- /src/components/HomeLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/HomeLayout/index.js -------------------------------------------------------------------------------- /src/components/Icons/PSLabIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/Icons/PSLabIcons.js -------------------------------------------------------------------------------- /src/components/SimplePanelLayout/SimplePanelLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/SimplePanelLayout/SimplePanelLayout.js -------------------------------------------------------------------------------- /src/components/SimplePanelLayout/SimplePanelLayout.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/SimplePanelLayout/SimplePanelLayout.styles.js -------------------------------------------------------------------------------- /src/components/SimplePanelLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/components/SimplePanelLayout/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/index.js -------------------------------------------------------------------------------- /src/redux/actionTypes/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/redux/actionTypes/app.js -------------------------------------------------------------------------------- /src/redux/actions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/redux/actions/app.js -------------------------------------------------------------------------------- /src/redux/actions/config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/redux/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/redux/reducers/app.js -------------------------------------------------------------------------------- /src/redux/reducers/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/redux/reducers/config.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/resources/accelerometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/accelerometer.svg -------------------------------------------------------------------------------- /src/resources/accelerometer_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/accelerometer_red.svg -------------------------------------------------------------------------------- /src/resources/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/app_icon.png -------------------------------------------------------------------------------- /src/resources/back_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/back_layout.png -------------------------------------------------------------------------------- /src/resources/barometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/barometer.svg -------------------------------------------------------------------------------- /src/resources/barometer_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/barometer_red.svg -------------------------------------------------------------------------------- /src/resources/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/compass.svg -------------------------------------------------------------------------------- /src/resources/compass_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/compass_red.svg -------------------------------------------------------------------------------- /src/resources/device_connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/device_connected.svg -------------------------------------------------------------------------------- /src/resources/device_disconnected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/device_disconnected.svg -------------------------------------------------------------------------------- /src/resources/ds_con.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/ds_con.png -------------------------------------------------------------------------------- /src/resources/ds_discon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/ds_discon.png -------------------------------------------------------------------------------- /src/resources/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/fb.png -------------------------------------------------------------------------------- /src/resources/front_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/front_layout.png -------------------------------------------------------------------------------- /src/resources/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/git.png -------------------------------------------------------------------------------- /src/resources/ic_pwm_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/ic_pwm_pic.png -------------------------------------------------------------------------------- /src/resources/ic_sin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/ic_sin.png -------------------------------------------------------------------------------- /src/resources/ic_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/ic_square.png -------------------------------------------------------------------------------- /src/resources/ic_triangular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/ic_triangular.png -------------------------------------------------------------------------------- /src/resources/logic_analyzer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/logic_analyzer.svg -------------------------------------------------------------------------------- /src/resources/logic_analyzer_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/logic_analyzer_red.svg -------------------------------------------------------------------------------- /src/resources/lux_meter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/lux_meter.svg -------------------------------------------------------------------------------- /src/resources/lux_meter_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/lux_meter_red.svg -------------------------------------------------------------------------------- /src/resources/multimeter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/multimeter.svg -------------------------------------------------------------------------------- /src/resources/multimeter_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/multimeter_red.svg -------------------------------------------------------------------------------- /src/resources/oscilloscope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/oscilloscope.svg -------------------------------------------------------------------------------- /src/resources/oscilloscope_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/oscilloscope_red.svg -------------------------------------------------------------------------------- /src/resources/power_source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/power_source.svg -------------------------------------------------------------------------------- /src/resources/power_source_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/power_source_red.svg -------------------------------------------------------------------------------- /src/resources/sensors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/sensors.svg -------------------------------------------------------------------------------- /src/resources/sensors_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/sensors_red.svg -------------------------------------------------------------------------------- /src/resources/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/t.png -------------------------------------------------------------------------------- /src/resources/wave_generator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/wave_generator.svg -------------------------------------------------------------------------------- /src/resources/wave_generator_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/wave_generator_red.svg -------------------------------------------------------------------------------- /src/resources/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/resources/yt.png -------------------------------------------------------------------------------- /src/screen/AboutUs/AboutUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/AboutUs/AboutUs.js -------------------------------------------------------------------------------- /src/screen/AboutUs/AboutUs.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/AboutUs/AboutUs.styles.js -------------------------------------------------------------------------------- /src/screen/AboutUs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/AboutUs/index.js -------------------------------------------------------------------------------- /src/screen/DeviceScreen/DeviceScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/DeviceScreen/DeviceScreen.js -------------------------------------------------------------------------------- /src/screen/DeviceScreen/DeviceScreen.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/DeviceScreen/DeviceScreen.styles.js -------------------------------------------------------------------------------- /src/screen/DeviceScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/DeviceScreen/index.js -------------------------------------------------------------------------------- /src/screen/FAQ/FAQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/FAQ/FAQ.js -------------------------------------------------------------------------------- /src/screen/FAQ/FAQ.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/FAQ/FAQ.styles.js -------------------------------------------------------------------------------- /src/screen/FAQ/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/FAQ/index.js -------------------------------------------------------------------------------- /src/screen/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Home/Home.js -------------------------------------------------------------------------------- /src/screen/Home/components/InstrumentCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Home/components/InstrumentCard.js -------------------------------------------------------------------------------- /src/screen/Home/components/InstrumentCard.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Home/components/InstrumentCard.styles.js -------------------------------------------------------------------------------- /src/screen/Home/components/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Home/components/Tabs.js -------------------------------------------------------------------------------- /src/screen/Home/components/Tabs.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Home/components/Tabs.styles.js -------------------------------------------------------------------------------- /src/screen/Home/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Home/components/Title.js -------------------------------------------------------------------------------- /src/screen/Home/components/Title.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Home/components/Title.styles.js -------------------------------------------------------------------------------- /src/screen/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Home/index.js -------------------------------------------------------------------------------- /src/screen/Layout/BackLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Layout/BackLayout.js -------------------------------------------------------------------------------- /src/screen/Layout/FrontLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Layout/FrontLayout.js -------------------------------------------------------------------------------- /src/screen/Layout/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Layout/styles.js -------------------------------------------------------------------------------- /src/screen/LoggedData/LoggedData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LoggedData/LoggedData.js -------------------------------------------------------------------------------- /src/screen/LoggedData/LoggedData.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LoggedData/LoggedData.styles.js -------------------------------------------------------------------------------- /src/screen/LoggedData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LoggedData/index.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/LogicAnalyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/LogicAnalyzer.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/ActionButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/ActionButtons.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/ActionButtons.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/ActionButtons.styles.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/AnalysisParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/AnalysisParameters.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/ChannelParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/ChannelParameters.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/Graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/Graph.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/NumberParameter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/NumberParameter.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/Settings.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/Settings.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/Settings.styles.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/TimeParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/TimeParameters.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/components/settingOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/components/settingOptions.js -------------------------------------------------------------------------------- /src/screen/LogicAnalyzer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/LogicAnalyzer/index.js -------------------------------------------------------------------------------- /src/screen/Multimeter/Multimeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Multimeter/Multimeter.js -------------------------------------------------------------------------------- /src/screen/Multimeter/components/Dial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Multimeter/components/Dial.js -------------------------------------------------------------------------------- /src/screen/Multimeter/components/Dial.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Multimeter/components/Dial.styles.js -------------------------------------------------------------------------------- /src/screen/Multimeter/components/InstrumentCluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Multimeter/components/InstrumentCluster.js -------------------------------------------------------------------------------- /src/screen/Multimeter/components/InstrumentCluster.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Multimeter/components/InstrumentCluster.styles.js -------------------------------------------------------------------------------- /src/screen/Multimeter/components/MeasurementDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Multimeter/components/MeasurementDisplay.js -------------------------------------------------------------------------------- /src/screen/Multimeter/components/SettingOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Multimeter/components/SettingOptions.js -------------------------------------------------------------------------------- /src/screen/Multimeter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Multimeter/index.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/Oscilloscope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/Oscilloscope.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/ActionButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/ActionButtons.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/ActionButtons.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/ActionButtons.styles.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/AnalysisParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/AnalysisParameters.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/ChannelParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/ChannelParameters.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/FFTGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/FFTGraph.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/FitPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/FitPanel.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/FitPanel.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/FitPanel.styles.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/Graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/Graph.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/PlotParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/PlotParameters.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/Settings.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/Settings.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/Settings.styles.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/TimeParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/TimeParameters.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/XYPlotGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/XYPlotGraph.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/components/settingOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/components/settingOptions.js -------------------------------------------------------------------------------- /src/screen/Oscilloscope/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Oscilloscope/index.js -------------------------------------------------------------------------------- /src/screen/PowerSource/PowerSource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/PowerSource/PowerSource.js -------------------------------------------------------------------------------- /src/screen/PowerSource/components/InstrumentCluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/PowerSource/components/InstrumentCluster.js -------------------------------------------------------------------------------- /src/screen/PowerSource/components/InstrumentCluster.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/PowerSource/components/InstrumentCluster.styles.js -------------------------------------------------------------------------------- /src/screen/PowerSource/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/PowerSource/index.js -------------------------------------------------------------------------------- /src/screen/RobotArm/Components/KnobControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/RobotArm/Components/KnobControl.js -------------------------------------------------------------------------------- /src/screen/RobotArm/Components/PaintArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/RobotArm/Components/PaintArea.js -------------------------------------------------------------------------------- /src/screen/RobotArm/Components/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/RobotArm/Components/styles.js -------------------------------------------------------------------------------- /src/screen/RobotArm/RobotArm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/RobotArm/RobotArm.js -------------------------------------------------------------------------------- /src/screen/RobotArm/RobotArm.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/RobotArm/RobotArm.styles.js -------------------------------------------------------------------------------- /src/screen/RobotArm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/RobotArm/index.js -------------------------------------------------------------------------------- /src/screen/Sensors/Sensors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Sensors/Sensors.js -------------------------------------------------------------------------------- /src/screen/Sensors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Sensors/index.js -------------------------------------------------------------------------------- /src/screen/Sensors/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Sensors/styles.js -------------------------------------------------------------------------------- /src/screen/Settings/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Settings/Settings.js -------------------------------------------------------------------------------- /src/screen/Settings/Settings.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Settings/Settings.styles.js -------------------------------------------------------------------------------- /src/screen/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/Settings/index.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/WaveGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/WaveGenerator.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/components/AnalogController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/components/AnalogController.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/components/DigitalController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/components/DigitalController.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/components/InstrumentCluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/components/InstrumentCluster.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/components/Settings.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/components/Settings.styles.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/components/SineWaveParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/components/SineWaveParameters.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/components/SquareWaveParameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/components/SquareWaveParameters.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/components/settingOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/components/settingOptions.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/index.js -------------------------------------------------------------------------------- /src/screen/WaveGenerator/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/screen/WaveGenerator/styles.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/theme.js -------------------------------------------------------------------------------- /src/utils/arithmetics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/utils/arithmetics.js -------------------------------------------------------------------------------- /src/utils/fileNameProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/utils/fileNameProcessor.js -------------------------------------------------------------------------------- /src/utils/formStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/src/utils/formStyles.js -------------------------------------------------------------------------------- /utils/preProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/pslab-desktop/HEAD/utils/preProcessor.js --------------------------------------------------------------------------------