-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
66 - user manuals for lab equipments (#67)
* Basic implementations * URL updates
- Loading branch information
Showing
7 changed files
with
241 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"MakerSpace Lab": { | ||
"link": "/equipment/user-manuals/makerspace/", | ||
"manuals": [ | ||
{ | ||
"title": "Tenma Oscilloscope", | ||
"description": "300MHz Dual Trace Analog Oscilloscope", | ||
"thumb": "#", | ||
"urls": [ | ||
{ | ||
"title": "User Manual", | ||
"link": "https://drive.google.com/file/d/1JKNHXBG50qj1F-vPREiIU1kXxbLWxEI2/view?usp=drive_link" | ||
}, | ||
{ | ||
"title": "Specifications", | ||
"link": "https://drive.google.com/file/d/1AQqXA7QY8HpiNYhCzNvcbh03F4CQw-LK/view?usp=drive_link" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "Tenma Switch Mode Bench PSU", | ||
"description": "Model: 72-8340A", | ||
"thumb": "#", | ||
"urls": [ | ||
{ | ||
"title": "Instruction Manual", | ||
"link": "https://drive.google.com/file/d/14CYosU7cW6OjB4a8aPQPyk1B8akS0LO9/view?usp=drive_link" | ||
}, | ||
{ | ||
"title": "Technical Specifications", | ||
"link": "https://drive.google.com/file/d/1_hm-3SsrTo942theigiY6NXCzd3oNfVg/view?usp=drive_link" | ||
}, | ||
|
||
{ | ||
"title": "Calibration Report", | ||
"link": "https://drive.google.com/file/d/1sgSTi2DkcCs8B3hinTzdItZ7zdaPZOkM/view?usp=drive_link" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "PRECISION Signal Generator", | ||
"description": "Dual Channel Function/Arbitrary Waveform Generators", | ||
"thumb": "#", | ||
"urls": [ | ||
{ | ||
"title": "User Manual", | ||
"link": "https://drive.google.com/file/d/1EAHecuojuF1Dx8ERHdJFpNt0p-XSyN5K/view?usp=drive_link" | ||
}, | ||
{ | ||
"title": "Data Sheet", | ||
"link": "https://drive.google.com/file/d/1LMritF-CZvWq4qAKnP_Q-pPDK-W14uBF/view?usp=drive_link" | ||
}, | ||
{ | ||
"title": "Programming Manual", | ||
"link": "https://drive.google.com/file/d/1Lsx487LB7YEMNaai4D6P1EiQiX-bw2fb/view?usp=drive_link" | ||
} | ||
|
||
] | ||
} | ||
] | ||
}, | ||
"Electronics Lab": { | ||
"link": "/equipment/user-manuals/electronics-lab", | ||
"manuals": [] | ||
}, | ||
"Networking Lab": { | ||
"link": "/equipment/user-manuals/network-lab", | ||
"manuals": [] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
layout: QA_page | ||
permalink: "/equipment/user-manuals/" | ||
|
||
parent: "Equipment" | ||
title: "User Manuals" | ||
index: 1 | ||
author: "Nuwan Jaliyagoda" | ||
--- | ||
|
||
|
||
<h3>User Manuals</h3> | ||
<div> | ||
<ul> | ||
{%- assign manuals = site.data.user_manuals -%} | ||
{%- for m in manuals -%} | ||
<li> | ||
<a href="{{ m[1]['link'] | relative_url }}">{{ m[0] }}</a> | ||
<ul> | ||
{%- for eq in m[1]['manuals'] -%} | ||
<li class="pb-2"> | ||
<b>{{ eq['title'] }}</b><span class="text-muted ms-2">{{ eq['description'] }}</span> | ||
<div class="px-3"> | ||
{%- for url in eq['urls'] -%} | ||
<a class="ms-3" href="{{ url['link'] | relative_url}}" target="_blank">{{url['title']}}</a> | ||
{%- endfor -%} | ||
</div> | ||
</li> | ||
{%- endfor -%} | ||
</ul> | ||
|
||
</li> | ||
{%- endfor -%} | ||
</ul> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
layout: QA_page | ||
permalink: /equipment/user-manuals/makerspace/ | ||
|
||
grand_parent: "Equipment" | ||
parent: "User Manuals" | ||
title: "MakerSpace Lab" | ||
|
||
author: "Nuwan Jaliyagoda" | ||
--- | ||
|
||
{%- assign manuals = site.data.user_manuals -%} | ||
|
||
<h3>User Manuals - {{ page.title }}</h3> | ||
|
||
<div class="pt-3"> | ||
{%- for m in manuals -%} | ||
{%- if m[0] == page.title -%} | ||
<ul> | ||
{%- for eq in m[1]['manuals'] -%} | ||
<li class="pb-2"> | ||
<b>{{ eq['title'] }}</b><span class="text-muted ms-2">{{ eq['description'] }}</span> | ||
<div class="px-3"> | ||
{%- for url in eq['urls'] -%} | ||
<a class="ms-3" href="{{ url['link'] | relative_url}}" target="_blank">{{url['title']}}</a> | ||
{%- endfor -%} | ||
</div> | ||
</li> | ||
{%- endfor -%} | ||
</ul> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
layout: QA_page | ||
permalink: /equipment/user-manuals/electronics-lab/ | ||
|
||
grand_parent: "Equipment" | ||
parent: "User Manuals" | ||
title: "Electronics Lab" | ||
|
||
author: "Nuwan Jaliyagoda" | ||
--- | ||
|
||
{%- assign manuals = site.data.user_manuals -%} | ||
|
||
<h3>User Manuals - {{ page.title }}</h3> | ||
|
||
<div class="pt-3"> | ||
{%- for m in manuals -%} | ||
{%- if m[0] == page.title -%} | ||
<ul> | ||
{%- for eq in m[1]['manuals'] -%} | ||
<li class="pb-2"> | ||
<b>{{ eq['title'] }}</b><span class="text-muted ms-2">{{ eq['description'] }}</span> | ||
<div class="px-3"> | ||
{%- for url in eq['urls'] -%} | ||
<a class="ms-3" href="{{ url['link'] | relative_url}}" target="_blank">{{url['title']}}</a> | ||
{%- endfor -%} | ||
</div> | ||
</li> | ||
{%- endfor -%} | ||
</ul> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
layout: QA_page | ||
permalink: /equipment/user-manuals/network-lab/ | ||
|
||
grand_parent: "Equipment" | ||
parent: "User Manuals" | ||
title: "Networking Lab" | ||
|
||
author: "Nuwan Jaliyagoda" | ||
--- | ||
|
||
{%- assign manuals = site.data.user_manuals -%} | ||
|
||
<h3>User Manuals - {{ page.title }}</h3> | ||
|
||
<div class="pt-3"> | ||
{%- for m in manuals -%} | ||
{%- if m[0] == page.title -%} | ||
<ul> | ||
{%- for eq in m[1]['manuals'] -%} | ||
<li class="pb-2"> | ||
<b>{{ eq['title'] }}</b><span class="text-muted ms-2">{{ eq['description'] }}</span> | ||
<div class="px-3"> | ||
{%- for url in eq['urls'] -%} | ||
<a class="ms-3" href="{{ url['link'] | relative_url}}" target="_blank">{{url['title']}}</a> | ||
{%- endfor -%} | ||
</div> | ||
</li> | ||
{%- endfor -%} | ||
</ul> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
</div> |