Siemens Energy | 2023-2024
Built an AI-powered voice assistant controlling 6 synchronized displays across 2 networked PCs for high-stakes client demonstrations at Siemens Energy factory showroom.
Impact: Zero demo failures across 6 months of weekly client presentations, supporting 3 languages with 95% voice recognition accuracy.
Siemens Energy needed to transform their factory tour experience to impress global clients and demonstrate digital capabilities during high-value sales presentations.
Architected a voice-controlled showroom system with master-slave architecture, dual communication channels, and physical backup controls.
Problem: Coordinating 6 displays across 2 PCs without state conflicts or synchronization bugs.
Solution: Centralized all decision-making in master PC, slave PC only renders content.
Problem: Photon Network alone creates single point of failure for critical demos.
Solution: Implemented redundant communication via Photon (real-time) + REST API (polling backup).
Result: 95% auto-reconnect success rate. Average reconnect time: 3 seconds.
Problem: Support German, English, and Hindi without 9 translation pairs.
Solution: Route all processing through English as the intermediate "Universal Language".
Result: 95% accuracy and zero language-related failures.
public enum DisplayState { IDLE, ON, DISPLAY }
public class DisplayController {
private DisplayState _currentState = DisplayState.IDLE;
public void ProcessCommand(string command) {
switch (command) {
case "SHOW_CONTENT":
_currentState = DisplayState.DISPLAY;
ShowSpecificContent(contentId);
break;
// Deterministic transitions prevent conflicts
}
}
}
private async void PollServerState() {
while (true) {
try {
var state = await RestAPI.GetMasterState();
ApplyState(state);
await Task.Delay(1000); // 1s Polling
} catch { await AttemptAutoReconnect(); }
}
}
| Metric | Result |
|---|---|
| Reliability | Zero demo failures (6 months) |
| Accuracy | 95% Voice Recognition (Azure) |
| Training | <1 hour for non-technical staff |
| Setup Time | 100% reduction (Manual vs Voice) |
Successfully deployed for 6 months. Currently offline due to hardware fatigue—a key learning in budgeting for enterprise-grade hardware for mission-critical, high-load operations.
Due to NDA, live screen-share demos of EVA are available upon request during interview calls.
Schedule 15-Min Call →