Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 96,604
» Latest member: zaisabellayadexto8530
» Forum threads: 5,394
» Forum posts: 5,578

Full Statistics

Online Users
There are currently 12 online users.
» 0 Member(s) | 10 Guest(s)
Bing, Google

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

 
  Log file
Posted by: GianniPower - 05-14-2023, 10:50 AM - Forum: Virtuino IoT - Replies (3)

Hi, I'd need to create a log file with different data stored both analog and digital. How can I create the file and make it available to be downloaded from a different software? 
Is this possible with this great application? 
Thanks for help

Print this item

  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?

Print this item

  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.

Print this item

Question Schedule display
Posted by: dimentiy89 - 05-04-2023, 05:09 PM - Forum: Virtuino IoT - Replies (3)

Hello. I have 3 widgets Schedule display, is it possible to create another widget Schedule display so that it can control these three?
I want to program one widget Schedule display instead of three
Привет. У меня есть 3 виджета Отображение расписания , можно ли создать другое отображение виджетов Расписание , чтобы оно могло управлять этими тремя?
Я хочу запрограммировать один таймер вместо трех

Print this item

  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

Print this item

Exclamation Virtuino IoT application crashed
Posted by: IVR - 04-27-2023, 01:11 PM - Forum: Virtuino IoT - Replies (3)

Hi, I am using Virtuino IoT latest version on Asus ZenPad080 Tablet Android 6.0, as soon as I run the application it crashes.

I would need to know how come. The error is : Virtuino IoT application crashed. Thank you

Print this item

  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

Print this item

  Virtuino and ESP32 in AP mode
Posted by: Dionysos - 04-25-2023, 09:06 PM - Forum: Virtuino 6 - No Replies

        Hello,

I want to connect an ESP32 in AP mode to define, with VirtuinoCM, the SSID and the password of the web server which will then be used in STA mode.


In STA mode: everything works fine.

In AP mode:
On Smartphone I select Wifi on the ESP32 network with the ESP32 password.

With the Smartphone I get a response to the ping to ESP32 IP (192.168.4.1). Connection is OK.

With Virtuino  I set up a network: Wifi/ESP32/VirtuinoCM, IP (192.168.4.1) and password (12345678) of the ESP32 server.
Connection test always fails (Smartphone in Wifi  AP mode) with port 80 or any other.

Is it possible to synchronize Virtuino with a server in AP mode?
If so, what am I doing wrong?


Thanks.

Print this item

Photo Hidden frames
Posted by: Dionysos - 04-25-2023, 12:56 PM - Forum: Virtuino 6 - Replies (2)

Hello


Thank you Illias for this great App that I use a lot.

I use slightly transparent images, able or disabled depending on the position of a slider, to hide portions of the screen.
It's quite tedious since each time you need a new image of the right size to mask.

   

I tried to use frames, which are more flexible. They can change color according to instructions, but unfortunately backcolor cannot be hidden.

Am I missing something with these frames?

Thanks

Print this item

  Virtuino 6 panel duplicate
Posted by: vovaself - 04-24-2023, 11:22 AM - Forum: Virtuino 6 - Replies (1)

Hi
I have Virtuino 6
How can I 
1. duplicate the whole panel
2. copy/paste the group of widgets  ?

Thanks

Print this item