MakerGram Logo

    MakerGram

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. Geethesh
    3. Topics
    • Profile
    • Following 4
    • Followers 1
    • Topics 8
    • Posts 24
    • Best 2
    • Controversial 0
    • Groups 2

    Topics created by Geethesh

    • Geethesh

      Altium Hierarchy->harness in Schematic
      General Discussion • schematic altium • • Geethesh

      1
      0
      Votes
      1
      Posts
      178
      Views

      No one has replied

    • Geethesh

      Problem with power supply
      General Discussion • arduino project prototyping • • Geethesh

      3
      0
      Votes
      3
      Posts
      386
      Views

      Geethesh

      @kowshik1729 ok

    • Geethesh

      Soil level measurements under water
      General Discussion • project prototyping arduino • • Geethesh

      6
      0
      Votes
      6
      Posts
      684
      Views

      kowshik1729

      @Geethesh I was talking about this sensor.👇
      Sharp GP2Y0A21YK0F

    • Geethesh

      HC 05 With 2-3v lithium cell
      Arduino • bluetooth project arduino • • Geethesh

      9
      0
      Votes
      9
      Posts
      1597
      Views

      Geethesh

      @kowshik1729 thank you

    • Geethesh

      Help needed in MIT App Inventor
      General Discussion • arduino bluetooth application • • Geethesh

      2
      0
      Votes
      2
      Posts
      405
      Views

      salmanfaris

      Hi @Geethesh, Did you find any solution?

    • Geethesh

      Water depth sensor
      Arduino • • Geethesh

      7
      0
      Votes
      7
      Posts
      759
      Views

      Geethesh

      @salmanfaris thanks for the details

    • Geethesh

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

      2
      0
      Votes
      2
      Posts
      351
      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 .

    • Geethesh

      Project help: Arduino Powered Bluetooth Key Finder
      Arduino • bluetooth arduino • • Geethesh

      10
      0
      Votes
      10
      Posts
      1549
      Views

      Geethesh

      @kowshik1729 yes