Skip to content

Commit

Permalink
Add initial intro for accion
Browse files Browse the repository at this point in the history
  • Loading branch information
jzybert committed May 25, 2024
1 parent 56b27be commit 4e3e24e
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
14 changes: 14 additions & 0 deletions shared.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ html, body, #root, #root>div, #content {
margin: 0;
}

p {
line-height: 1.5;
}

.accent-color {
color: var(--color-primary)
}
Expand Down Expand Up @@ -94,3 +98,13 @@ html, body, #root, #root>div, #content {
margin-left: -25px;
background: var(--color-secondary);
}

.project-overview {
display: flex;
flex-direction: row;
justify-content: space-between;
}

.project-overview > .col {
width: 30%;
}
34 changes: 34 additions & 0 deletions work/accion-systems.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,40 @@
<div class="wrapper">
<h1 class="page-header-no-decor">Satellite Propulsion Human-Machine Interface (HMI)</h1>
<h2 class="page-header">Telemetry Display and Command Interface Tool</h2>
<p>
The <b>Satellite Propulsion HMI</b> is an application for executing commands and viewing
telemetry from the satellitle propulsion firmware developed by <a href="http://accion-systems.com/" target="_blank">Accion Systems</a>. It was the first testing tool
developed for their company and replaced a script-based approach to testing before. The application could read data
from UART sent by the firmware, parsed it using Python, and displayed in a web-based view running on a local machine.
</p>
<p>
I worked on this project from January 2018 through June 2018 and continued working on minor improvements as a part-time
contracter for a few months after.
</p>
<div class="project-overview">
<div class="col">
<h4>My role</h4>
<p>
As a <b>software engineering co-op</b>, I designed, tested, and programmed the user interface and hardware integration for the HMI.
</p>
<p>
Additionally, I wrote MSP430 microcontroller code in C to support daisy-chained bootloader functionality.
</p>
</div>
<div class="col">
<h4>Skills & software</h4>
<p>HTML5, CSS3, JavaScript, Python, Flask, UART, C</p>
</div>
<div class="col">
<h4>Team</h4>
<p>
I worked directly with the lead firmware engineer to understand firmware output and iterate on UI vision.
</p>
<p>
I also collaborated with technicians developing the propulsion hardware itself.
</p>
</div>
</div>
</div>
</div>
<div class="footer">
Expand Down

0 comments on commit 4e3e24e

Please sign in to comment.