Skip to content

Commit

Permalink
agregando artículo sobre robótica en almacenes
Browse files Browse the repository at this point in the history
  • Loading branch information
MbFredys committed Dec 26, 2023
1 parent 14f84aa commit 4c51110
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SideBar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { Image } from "@astrojs/image/components";
<!-- Sidebar content here -->
<li><a id="home" href="/">Home</a></li>
<li><a id="projects" href="/projects">Projects</a></li>
<li><a id="blog" href="/blog/">Blog</a></li>
<li><a id="blog" href="/blog">Blog</a></li>
<li><a id="cv" href="/cv">CV</a></li>
<li><a href="mailto:mb.freddys@gmail.com" target="_blank" referrerpolicy="no-referrer-when-downgrade">Contact</a></li>
</ul>
Expand Down
49 changes: 49 additions & 0 deletions src/pages/blog.astro
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"
/>


0 comments on commit 4c51110

Please sign in to comment.