MakerGram Logo

    MakerGram

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. Popular
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All Time
    • Day
    • Week
    • Month
    • Suhailjr

      Project Xpedit : Device for Hiking and Trekking
      Showcase • • Suhailjr

      2
      2
      Votes
      2
      Posts
      351
      Views

      salmanfaris

      @Suhailjr When you post project details, please try to include a picture and basic technical information will be better for understating.

    • T

      Kuttycoders chapter 2
      Events & Hackathons • bootcamp workshop • • technophile2507

      2
      2
      Votes
      2
      Posts
      346
      Views

      salmanfaris

      Thanks for sharing 😊 .

    • Geethesh

      Help need in Arduino coding : Arduino with HC05
      Arduino • arduino bluetooth • • Geethesh

      2
      0
      Votes
      2
      Posts
      389
      Views

      salmanfaris

      Hi @Geethesh , Since HC05 is Interfaced with Serial (UART), you can check whether it connected or not in the Serial.available() function call.

      if (Serial.available() > 0) { // Checks whether data is comming from the serial port data = Serial.read(); // Reads the data from the serial port } else { // Write what you need if serial is not connected }

      full Implementation .

      #define led 13 void setup() { Serial.begin(9600); pinMode(led, OUTPUT); } void loop() { if (Serial.available() > 0) { // Checks whether data is comming from the serial port data = Serial.read(); // Reads the data from the serial port } else { ledBlink(); } } void ledBlink() { digitalWrite(led, HIGH); delay(100); digitalWrite(led, LOW); delay(100); }

      All the best .

    • saheen_palayi

      Foxlab Maker Meet & 3D Printing Demo
      Events & Hackathons • • saheen_palayi

      2
      1
      Votes
      2
      Posts
      338
      Views

      salmanfaris

      Thanks for sharing ☺ 👍

    • salmanfaris

      CircuitPython 5.0.0 Alpha 4 released!
      News • • salmanfaris

      2
      0
      Votes
      2
      Posts
      389
      Views

      salmanfaris

      CircuitPython 5.0.0 Beta released.
      5.0.0 is the latest major revision of CircuitPython. It features many improvements and enhancements to display io, including grayscale OLED and e-paper displays, extensive additions and improvements to BLE support, support for the STM32F4 and Sony Spresense microcontrollers, and PWM audio support – GitHub.

    • salmanfaris

      KeralaJS September 2019 Meetup
      Events & Hackathons • • salmanfaris

      2
      0
      Votes
      2
      Posts
      97975
      Views

      swalahamani

      Attended #KeralaJS September meetup.

      All the sessions were very informative and added a bunch of new things to the to-learn list!

      The first session by Ganesh (UX Strategist, UX Problem Solver And Lead UI Designer, Tata Consultancy Services, Infopark Kochi) on Visual Approach to presentation design gave lots of good insights and tips on how a presentation should be. It was detailed and mentioned different terminologies and theories in UX and presentation design.

      The second session was by Nithin Chandran (Senior software engineer, KeyValue Systems) on Adopting Typescript. He talked about why TypeScript and how it adds value when Dart or Coffee script-like languages are doing the same thing. The key point was how it is easy to adopt TypeScript for a JavaScript programmer.

      The third session was by Mahin on RxJS with a Live Demo. He demonstrated what is RxJS and what sort of capability it adds by things like Operators.

      The final extempore session by Praseed Pai Kt about why JavaScript is considered as "Glue" language and why it got designed so (dynamic, prototype-based oop, functional constructs ) with the details of history and facts about the context when JS got originally designed by Brendan Eich.

      Thank you KeyValue Systems for such an awesome venue and snacks (;-P). Thank you, Nirmal Vyas and all speakers and attendees for such a beautiful event.

      71950673_2464736317107912_5808358709906112512_o.jpg 71820445_2464736180441259_5846866231335845888_o.jpg 71592972_2464736307107913_9199123012278812672_o.jpg 71170366_2464736193774591_1509696668289728512_o.jpg 71073559_2464736240441253_923724539110621184_o.jpg

    • vishnumaiea

      Hardware Contests and Free Giveaways are Open at Hackster.io
      Events & Hackathons • • vishnumaiea

      2
      2
      Votes
      2
      Posts
      462
      Views

      salmanfaris

      @vishnumaiea Thanks for sharing 😊 👍

    • A

      Understanding the raw output of MPU-6050
      Arduino • • Anudeep

      2
      0
      Votes
      2
      Posts
      15141
      Views

      salmanfaris

      Hi @Anudeep ,

      MP66050 is a Gyroscope + Accelerometer + Temperature Sensor Module ,

      3-Axis Gyroscope

      The 3 Axis Gyroscope is used to detect rotational velocity along the X, Y, Z axes as shown in the below figure.

      alt text
      img src : https://www.electronicwings.com

      The full-scale range of output is +/- 250, +/- 500, +/- 1000, +/- 2000 , and that is the angular velocity represented in units of rotations per minute (RPM), or degrees per second (°/s). The three axes of rotation are either referenced as x, y, and z, or roll, pitch, and yaw.

      3-Axis Accelerometer

      Accelerometers are devices that measure acceleration, which is the rate of change of the velocity of an object, it can be used to detect the angle of tilt or inclination along the X, Y and Z axes as shown in below figure.

      alt text
      img src : https://www.electronicwings.com

      They measure in meters per second squared (m/s2) or in G-forces (g). A single G-force for us here on planet Earth is equivalent to 9.8 m/s2, but this does vary slightly with elevation (and will be a different value on different planets due to variations in gravitational pull)

      datasheet : https://www.invensense.com/wp-content/uploads/2015/02/MPU-6000-Datasheet1.pdf

    • H

      HACK IT : 18 Hour National Hackathon
      Events & Hackathons • • hackitajce

      2
      2
      Votes
      2
      Posts
      329
      Views

      Abhay

      @hackitajce
      Hi,
      Is the hackthon focusing on any special technology or domain?

    • Abhay

      Designing circuits with circuito.io
      PCB Designing • prototyping circuits projects • • Abhay

      2
      1
      Votes
      2
      Posts
      545
      Views

      salmanfaris

      @Abhay Thanks for sharing. Simulation is very helpful.