Problem extracting a portion of string from a text

Good evening I ask you for help, I'm trying to extract a substring from a text to then submit it to an If-then to display an image, unfortunately from an example taken from this forum, it can't extract the word I'm looking for, that is "led1=on", can you kindly help me solve this problem. I attach text that I specify also contains special characters to make it go to the next line of the type \n, I attach app inventor code. Thanks in advance to our angels. Best regards

eccoVi il testo copiato dal monitor seriale di arduino
14:46:17.117 -> ECCO IL TESTO CHE INVIO :

14:46:17.117 -> Stato Casa Led

14:46:17.117 -> ------------------------------

14:46:17.163 -> led1=on

14:46:17.163 -> led2=off

14:46:17.163 -> led3=off

14:46:17.163 -> led4=off

14:46:17.163 -> Temperatura : 0.00 *C

14:46:17.163 -> Umidita : 0.00 %

14:46:17.163 -> Pressione : 0.00 hPa

14:46:17.163 -> Altitudine : 44330.0 m

After the text has been found you have to stop the for each in list loop, else the image will get overwritten again

To do that use the break block

http://ai2.appinventor.mit.edu/reference/blocks/control.html

Taifun

1 Like

Hi Taifun thanks for your help, Sorry I modified the code like this, the first time it works by sending a text that contains the word "lampadina", with the app active I send a second text message that does not contain the word "lampadina" and it always assumes the same image with text that contains "lampadina". In practice it does not update the image. Also taifun with the close application button, I have this problem, it closes the application, but a white screen appears, that is, it does not return to the normal display of the smartphone. I post the command that I activate. Thanks in advance for your contribution. Best regards.

