MakerGram Logo

    MakerGram

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. Tags
    3. arduino
    Log in to post
    • All categories
    • Geethesh

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

      3
      0
      Votes
      3
      Posts
      386
      Views

      Geethesh

      @kowshik1729 ok

    • Abhay

      how did sudo command solved can't open device "/dev/ttyUSB0": Permission denied?
      General Discussion • arduino linux nodemcu • • Abhay

      7
      0
      Votes
      7
      Posts
      2082
      Views

      Abhay

      @arunksoman thanks,
      I will look more into it. Thanks again

    • 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
      1598
      Views

      Geethesh

      @kowshik1729 thank you

    • Geethesh

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

      2
      0
      Votes
      2
      Posts
      406
      Views

      salmanfaris

      Hi @Geethesh, Did you find any solution?

    • salmanfaris

      Arduino Pro IDE (alpha preview) with advanced features
      Arduino • arduino ide • • salmanfaris

      8
      0
      Votes
      8
      Posts
      920
      Views

      salmanfaris

      Yeahhh 😀

      35469f1e-a9ff-4720-b576-63548ae77ab9-image.png

    • V

      Read battery percentage using Arduino
      General Discussion • arduino bluetooth • • vijayvarghese

      3
      1
      Votes
      3
      Posts
      806
      Views

      V

      @kowshik1729 Thank you ..

    • 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