App Inventor - Arduino

@Patryk_F Or, if we have an unwanted function, we can use:

image

hi nilton can you teach me how to fetch realtime data like weather of a place from google or an api website in an app?

thanks i modified as per my requirement and its perfectly working

thanks for helping

I am happy to can help you

Good. I think you understand the way of doing it and can continue to develop

it's a challenge for me, I'll see and if I can, I'll post it.

ok i found out the coding and app coding can i tell the code

@kaushik hi, of course. Please send me.

ok

void setup() {
Serial.begin(9600);
}

void loop() {

int s1 = digitalRead(A0);
int s2 = digitalRead(A1);
int s3 = digitalRead(A2);

Serial.print("TEST|");
Serial.print(s1);
Serial.print("|");
Serial.print(s2);
Serial.print("|");
Serial.println(s3);
delay(1000);

}