mirror of
https://github.com/Akkudoktor-EOS/EOS.git
synced 2025-11-25 06:46:25 +00:00
25 lines
806 B
Python
25 lines
806 B
Python
|
|
from typing import Any
|
||
|
|
|
||
|
|
from fasthtml.common import Div
|
||
|
|
|
||
|
|
from akkudoktoreos.server.dash.markdown import Markdown
|
||
|
|
|
||
|
|
hello_md = """
|
||
|
|
|
||
|
|
# Akkudoktor EOSdash
|
||
|
|
|
||
|
|
The dashboard for Akkudoktor EOS.
|
||
|
|
|
||
|
|
EOS provides a comprehensive solution for simulating and optimizing an energy system based
|
||
|
|
on renewable energy sources. With a focus on photovoltaic (PV) systems, battery storage (batteries),
|
||
|
|
load management (consumer requirements), heat pumps, electric vehicles, and consideration of
|
||
|
|
electricity price data, this system enables forecasting and optimization of energy flow and costs
|
||
|
|
over a specified period.
|
||
|
|
|
||
|
|
Documentation can be found at [Akkudoktor-EOS](https://akkudoktor-eos.readthedocs.io/en/latest/).
|
||
|
|
"""
|
||
|
|
|
||
|
|
|
||
|
|
def Hello(**kwargs: Any) -> Div:
|
||
|
|
return Markdown(hello_md, **kwargs)
|