Skip to content
View pxvn's full-sized avatar
👀
👀

Highlights

  • Pro

Block or report pxvn

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.

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
pxvn/README.md

Building Robots & IoT Solutions

IoT Development | Robotics Projects | Embedded Systems | Maker

// profile.ino
#include <Arduino.h>

class Student {
private:
    String name = "Pavan Kalsariya";
    String university = "Parul University";
    String focus = "Computer Engineering";
    
public:
    void setup() {
        Serial.begin(115200);
        Serial.println("Student profile initialized...");
        printCurrentWork();
    }
    
    void printCurrentWork() {
        Serial.println("Currently building:");
        Serial.println("- Underwater navigation robot");
        Serial.println("- Energy management systems");
        Serial.println("- Agricultural monitoring rover");
        Serial.println("- Desktop companion bot (CAKE)");
    }
    
    void loop() {
        Serial.println("Learning, building, growing...");
        delay(1000);
    }
};

Student me;

Pinned Loading

  1. Weather-Station Weather-Station Public

    A Simple weather station to Monitor and visualize temperature and humidity data in real-time.

    C++

  2. SmartThermometer SmartThermometer Public

    ESP32-powered non-contact SMART IR thermometer.

    C++

  3. covid-xray-detect-rpi covid-xray-detect-rpi Public

    This project uses TensorFlow Lite model to analyze chest X-rays for potential signs of COVID-19 on a RaspberryPi 4.

    Jupyter Notebook 1

  4. weather-station-v2.0 weather-station-v2.0 Public

    turn your ESP32 into a mini weather station!

    C++

  5. HOSPITAL-AUTOMATION HOSPITAL-AUTOMATION Public

    This repository contains the documentation for a prototype of an automated sanitation facility designed for bedridden individuals.

    C++