Date: 2021
Deloitte Digital: Future of 5G, was a project meant to explore real world applications of the emerging 5G technologies.
Throughout the project, I researched current application's use of cellular networks and where they were lacking, as well helped develop a prototype application for the Microsoft Hololens 2 that could demonstrate how 5G could be used in real world scenarios
Roles
Designer
Brainstormed 5G use cases, and created diagrams demonstrating these ideas to the client.
Helped design layout and structure of AR menu and widgets.
Tech
Created menus and widgets in Unreal Engine 4 for Microsoft Hololens 2, and organized it in a scalable system.
Created visualizers for data collected in real time.
Used UE4 blueprints.
Made With
Unreal Engine 4
Adobe Photoshop
Adobe Illustrator
Microsoft Hololens 2
One of the tasks I was responsible for was creating an interactive ECG display that could take data from a real world monitor and display it onto the Hololens 2 display.
Early on, I wasn't sure if we would be using live values from an actual ECG, or if we would be faking it for presentation purposes, so I made a system that could function with live values, and if we needed to fake it, I made timelines that followed regular heart rhythms.
Here's the blueprint, it runs on a timer every 0.01 seconds (The Draw Rate), and draws the ECG onto a render target, by incrementally drawing a line based off of the current value it is given, and the previous value it had.
It does this by first clearing any line that was there previously by drawing a black line that stretches the entire Y value of the render target at the X location that is about to be drawn to, it then draws the line at that location.
You can set the time period it shows with the time period variable, I set it to 1 second as default, and when it detects that the current time value is at or above the time period specified, it loops back around.