Skip to content
View jminjares4's full-sized avatar
💭
Debugging ⚡️
💭
Debugging ⚡️

Block or report jminjares4

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jminjares4/README.md
/* jminjares4 GitHub Page */

/* Degree enumeration */
#[derive(Debug)]
enum Degree { ASEE, BSEE, MSCPE, MSAI,}

/* Contact data structure */
#[derive(Debug)]
struct Contact {
    email: String,
    linkedin: String,
    github: String,
}

/* Info data structure */
#[derive(Debug)]
struct Info {
    name: String,
    degree: Degree,
    contact: Contact
}

fn main () {
    /* Store data */
    let jminjares4 = Info {
        name: String::from("Jesus Minjares"),
        degree: Degree::MSAI,
        contact: Contact { 
                    email: String::from("jesusminjaresjr@gmail.com"), 
                    linkedin: String::from("https://www.linkedin.com/in/jesusminjares"),
                    github: String::from("https://github.com/jminjares4"), 
                },
    };
    /* Print data */
    println!("Info: {:?}", jminjares4);
}

Jesus Minjares 💻⚡

Welcome to my GitHub page. I am an embedded software engineer @ Sandia National Laboratories, using my hardware and software skills to develop embedded systems.

Currently pursuing an M.S. in Artificial Intelligence at UT Austin, working toward the intersection of embedded systems and machine learning.

Featured Projects

Microcontrollers

MSP432 MSP430 TM4C ESP32 ESP8266 RP2040 STM32F4

Coding Languages

C C++ Python Verilog Rust Java

Hardware & Tools

KiCad EasyEDA EagleCAD Git Linux

Top Languages

Top Langs

GitHub Stats

Jminjares4's github stats

Contact

Gmail LinkedIn GitHub Resume Portfolio

Pinned Loading

  1. MSP432-Example-Codes MSP432-Example-Codes Public

    This repository will contain various examples of TI MSP432 Microcontroller.

    C 49 10

  2. ESP32-Development-Board ESP32-Development-Board Public

    KiCad ESP32 implementation

    21 6

  3. Microprocessor-2-Lab-Template Microprocessor-2-Lab-Template Public

    Microprocessor 2 Lab Template

    C 11 3

  4. IPIA_FREERTOS IPIA_FREERTOS Public

    Senior Project Developed in FreeRTOS using MSP432P401R

    C 1 1

  5. ESP32-LCD-1602-Driver ESP32-LCD-1602-Driver Public

    ESP32 LCD device driver using esp-idf

    C 11 2

  6. ESP32-Sensor-Data-Logger ESP32-Sensor-Data-Logger Public

    Custom ESP32 sensor data logger

    C 11 1