Dear @pdecaro, Paolo,
non capisco una cosa: prima dici che mandi dei messaggi SMS, poi parli di Arduino.
Quindi hai su Arduino una scheda SIM900 (o simili) che usi per mandare un SMS alla tua app ?
In pratica in un SMS "tipico" tu mandi tutti i dati che hai elencato (ricordati che gli SMS hanno solo 128 bytes) ?
Tieni presente che se componi un SMS con le stringhe che visualizzi, se ci sono dei Linefeed (0x0A, ovvero 10 decimale), anzichè degli spazi (visto che fai lo "split at spaces" la suddivisione non sarà corretta. Inoltre nel caso dei dati di Temperatura, Umidità, Pressione, Altritudine, in cui hai degli spazi nelle stringhe come ad esempio in TemperaturaB:B0.00B°C (dove con B intendo indicare il blank, ovvero lo spazio) lo spilt at spaces ti separa questa stringa in item diversi della lista in questo modo:
item n "Temperatura"
item n+1 ":"
item n+2 "0.00"
item n+3 "°C"
quindi ti si incasina tutto.
Ti conviene a questo punto comporre un singolo SMS in questo modo:
"Stato Casa LED/-------->>> /LED1=ON/LED2=OFF/LED3=OFF/LED4=OFF/Temperatura:0.00°C/Umidita:0.00%/Pressione:0.00hPa/Altitudine:44330.0m"
Ovvero una stringa sola in cui i campi sono separati dalle barre "/" così in AI2 puoi usare lo "split at /" in questo modo sei sicuro che ogni item contiene un dato.
Inoltre avrai notato che ho passato in maiuscolo le scritte LED e lo stato ON/OFF.
In pratica dovrai fare una cosa come qui sotto:

Dove, per evitare che il blocco "if contains" sia ingannato da un problema di maiuscolo/minuscolo, oltre ad aver fatto mandare da Arduino gli stati già in maiuscolo, nell'app, prima di confrontarli, usi la funzione "upcase" che, a scanso di equivoci, converte il dato in arrivo in maiuscolo.
Poi, le mie procedure FaiQualcosa e FaiQualcosaltro non sono altro che il settaggio delle tue labels (o qualsiasi altra cosa vorrai fare in funzione dello stato del LED ennesimo).

NOTA:

Fino qui per quanto riguarda lo "split at spaces (oppure at /)" ma, come ti ha detto @Taifun, il ripetere il loop alla ricerca della stringa LED1=ON oppure OFF per decidere di visualizzare un'immagine piuttosto che un'altra, ti sovrascrive al passaggio 'n' quello che avevi trovato al passaggio 'n-1'.
Meglio quindi fare una cosa diversa: se il tuo SMS è strutturato come ti propongo io, gli item saranno sempre in posizione fissa, per cui l'item 3 conterrà sempre lo stato del LED1, l'item 4 quello del LED2, e così via, fino all'item 10 che conterrà sempre l'Altitudine. E qui viene facile un'ulteriore semplificazione: da Arduino puoi spedire solo i valori degli stati ON e OFF e i valori numerici delle grandezze che stai misurando, per cui il tuo SMS potrebbe diventare semplicemente:

"ON/OFF/OFF/FF/00.0/0.00/0.00/44330.0"

da cui i blocchi possono diventare:

Spero di essere stato sufficientemente chiaro.
Ciao ciao.

PS ma a che altitudine vivi ? 44330.0 metri è più alto del monte Olimpo di Marte... :rofl: :rofl: :rofl:

Sorry, @Taifun for the Italian, but I believe that speaking Italian, at least at the first approach can eliminate some basic misunderstandings due to language :grin: !
Mit freundlichen Gruessen !


Taifun

Good evening uskiara and thank you for answering me, I will follow your advice to make a simplified sms only for the LEDs, actually the receiving sms is sent to me by a LILYGO A7670G board, now however I made a simple test program to test if the scan works, in fact it works the first time, the second time it doesn't feel the difference. Kindly could you see the code, the searched word is "lampadina". Thanks for your precious contribution.

Ciao uskiara, il sensore di temperatura, è stato staccato ecco perchè altitudine è sbagliata, ma comunque con il sensore BME280 quando lo collego sbaglia lo stesso altitudine, infatti dovrò cercare uno migliore. Ho postato il nuovo programma di test , gentilmente postresi vedere se va bene. Adesso provo ad integrare le tue modifiche. Grazie

so as far as I understand, if that word is found, you like to display lampadina spenta?

if yes, your blocks should look like this
unknown
to break the loop if that word was found
and to initialize the image use lampadina accesa

Taifun
PS: it might be I did not understand your problem at all...

Ciao Paolo,
continuo in inglese per facilitare la discussione anche agli altri Power Users.
I'm a bit confused because in your first post you say that in your SMS message there are strings like: led1=on led2=off and so on, but the word "lampadina" is not there !
Anyway, whatever the SMS message contains, to search within it a specific word, the best solution is to use (like you already do) the 'if contains' block, provided that you convert the received string in uppercase so to avoid mismatch between lowercase and uppercase words.
Then, if you search only one specific word into the entire SMS, you don't need to spit it into a list.
Be careful about the data separator in the SMS: use a character that you will not have in a data, therefore choose a character like "/" or "$" so the activate a "split at /" or a "split at $".
On the opposite, if you need to search for many specific words, and you want to split them into a list, you might use the "break" block within the "for loop", like @Taifun has shown you, or you use my algorithm, provided that the data are always in specific items, once the message has been split.

In a nuthshell: the more detailed indication you provide us, the higher probability to help you arises.
Ciao, Ugo.

EDIT:
According to what your blocks indicate, they have been rearranged correctly by @Taifun, but what seems weird to me is that you want to set OFF the Lamp1x picture when you receive the word lampadina by SMS (and this is what your blocks do). But I'm supposing, on the opposite, that you want to set the picture to ON , when you receive the word lampadina, therefore I suggest the following:

  • Preset the picture Lamp1x to off (spenta)
  • Search within the list items the item containing the word "lampadina"
  • If found, set the picture Lamp1x to on (accesa) and break the loop.
    Otherwise, if the word lampadina has not been found in any of the items, its picture will remain set to off (spenta).
    Is this what you want ?

Ciao.

Ciao Paolo,
mi è arrivato un flag di aggiornamento del tuo topic, ma forse me lo sono perso :fearful:. Come sei messo ?
Ciao, ugo.

In the other thread you said, you solved the problem.
As we are a sharing community please share your solution for others, which might have the same problem in future

Taifun