Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ishann211 authored Dec 12, 2024
0 parents commit e428f7f
Show file tree
Hide file tree
Showing 7 changed files with 182 additions and 0 deletions.
57 changes: 57 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
___
# DELETE THIS INSTRUCTIONS AND ADD AN INTRODUCTION ABOUT YOUR PROJECT
___

# eYY-3yp-project-template

This is a sample repository you can use for your Embedded Systems project. Once you followed these instructions, remove the text and add a brief introduction to here.

### Enable GitHub Pages

You can put the things to be shown in GitHub pages into the _docs/_ folder. Both html and md file formats are supported. You need to go to settings and enable GitHub pages and select _main_ branch and _docs_ folder from the dropdowns, as shown in the below image.

![image](https://user-images.githubusercontent.com/11540782/98789936-028d3600-2429-11eb-84be-aaba665fdc75.png)

### Special Configurations

These projects will be automatically added into [https://projects.ce.pdn.ac.lk](). If you like to show more details about your project on this site, you can fill the parameters in the file, _/docs/index.json_

```
{
"title": "This is the title of the project",
"team": [
{
"name": "Team Member Name 1",
"email": "[email protected]",
"eNumber": "E/yy/xxx"
},
{
"name": "Team Member Name 2",
"email": "[email protected]",
"eNumber": "E/yy/xxx"
},
{
"name": "Team Member Name 3",
"email": "[email protected]",
"eNumber": "E/yy/xxx"
}
],
"supervisors": [
{
"name": "Dr. Supervisor 1",
"email": "[email protected]"
},
{
"name": "Supervisor 2",
"email": "[email protected]"
}
],
"tags": ["Web", "Embedded Systems"]
}
```

Once you filled this _index.json_ file, please verify the syntax is correct. (You can use [this](https://jsonlint.com/) tool).

### Page Theme

A custom theme integrated with this GitHub Page, which is based on [github.com/cepdnaclk/eYY-project-theme](https://github.com/cepdnaclk/eYY-project-theme). If you like to remove this default theme, you can remove the file, _docs/\_config.yml_ and use HTML based website.
1 change: 1 addition & 0 deletions code/put-your-code-here.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

8 changes: 8 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Template specific files
*.sh
_site/
.jekyll-metadata
Gemfile.lock
Gemfile

# Add your own files to be ignored from git in here
73 changes: 73 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
---
layout: home
permalink: index.html

# Please update this with your repository name and project title
repository-name: eYY-3yp-project-template
title: Project Template
---

[comment]: # "This is the standard layout for the project, but you can clean this and use your own template"

# Project Title

---

## Team
- eNumber, Name, [email](mailto:[email protected])
- eNumber, Name, [email](mailto:[email protected])
- eNumber, Name, [email](mailto:[email protected])

<!-- Image (photo/drawing of the final hardware) should be here -->

<!-- This is a sample image, to show how to add images to your page. To learn more options, please refer [this](https://projects.ce.pdn.ac.lk/docs/faq/how-to-add-an-image/) -->

<!-- ![Sample Image](./images/sample.png) -->

#### Table of Contents
1. [Introduction](#introduction)
2. [Solution Architecture](#solution-architecture )
3. [Hardware & Software Designs](#hardware-and-software-designs)
4. [Testing](#testing)
5. [Detailed budget](#detailed-budget)
6. [Conclusion](#conclusion)
7. [Links](#links)

## Introduction

Description of the real world problem and solution, impact


## Solution Architecture

High level diagram + description

## Hardware and Software Designs

Detailed designs with many sub-sections

## Testing

Testing done on hardware and software, detailed + summarized results

## Detailed budget

All items and costs

| Item | Quantity | Unit Cost | Total |
| ------------- |:---------:|:----------:|-------:|
| Sample item | 5 | 10 LKR | 50 LKR |

## Conclusion

What was achieved, future developments, commercialization plans

## Links

- [Project Repository](https://github.com/cepdnaclk/{{ page.repository-name }}){:target="_blank"}
- [Project Page](https://cepdnaclk.github.io/{{ page.repository-name}}){:target="_blank"}
- [Department of Computer Engineering](http://www.ce.pdn.ac.lk/)
- [University of Peradeniya](https://eng.pdn.ac.lk/)

[//]: # (Please refer this to learn more about Markdown syntax)
[//]: # (https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
13 changes: 13 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This theme is based on https://github.com/jekyll/minima
# Please refer above link to know the available configurations

title: ""
remote_theme: cepdnaclk/eYY-project-theme
description: ""
markdown: kramdown

kramdown:
parse_block_html: true
syntax_highlighter_opts:
block:
line_numbers: false
30 changes: 30 additions & 0 deletions docs/data/index.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"team": [
{
"name": "Team Member Name 1",
"email": "[email protected]",
"eNumber": "E/yy/xxx"
},
{
"name": "Team Member Name 2",
"email": "[email protected]",
"eNumber": "E/yy/xxx"
},
{
"name": "Team Member Name 3",
"email": "[email protected]",
"eNumber": "E/yy/xxx"
}
],
"supervisors": [
{
"name": "Dr. Supervisor 1",
"email": "[email protected]"
},
{
"name": "Supervisor 2",
"email": "[email protected]"
}
],
"tags": ["Web", "Embedded Systems"]
}
Binary file added docs/images/sample.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e428f7f

Please sign in to comment.