Skip to content
View sdrshnptl's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report sdrshnptl

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

Sudarshan patil

sdrshnptl

Embedded developer, toying with 3D printer and lot!!! insta
Visitor Count

Pinned

  1. AutoM AutoM Public

    ESP8266 single channel relay board with OTA firmware

    C 1

  2. ARDUINO: MAP FLOAT FUNCTION ARDUINO: MAP FLOAT FUNCTION
    1
    double mapf(double val, double in_min, double in_max, double out_min, double out_max) {
    2
        return (val - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
    3
    }