Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 14 online users. » 0 Member(s) | 12 Guest(s) Bing, Yandex
|
Latest Threads |
How to activate the pro v...
Forum: Virtuino 6
Last Post: hu277
07-10-2025, 12:32 PM
» Replies: 10
» Views: 9,196
|
Update interval/Refresh r...
Forum: Virtuino 6
Last Post: Stefan
07-10-2025, 05:21 AM
» Replies: 0
» Views: 27
|
Emulator phone sensor dat...
Forum: Virtuino IoT
Last Post: Stefan
07-07-2025, 08:00 AM
» Replies: 0
» Views: 78
|
length/width ratio
Forum: Virtuino IoT
Last Post: Stefan
07-07-2025, 07:18 AM
» Replies: 0
» Views: 52
|
Create in Windows version...
Forum: Virtuino IoT
Last Post: Stefan
07-07-2025, 06:59 AM
» Replies: 0
» Views: 64
|
The same sketch compilati...
Forum: Virtuino IoT
Last Post: pigkang
07-01-2025, 04:02 AM
» Replies: 4
» Views: 1,656
|
Virtuino Iot, Ubuntu Linu...
Forum: Virtuino IoT
Last Post: Phlow
06-29-2025, 07:58 AM
» Replies: 16
» Views: 12,033
|
New Community Tools/Bug F...
Forum: Virtuino IoT
Last Post: Phlow
06-29-2025, 07:46 AM
» Replies: 4
» Views: 452
|
Option to Mass Import Var...
Forum: Virtuino IoT
Last Post: Phlow
06-29-2025, 07:43 AM
» Replies: 3
» Views: 424
|
App Store
Forum: Virtuino IoT
Last Post: Dr. Mario
06-13-2025, 11:09 AM
» Replies: 1
» Views: 203
|
|
|
Virtuino Chart |
Posted by: jnogues - 02-03-2023, 08:10 AM - Forum: Virtuino IoT
- Replies (1)
|
 |
Hello.
I am using the Virtuino chart associated with a data bucket.
It seems that it only graphs the data received when the application is active. Data received when it is in the background is lost or not plotted. This does not happen with Thingspeak.
Is this the expected behavior?
Regards
|
|
|
Impossible to connect to MQTT servers |
Posted by: e.montolivo@gmail.com - 02-02-2023, 10:46 PM - Forum: Virtuino 6
- Replies (14)
|
 |
Hey guys,
since a couple of hours,my Virtuino pro running on my S10 Samsung phone fails to connect to whatever MQTT broker I try to use, regardless which projects I run.
All the projects connect to the MQTT brokers when opened by Virtuino viewer running on the same phone. The same projects can also be opened without any issue by Virtuino pro on a Windows PC.
The server icon on the top left side of the screen is yellow and if I tap on it I get the message: Server Type Unknown server
is somebody having the same issue? Any suggestion?
Thank you
|
|
|
Disconnected despite saying connected |
Posted by: hebs - 02-01-2023, 02:36 PM - Forum: Virtuino IoT
- Replies (4)
|
 |
I love the app!
I am using an android tablet as an always on display. I am using an MQTT Broker on my local network to publish data about my house, power and solar setup. It works great for a couple of hours and then the data stops updating. It says that it is still connected (green cloud icon) but none of the data is updating. I disconnect and then reconnect and all is fine.
Is this a bug or could I setup a background task to automatically disconnect and reconnect every hour or so so ensure that screen displays the correct info?
Thanks again.
|
|
|
How to use Text Value Display |
Posted by: Nils.Sky - 01-31-2023, 05:32 PM - Forum: Virtuino 6
- Replies (4)
|
 |
Hey Guys,
I know there has already been an answer to this issue but still it doesnt work for me.
When doing it exactly as in the example:
https://virtuino.com/forum/showthread.ph...text+value
It just doesnt display a text. Dumbers work fine but String doesnt work at all...
String text1="Hello"; //Declare some variable for the text. On Virtuino use the pin V32
String text2=""; // V33
String text3=""; // V34
//============================================================== onCommandReceived
//==============================================================
/* This function is called every time Virtuino app sends a request to server to change a Pin value
* The 'variableType' can be a character like V, T, O V=Virtual pin T=Text Pin O=PWM Pin
* The 'variableIndex' is the pin number index of Virtuino app
* The 'valueAsText' is the value that has sent from the app */
void onReceived(char variableType, uint8_t variableIndex, String valueAsText){
if (variableType=='V'){
float value = valueAsText.toFloat(); // convert the value to float. The valueAsText have to be numerical
if (variableIndex<V_memory_count) V[variableIndex]=value; // copy the received value to arduino V memory array
else if (variableIndex==32) text1=valueAsText; // V32 -> Text
else if (variableIndex==33) text2=valueAsText; // V33 -> Text
// else if (variableIndex==34) text3=valueAsText; // V34 ->Text
}
}
}
//==============================================================
/* This function is called every time Virtuino app requests to read a pin value*/
String onRequested(char variableType, uint8_t variableIndex){
if (variableType=='V') {
if (variableIndex<V_memory_count) return String(V[variableIndex]); // return the value of the arduino V memory array
else if (variableIndex==32) return text1; // V32 -> Text
else if (variableIndex==33) return text2; // V33 -> Text
// else if (variableIndex==34) return text3; // V34 ->Text
}
return "";
}
Should the text value display now display "Hello" if i declare it to be V[32]?
Or do I need to call it somehow to declare that V[32] should display the string text1 in the text value display any other way than virtuinoRun(); ?
Thanks for the Help!
|
|
|
How to add custom sound to alarm? |
Posted by: DF5EQ - 01-29-2023, 01:16 PM - Forum: Virtuino 6
- Replies (3)
|
 |
I like to have my own sound for an alarm.
In the "Alarm Settings" I choose "Sound effect" and click the folder icon in the upper right corner.
There I see "/storage/emulated/0/virtuino/sounds/" and a file list header, but no files.
I definitely stored a mp3 there, can see it with file browsers.
So, what should I do?
OS is Android 11
|
|
|
how can I read the data from my thingspeak channel ? |
Posted by: tolisn - 01-27-2023, 10:39 PM - Forum: Virtuino 6
- Replies (2)
|
 |
Hi
I have the pro virtuino version and I'm trying to connect virtuino to thingspeak.
At this time I have connected and ESP32 which send data (6 fields) to my thingspeak channel and everything is working ok.
How can I setup virtuino to read the data from my thingspeak channel and show it ?
I tried following some videos on you tube but they seem outdated in regards to the virtuino version that I have.
|
|
|
ThingSpeak Chart data period |
Posted by: dwienie - 01-27-2023, 03:03 PM - Forum: Virtuino IoT
- Replies (1)
|
 |
Hi,
Is there a way to remember the chart data period.
For example you want to view it always in the last 1 day . Other settings like : Display all points I like also to have as a default view.
Now I need to set this again and again to these settings.
Br,
Edwin
|
|
|
|