Files
iten.pro/src/pages/index-test.astro
Eduard Iten 402ab0fbbb
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 9s
Testseite hinzugefügt
2026-04-01 08:19:09 +02:00

85 lines
3.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
import MainLayout from "../layouts/MainLayout.astro";
import Section from "../components/Section.astro";
import PatternCode from "../components/PatternCode.astro";
import PatternPCB from "../components/PatternPCB.astro";
import PatternSystem from "../components/PatternSystem.astro";
import { ACTION_QUERY_PARAMS } from "astro:actions";
---
<MainLayout title="Engineering | iten.pro">
<Section
title="Hardware"
subtitle="Low-Power Systeme, Embedded SoC & PCB-Design"
themeColor="bg-lime-700"
highlightColor="text-lime-200"
>
<div slot="background" class="w-full h-full">
<PatternPCB fillColor="text-lime-800" />
</div>
<div class="prose prose-slate max-w-none">
<p class="text-xl">
Die physische Basis: Zuverlässige Hardware-Architekturen für intelligente und vernetzte Systeme.
</p>
<ul class="list-disc">
<li>Design von Low-Power-<strong>Embedded-Systemen</strong> basierend auf <strong>ARM Cortex-M</strong> und <strong>RISC-V</strong> Architekturen.</li>
<li><strong>PCB-Design</strong> (KiCad) mit Fokus auf kompakte IoT-Lösungen und EMV-gerechtes Layout.</li>
<li>Rapid <strong>Prototyping</strong> und Evaluierung mit gängigen SoCs (STM32, RP2040, ESP32, Nordic nRF52).</li>
<li><strong>Power Management</strong> & Ladeelektronik, inklusive Schutzbeschaltungen für Li-Ion-Akkusysteme.</li>
</ul>
</div>
</Section>
<Section
title="Software"
subtitle="Embedded Software & RTOS"
themeColor="bg-indigo-800"
highlightColor="text-indigo-200"
>
<div slot="background" class="w-full h-full">
<PatternCode fillColor="text-indigo-700" />
</div>
<div class="prose prose-slate max-w-none">
<p class="text-xl">
Hardwarenahe Softwareentwicklung. Von der Bare-Metal-Firmware bis zur RTOS-Integration optimiert auf Performance und minimalen Energieverbrauch.
</p>
<ul class="list-disc">
<li><strong>Firmware-Entwicklung</strong> in C/C++ für ressourcenbeschränkte Mikrocontroller.</li>
<li>Einsatz von <strong>Echtzeitbetriebssystemen (RTOS)</strong>, spezialisiert auf das Zephyr Project.</li>
<li>Anbindung von Sensorik und Aktorik über gängige <strong>Kommunikationsbusse</strong> (SPI, I2C, UART, CAN, Ethernet).</li>
<li>Systematisches <strong>Debugging</strong> und Profiling zur Engpassanalyse in Embedded-Systemen.</li>
<li>Implementierung <strong>poweroptimierter Software-Architekturen</strong> für batteriebetriebene Endgeräte.</li>
<li><strong>Drahtlose Kommunikation & IoT-Stacks:</strong> BLE, LoRaWAN, OpenThread, Zigbee, WiFi sowie IP-basierte Protokolle (MQTT, WebSockets).</li>
</ul>
</div>
</Section>
<Section
title="Systems"
subtitle="End-to-End Solutions"
themeColor="bg-fuchsia-800"
highlightColor="text-fuchsia-200"
id="systems"
>
<div slot="background" class="w-full h-full">
<PatternSystem fillColor="text-fuchsia-600" />
</div>
<div class="prose prose-slate max-w-none">
<p class="text-xl">
Integration von Hardware und Software zu skalierbaren Gesamtsystemen. Vom Sensor über das Edge-Gateway bis zur Visualisierung.
</p>
<ul>
<li>
<strong>System-Architektur:</strong> Konzeption modularer, sicherer und wartbarer End-to-End Lösungen.
</li>
<li>
<strong>Connectivity & Routing:</strong> Zuverlässige Datenübertragung über LoRaWAN, IEEE 802.15.4, Feldbusse und MQTT-Broker.
</li>
<li>
<strong>User Interfaces & Visualisierung:</strong> Entwicklung responsiver Dashboards und Web-UIs mit modernen Frameworks (Astro, Svelte).
</li>
</ul>
</div>
</Section>
</MainLayout>