| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 47 online users. » 0 Member(s) | 44 Guest(s) Baidu, Bing, Google
|
| Latest Threads |
The latest release mispla...
Forum: Virtuino IoT
Last Post: davidkhann
3 hours 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 SE examples |
|
Posted by: Dr. Mario - 05-12-2023, 05:44 AM - Forum: Virtuino 6
- Replies (2)
|
 |
Hello!
When choosing a Virtuino SE server, the Arduino code examples do not work. The compatibility information states that Virtuino SE is 100% supported. I have Virtuino 6 ver 6.0.32-Pro installed.
The Arduino code examples for the VirtuinoCM server work well.
What am I doing wrong?
|
|
|
| Original test sketches trials |
|
Posted by: Araqel - 05-10-2023, 01:06 PM - Forum: Virtuino 6
- Replies (4)
|
 |
Hello to Virtuino6 funs. This is video intro to Virtunio6 on Win based emulator. On Wifi the "VirtuinoCM.h" performs good enough. But Bluetooth test was not passed. I have issued trouble report on github repository about that. I have tried to compile the project in prior to 2.x Arduino version on Win10 and in most up to date Arduino 2.1.0 on Win11. The error was the same. The compilation gone error free. The error bring up during sketch running.
|
|
|
| Synchronize text T[] with ESP32 |
|
Posted by: Dionysos - 05-02-2023, 12:18 PM - Forum: Virtuino 6
- Replies (7)
|
 |
Hi,
Ilias, I would like your opinion on my approach
I want to use the ESP32 in AP mode to initialize STA mode. So I synchronize text variables (conversions of char SSID and char password).
As Virtuino 6 allows to declare text variables T[], to synchronyse them i have declared an array of String :
String T[10]; // array for 10 text values
This allows enums, easy to use in the code than V40, V41... as text :
enum ePinsAP {
eButtonValid = 0, // Virtuino virtual V Memory V[0]
eSsidNetwork = 1, // Virtuino virtual T Memory T[1]
ePwNetWork = 2,
};
... Setup ...
V[eButtonValid] = 0; // Valid SSID_STA
T[eSsidNetwork] = "";
T[ePwNetWork] = "";
So I added an "if (variableType == 'T')" test in the onReceived and onRequested functions :
void onReceived(char variableType, uint8_t variableIndex, String valueAsText) {
if (variableType == 'V') {
// Modified to take case of text values
// float value = valueAsText.toFloat(); // convert the value to float. The valueAsText have to be numerical
if (variableIndex < V_memory_count) {
float value = valueAsText.toFloat(); // convert the value to float. The valueAsText have to be numerical
V[variableIndex] = value; // copy the received value to arduino V memory array
}
// else if (variableIndex == 40) V40 = valueAsText;
// ..
}
if (variableType == 'T') {
T[variableIndex] = valueAsText;
}
}
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 == 40) return V40; // return the value of the V0 variable
//..
}
if (variableType == 'T') {
return T[variableIndex];
}
return "";
}
It works well. But I read that you don't recommend using T[] variables.
Will you remove them in future versions of virtuino 6 ?
For this use, i would be disappointed.
Thanks for your opinion.
Denis
|
|
|
| Virtuino 6 Viewer |
|
Posted by: spidgrou - 04-26-2023, 10:32 PM - Forum: Virtuino 6
- Replies (2)
|
 |
Hi,
I have problem with the viewer on Android 11. After run the app always close by itself After a few seconds.
On Android 13 it is no longer available on PlayStore.
No problem with Virtuino 6.
Is it an app that at some point will no longer support?
Thanks
Max
|
|
|
| Virtuino IOT chrashes on IOS 15.7.4 |
|
Posted by: yves - 04-21-2023, 05:58 PM - Forum: Virtuino IoT
- Replies (2)
|
 |
Hi,
I'm using Virtuino since many months on Iphones 5SE and now 7 w/o any issues and to my full satisfaction (even the pro version).
But since a few days, after not using it for about 10 days, it crashes immediatly at start.
IOS version is 15.7.5 now, same with the previous version 15.7.4.
Unfortunately, I don't know with which version it had been working.
Re-Installation from the Appstore did not help.
Did anybody experienced the same?
Thanks for any hint to fix this.
Kind regards, Yves
|
|
|
|