Sreevatsa Acharya
Sreevatsa Acharya
@rnyschyi , hey i am facing the same issue, did you figure out any fix?
> @SreevatsaAcharya hi, we just moved to react navigation and it works well @rnyschyi . Hmmmm, our project is deeply integrated with React native navigation and ui kitten right now....
Hello, I am trying to send the value obtained from the load cell to a server using a gprs sim900 module, and i am doing so as follows ``` char...
@compugician ` float temp; char val[20]; char url[160]; void SendData() { mySerial.println("AT+HTTPINIT"); //init the HTTP request delay(2000); ShowSerialData(); // Serial.print("Reading: "); // temp=random(1000.12,9999.99); temp= scale.get_units(); Serial.print(scale.get_units(), 1); //scale.get_units() returns a...
Finally!!! Made it work. The scale.get.units() function reads value from the load cell very quickly so i guess the value wasn't actually getting stored in the variable i defined. Made...