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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 97,469
» Latest member: zaadisoncahvs4279
» Forum threads: 5,413
» Forum posts: 5,616

Full Statistics

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

Latest Threads
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,457
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 Esp8266 e telegr...
Forum: Virtuino 6
Last Post: DFCARLO
02-18-2026, 09:15 PM
» Replies: 0
» Views: 52

 
  Virus in the installer file
Posted by: Darek53 - 04-22-2024, 10:05 AM - Forum: Virtuino IoT - Replies (1)

While downloading the latest virtuino 0.6.21 , Microsoft Defender found a virus.

   

Print this item

  Virtuino with Bluno Mega by DFRobot
Posted by: xmilav - 04-18-2024, 09:47 PM - Forum: Virtuino 6 - Replies (1)

Good night. I am developing a project with Arduino Mega and Viretuino6 with Bluethoot HC06.
I need the 3 series ports to communicate with different peripherals.
But one is used by the Bluethoot module.
I have thought about using the Bluno Mega from DFRobot that has Bluetooth integrated but I don't know how to adapt it to the Virtuino routines.
Has anyone used Virtuino with the DFRobot Bluno Mega?

Thanks for the advance


Print this item

Sad schedule doesn't work
Posted by: dimentiy89 - 04-16-2024, 06:29 PM - Forum: Virtuino IoT - Replies (1)

I'm trying to set up a relay on/off schedule. The problem is that all days work correctly except Sunday; on Sunday the schedule does not work at all.

here is my code:

Code:
byte stringToByte(const char* str)
{
    byte data = 0;
    for (uint8_t i = 0; i < 7; i++)
    {
        if (str[i] == '1')
        {
            bitSet(data, i);
        }
        if (str[i] == '0')
        {
            bitClear(data, i);
        }
    }
    return data;
}

Print this item

  Extract data from long Json message
Posted by: dns85 - 04-12-2024, 09:22 PM - Forum: Virtuino IoT - Replies (2)

Hi,

I am sorry to bother with this question as i have seen it was asked before, but after watching the video you posted on how to extract the data, i still can not mange to extract what i need.
The Json payload i receive is :

{"state":{"reported":{"M..1:2-1":"00","AM..4:10-1":"04bc","V..4:8-1":"0021","M..1:10-1":"00","M..1:11-1":"00","V..6:4-1":"0000012c","V..4:12-1":"0000","V..4:24-1":"0010","V..4:28-1":"0465","V..4:36-1":"0000","M..1:6-1":"00","M..1:4-1":"00","M..1:5-1":"00","M..1:12-1":"00","V..2:990-6":"1d2404122205"}}}

There are a lot of variables Smile but i would like to extract for example "AM..4:10-1":"04bc", 04bc is the value which is in hex, i would also like to convert to decimal. i would like to display only the value 04bc in decimal (1212).

I have tried also with JavaScript script, but it did not work Sad

Please can you help me with this. Thanks in advance

Print this item

  Windows 7
Posted by: GianniPower - 04-11-2024, 01:35 PM - Forum: Virtuino IoT - Replies (1)

Hello, any chance to have Virtuino IoT working on a Windows 7 pc? 
Thanks a lot

Print this item

  ESP32 and Virtuino IoT connect directly
Posted by: robert4you - 04-07-2024, 10:45 AM - Forum: Virtuino IoT - Replies (1)

Is it possible to connect directly between ESP32 and virtuino Iot using WiFi?
 No access to the router, and ESP32 works as an Access Point.

Print this item

  The same sketch compilation on different platform/board
Posted by: Araqel - 04-05-2024, 06:16 AM - Forum: Virtuino IoT - Replies (4)

This is not a bug report, but an observation. The same sketch compilation has been done for ESP32 Devkit V1 and Raspberry Pico W. This is the compiler's (Arduino IDE 2.3.2) report for ESP32:
"Sketch uses 772533 bytes (58%) of program storage space. Maximum is 1310720 bytes.
Global variables use 45480 bytes (13%) of dynamic memory, leaving 282200 bytes for local variables. Maximum is 327680 bytes."
And accordingly, for Pico W:
"Sketch uses 369120 bytes (18%) of program storage space. Maximum is 1961984 bytes.
Global variables use 74000 bytes (28%) of dynamic memory, leaving 188144 bytes for local variables. Maximum is 262144 bytes."


(04-05-2024, 06:16 AM)Araqel Wrote: This is not a bug report, but an observation. The same sketch compilation has been done for ESP32 Devkit V1 and Raspberry Pico W. This is the compiler's (Arduino IDE 2.3.2) report for ESP32:
"Sketch uses 772533 bytes (58%) of program storage space. Maximum is 1310720 bytes.
Global variables use 45480 bytes (13%) of dynamic memory, leaving 282200 bytes for local variables. Maximum is 327680 bytes."
And accordingly, for Pico W:
"Sketch uses 369120 bytes (18%) of program storage space. Maximum is 1961984 bytes.
Global variables use 74000 bytes (28%) of dynamic memory, leaving 188144 bytes for local variables. Maximum is 262144 bytes."

By the way, either apps, on Android and Windows are unable to connect to the server on Pico W. Meanwhile the WiFi is on and the Access Point is visible & connectable. Now I do some debug to see what is going on under hood.

Print this item

Question Duplicate widgets
Posted by: dimentiy89 - 04-04-2024, 12:53 PM - Forum: Virtuino IoT - Replies (1)

Hello. I'm trying to copy a group of widgets with all mqtt topics, but nothing works.
I add all the widgets to the group, then duplicate this group, all widgets are copied but with the old mqtt topic data.
Tell me how can i copy a group of widgets and assign other topics to this group, for example:
The first group of widgets has topics 555\top1, 555\top2, 555\top3
the second group of widgets should have topics 666\top1, 666\top2, 666\top3

thanks

Print this item

  Script & Tools integration problem
Posted by: Araqel - 03-26-2024, 04:36 PM - Forum: Virtuino IoT - Replies (2)

Greetings Ilias!

In first I would like to ask an off-topic question. I owe Pro license on Android Virtuino-IOT. How can I share this license with my Windows 11 based Microsoft Store downloaded Virtuino-IOT, if it is possible at all?
Now about the instant issue. I have an "Value Display" widget, which grabs the data from a given tag/value pair on ESP32. This data represents the machine running in minutes. I would like to represent this data in hours, recalculated on the fly, on phone app. I add Script widget where out=x/60, where the x is an input from device, the out is a variable in emulator. The widget's edit menu's "Action" section does not provide desired binding of generated script and Value display. By the way, "Run Script" command has "Tag" field, which is not available in Script & Tools section.

Print this item

  Configurar retorno na conexão HTTP
Posted by: EMERSON RIBEIRO - 03-25-2024, 02:21 PM - Forum: Virtuino 6 - No Replies

Alguém de vocês sabe como configurar o retorno na conexão http? Consigo comunicação normal com a placa esp8266 mas não consigo atualizar os botões com o status de retorno

Print this item