Skip to content
View ParameswaranAP's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report ParameswaranAP

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

Hi , I'm Paramesh

A passionate Embedded Software developer and Firmware Engineer

  • 🔭 I’m currently working on Security Locks and Readers
  • 🌱 I’m currently learning FreeRTOS, C++ and Driver development
  • 👯 I’m looking to collaborate on Low Level Driver development
  • 📫 How to reach me [email protected]
  • ⚡ Fun fact When I was young, I wanted to be a Scientist

Connect with me:

https://www.linkedin.com/in/parameswaran-ap-823358192

Languages and Tools:

arduino c cplusplus git linux python python

Let's Collaborate and Code Together! :)

Pinned Loading

  1. pcd2las pcd2las Public

    Forked from vtppplusgo/pcd2las

    Convert .las or .pcd point cloud to .pcd or .las extension

    C++

  2. CH376MSC_ESPIDF CH376MSC_ESPIDF Public

    ESP-IDF C Library

    CMake

  3. Setting EPOCH time and reading curre... Setting EPOCH time and reading current time using ESP32-IDF (POSIX API)
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
    #include <time.h>
    4
    #include <sys/time.h>
    5
    #include "esp_system.h"
  4. Passing address of one structure var... Passing address of one structure variable to another without using malloc in c
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
    typedef struct dt{
    4
        int error;
    5
        int val;
  5. C predefined Macros and C macro func... C predefined Macros and C macro functions
    1
    #include <stdio.h>
    2
    #define min(a,b) ((a<b)?("less\n"):("greater\n"))
    3
    int main() {
    4
        printf(min(3,1));
    5
        printf("File :%s\n", __FILE__ );    
  6. Making structure as pointer and allo... Making structure as pointer and allocating memory to read and write values in c
    1
    #include <stdio.h>
    2
    #include <stdlib.h>
    3
    typedef struct dt{
    4
        int error;
    5
        int val;