Audrino with Bolt setup

I am trying to get data from arduino to my bolt device but unable to get that. Help me to get data from arduino to bolt

could you show me the code for arduino that you have written.

#include “HX711.h”

// HX711 circuit wiring
const int LOADCELL_DOUT_PIN = 2;
const int LOADCELL_SCK_PIN = 3;

HX711 scale;

void setup() {
Serial.begin(57600);
scale.begin(LOADCELL_DOUT_PIN, LOADCELL_SCK_PIN);
}

void loop() {

if (scale.is_ready()) {
long reading = scale.read();
Serial.print("HX711 reading: ");
Serial.println(reading/1772);
} else {
Serial.println(“HX711 not found.”);
}

delay(1000);

}

hello,
Do you know how to setup thermostats?

  1. Connect Tx pin of Bolt to Rx pin of Arduino
  2. Connect Rx pin of Bolt to Tx pin of Arduino
  3. Connect Gnd(ground) pin of Bolt to Gnd(ground) pin of Arduino.
    This is a Simple echo code which will reply back whatever the Arduino receive back to the Bolt .

My lm35 using arduino is working although data cloud count isn’t increasing and no graphical data is being shown.


it is stuck at data cloud value 12

@vinayak.joshi I think you will be able to solve this.