Skip to content

Commit

Permalink
README.md updated, title for left over instruments upated (fossasia#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pipe-Runner authored and mariobehling committed Sep 1, 2019
1 parent a0c4aef commit 9aa1417
Show file tree
Hide file tree
Showing 13 changed files with 32 additions and 6 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,16 @@ Please join us on the following channels:
<img src="./docs/images/device_screen.jpg" /> </br>
A device information screen that shows device information and guide to connect it to the app.
</td>
<td>
<img src="./docs/images/faq.jpg" /> </br>
A new FAQ screen that covers all generic as well as app specific questions that a user may have.
</td>
</tr>
<tr>
<td>
<img src="./docs/images/about_us.jpg" /> </br>
A page that has all the important links that can be used to reach out to us, or contribute to the project.
</td>
</tr>
</table>

Expand Down
Binary file added docs/images/2019_09_01_20_59_07.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/about_us.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/device_screen.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/faq.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/logic_analyzer.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/multimeter.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/oscilloscope.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/power_source.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/robot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/settings.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/wave_generator.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 22 additions & 6 deletions src/components/Appshell/Appshell.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,20 @@ const Appshell = ({
return 'Logic Analyzer';
case '/loggeddata':
return 'Data Logger';
case '/sensors':
return 'Sensors';
case '/aboutus':
return 'About Us';
case '/faq':
return 'FAQ';
case '/settings':
return 'Settings';
case '/devicescreen':
return 'Device Status';
case '/frontlayout':
return 'Front Pin Layout';
case 'backlayout':
return 'Back Pin Layout';
default:
return undefined;
}
Expand Down Expand Up @@ -365,12 +379,14 @@ const Appshell = ({
<ListItemText primary={'Connected Device'} />
</ListItem>
</Link>
<ListItem button>
<ListItemIcon>
<SettingIcon />
</ListItemIcon>
<ListItemText primary={'Settings'} />
</ListItem>
<Link to="/settings">
<ListItem button>
<ListItemIcon>
<SettingIcon />
</ListItemIcon>
<ListItemText primary={'Settings'} />
</ListItem>
</Link>
</List>
<Divider />
<Link to="/aboutus">
Expand Down

0 comments on commit 9aa1417

Please sign in to comment.