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

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only 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, }

/* 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::MSCPE,
        contact: Contact { 
                    email: String::from("jminjares4@miners.utep.edu"), 
                    linkedin: String::from("https://www.linkedin.com/in/jesusminjares"),
                    github: String::from("https://github.com/jminjares4"), 
                },
    };
    /* Print data */
    println!("Info: {:?}", jminjares4);
}

Jesus Minjares 💻⚡

Weclome to my GitHub Page! I am an embedded software engineer @ Sandia National Labs using my hardware and software skills to develop embedded systems .

Recent Projects

Microcontrollers

Texas Instruments Texas Instruments Texas Instruments ESP32 ESP8266 Rasppery Pi 2040 STMicroelectronics

Coding Languages

C C++ Python Verilog Rust Java

Electronic Design Automation

KiCad EasyEDA EagleCAD

Top Languages

Top Langs

GitHub Stats

Jminjares4's github stats

Contact

Outlook LinkedIn GitHub Linktree Resume Badge

Pinned

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

    This repository will contain various examples of TI MSP432 Microcontroller.

    C 34 8

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

    KiCad ESP32 implementation

    10 1

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

    Microprocessor 2 Lab Template

    C 10 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 3 1

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

    Custom ESP32 sensor data logger

    C 9 1