| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 45 online users. » 1 Member(s) | 43 Guest(s) Bing, davidkhann
|
| Latest Threads |
The latest release mispla...
Forum: Virtuino IoT
Last Post: davidkhann
11 minutes ago
» Replies: 1
» Views: 106
|
Porting of a project from...
Forum: Virtuino IoT
Last Post: pberna
03-04-2026, 01:00 PM
» Replies: 0
» Views: 20
|
Virtuino 6 vs Virtuino IO...
Forum: Virtuino IoT
Last Post: pberna
03-04-2026, 12:45 PM
» Replies: 4
» Views: 3,795
|
dating for adults
Forum: Virtuino IoT
Last Post: oliverstone1
03-01-2026, 01:36 PM
» Replies: 1
» Views: 480
|
inbuilt functions
Forum: Virtuino IoT
Last Post: robinrewar
02-26-2026, 12:57 AM
» Replies: 2
» Views: 894
|
number of installs with o...
Forum: Virtuino IoT
Last Post: torn
02-25-2026, 08:28 AM
» Replies: 0
» Views: 45
|
How to paid for the pro v...
Forum: Virtuino IoT
Last Post: michaelwillems
02-23-2026, 10:40 PM
» Replies: 5
» Views: 4,458
|
The $7,300 Profit: Why I'...
Forum: Virtuino IoT
Last Post: carolinamarin
02-20-2026, 02:25 PM
» Replies: 0
» Views: 46
|
How I Earn $400 Daily fro...
Forum: Virtuino IoT
Last Post: robinkumar
02-19-2026, 11:08 PM
» Replies: 0
» Views: 52
|
Binance Pool Paid Me $3,1...
Forum: Virtuino IoT
Last Post: autoa1transport
02-19-2026, 07:33 AM
» Replies: 0
» Views: 52
|
|
|
| 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
|
|
|
| Variable multipiler |
|
Posted by: azuo_lee - 01-26-2023, 08:45 AM - Forum: Virtuino IoT
- Replies (2)
|
 |
What is the purpose of the multiplier in the Modbus variable settings?
For example, if there is a float variable with a value of 1.0, and its multipliler is set to 0.001, then:
- the associated value display widget (with "value conversion" unchecked) will show 1.0;
- open the associated value editor popup (with "value conversion" unchecked), it will also show 1.0;
- change the value to 2.0 and save, the float value will be updated to 2000.0;
- now both the value display and the value editor will show 2000.0, which is very confusing: the value entered when saving (2.0) does not match the value displayed (2000.0) after saving.
That is, the variable multiplier is only used as a divisor when saving, and is ignored in all other cases. Is this a bug or by design?
|
|
|
|