forked from manuelernestog/astrofy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
agregando artículo sobre robótica en almacenes
- Loading branch information
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
import BaseLayout from "../layouts/BaseLayout.astro"; | ||
import HorizontalCard from "../components/HorizontalCard.astro"; | ||
--- | ||
|
||
<BaseLayout title = "Projects"> | ||
<div> | ||
<div class="text-3xl w-full font-bold mb-5">PCB Designs</div> | ||
</div> | ||
|
||
<HorizontalCard | ||
title="LEDs Controller" | ||
img="/proj_imag/led-controller2.webp" | ||
desc="This is another PCB design exercise I did. It's a LEDs controller with the following features: - Allows the regulation of LED brightness. - Allows the choice of color if it's an RGB LED. -Allows a supply voltage of 100-240V AC. - It has 12V DC / 5A and 24V DC / 2.5A outputs. - It has WiFi and Bluetooth communication by ESP32 Microcontroller. - And more." | ||
url="https://github.com/MbFredys/PCB-LEDs-Controller.git" | ||
badge="GitHub" | ||
/> | ||
|
||
<div class="divider my-0"></div> | ||
|
||
<HorizontalCard | ||
title="Temperature Controller" | ||
img="/proj_imag/temperatura.webp" | ||
desc="This is a PCB design exercise I did for a temperature controller with the following features: - Shows the current temperature value. - Shows the desired temperature value. - It has two buttons to raise and lower the temperature. - Allows a supply voltage of 100-240V AC. - It has Bluetooth communication. - Allows entry of thermocouple and PT100 type sensors." | ||
url="https://github.com/MbFredys/PCB-Temperature-Controller.git" | ||
badge="GitHub" | ||
/> | ||
|
||
<div class="divider my-0"></div> | ||
|
||
<HorizontalCard | ||
title="Dev Board - like Arduino UNO" | ||
img="/proj_imag/In_Board_Gnia.png" | ||
desc="PCB design with the characteristics and measurements of an Arduino UNO but, in addition, with: - Bluetooth module. - Motor driver. - Some push buttons, to control the motors and Bluetooth. - Several LEDs." | ||
url="https://github.com/MbFredys/PCB-designs-for-PLATZI-course/tree/b72668259c0e84ccef3f1cc8bf269fc7f5d1b549/DEV%20Board" | ||
badge="GitHub" | ||
/> | ||
|
||
<div class="divider my-0"></div> | ||
|
||
<HorizontalCard | ||
title="Small Power Supply" | ||
img="/proj_imag/Fuente_Alimentación1.png" | ||
desc="This device receives 5V DC via USB and delivers 3.3V and 12V DC through connectors." | ||
url="https://github.com/MbFredys/PCB-designs-for-PLATZI-course/tree/b72668259c0e84ccef3f1cc8bf269fc7f5d1b549/Small%20Power%20Supply" | ||
badge="GitHub" | ||
/> | ||
|
||
|