Compare commits

...

2 Commits

Author SHA1 Message Date
0620e8ef26 fix math 2025-05-14 12:14:46 +02:00
24292d2e9b math 2025-05-14 12:13:09 +02:00
2 changed files with 14 additions and 1 deletions

View File

@@ -4,6 +4,6 @@ For system Integration is this my system design.
![alt text](Screenshot_20250512_095023.jpg) ![alt text](Screenshot_20250512_095023.jpg)
So I will have 2 power systems in my drone. High voltage and low voltage. High voltage 16,8V will be for the motors while the 5v will be for the MCU's and the LED matrixes. So I will have 2 power systems in my drone. High voltage and low voltage. High voltage 16,8V will be for the motors while the 5v will be for the MCU's and the LED matrixes.
I found out from the page from the ESC's that they output 5v at 3 amps each. Which is in total $$5V \cdot 3A \cdot 4ESC = 60Watts$$ I found out from the page from the ESC's that they output 5v at 3 amps each. Which is in total $5V \cdot 3A \cdot 4ESC = 60Watts$
In one of my projects earlier I have ran 2 LED matrixes from a 60 watt power supply and it could easily power them. The mcu's don't consume a lot of power so the power situation should be good. In one of my projects earlier I have ran 2 LED matrixes from a 60 watt power supply and it could easily power them. The mcu's don't consume a lot of power so the power situation should be good.

13
docs/javascripts/katex.js Normal file
View File

@@ -0,0 +1,13 @@
document$.subscribe(({ body }) => {
renderMathInElement(body, {
delimiters: [
{ left: "$$", right: "$$", display: true },
{ left: "$", right: "$", display: false },
{ left: "\\(", right: "\\)", display: false },
{ left: "\\[", right: "\\]", display: true }
],
})
})