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 19 online users.
» 0 Member(s) | 15 Guest(s)
Applebot, Bing, Google, 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

 
  Problem with Version 6.0.28
Posted by: DanielHenne - 02-13-2023, 05:03 PM - Forum: Virtuino 6 - Replies (4)

Hi,

after updating to version 6.0.28 I can`t get connection to my bluetooth device.
The  "bluetooth LED" on top is green, but not blinking.
And there is no bluetooth traffic.
After falling back to version 6.0.20, everything is fine.
This happens on to different devices.

Do you have any idea?

Thanks Daniel

Print this item

  Virtual Keyboard number
Posted by: Shodan47 - 02-13-2023, 10:36 AM - Forum: Virtuino 6 - No Replies

Hi, 

i need a virtual keyboard for send number 1 to 999 on my Virtualino app so i did it like below ...

my app :

[Image: ecran_10.jpg]

Virtual Keyboard:

When you click on "Key picture", (V[7]=1); you're unlock Keyboard and run ClavierVirtuino();
The loop while run three times and exits the module (it is easy to increase), so by example, if you number is 523, you type 5 and 2 and 3, but if you number is smaller then 100 , 99 for example,  you should type 0 and 9 and 9

The number appears in case "Attrape". Caution variable is (Place) not int but double .


[Image: clavie10.png]

Config Button

[Image: config10.png]

Code Arduino 

Code:
void ClavierVirtuino()  //************************************
{
  V[9] = 0;
  V[8] = 0;
  Compteur = 0;
  C = 0;
  D = 0;
  U = 0;

  while (Compteur < 4) {
    virtuinoRun();
    if (V[8] == 1) {
      Compteur++;
      if (Compteur == 1) {
        C = V[9] * 100;
        V[8] = 0;
      }
      if (Compteur == 2) {
        D = V[9] * 10;
        V[8] = 0;
      }
      if (Compteur == 3) {
        U = V[9] * 1;
        V[8] = 0;
      }
      Place = C + D + U;
    }

    V[8] = 0;
    if (Compteur == 3) {
      V[7] = 0;
      Compteur = 0;
      D = 0;
      C = 0;
      U = 0;
      return;
    }
  }
}
i'm only a small amateur and i've been using virtuino for three days !
There are probably easier ways for the same results, but if can help, i give you mine method Smile

Print this item

  Arduino App Easy
Posted by: Shodan47 - 02-12-2023, 10:07 PM - Forum: Virtuino 6 - Replies (2)

Virtuino is really great for creating interfaces for Arduino.

After two days my App perfectly manages my wine cellar robot

[Image: screen13.jpg]

Print this item

  set M or V memory at app start
Posted by: DF5EQ - 02-11-2023, 10:43 PM - Forum: Virtuino 6 - Replies (3)

Is it possible to set a M or V memory to a (constant) value at app start?

Print this item

  Enter value as text/number
Posted by: DF5EQ - 02-11-2023, 10:28 PM - Forum: Virtuino 6 - Replies (5)

Is it somehow possible to input a value into M or V memory with a text or number entry widget?
A slider or regulator shall not be used.

Print this item

  Two ethernet CArd
Posted by: Shodan47 - 02-10-2023, 01:15 PM - Forum: Virtuino 6 - Replies (2)

Hello
I'have two ethernet Cart connected to the same Anduino tablet.

By example :
The first ip is 192.168.1.1
The Second 192.168.1.2

To change the card, i have to go to setup, select the connection, and change.

Is it possible to configure a button on the main page for change the card connection, ?

Thank

Print this item

  Save App
Posted by: Shodan47 - 02-10-2023, 11:48 AM - Forum: Virtuino 6 - Replies (5)

Hello,

 Thank you for this beautiful application. 

 I understand that the pro license allows you to install the app on an unlimited number of devices.

Could you tell me if it is possible to save what we have developed on one device to install it on another?

Thank

Print this item

  App crash
Posted by: roman8068 - 02-08-2023, 04:05 PM - Forum: Virtuino 6 - Replies (3)

Hello. In version 6.0.26, the program crashes at startup. Like a double launch.

Print this item

  JSON parsing
Posted by: Ciberyan - 02-05-2023, 08:26 AM - Forum: Virtuino IoT - Replies (1)

Hello Ilias
I have my json parsing well with message having only one level
Example :
{
  "Battery": 100,
  "LastUpdate": "2023-02-03 19:11:39",
  "RSSI": 5,
  "description": "",
  "dtype": "Temp + Humidity",
}


But I dont know how to fill the JSON path when there are more that one level

Example (how to reach the fourh line Temperature) :
{
  "Time": "2023-02-04T19:37:20",
  "ATC087c2e": {
    "mac": "a4c138087c2e",
    "Temperature": 22.8,
    "Humidity": 43,
    "DewPoint": 9.5,
    "Battery": 43,
    "RSSI": -96
  "Time": "2023-02-04T19:37:28",
  "Switch1": "ON",
  "Switch2": "ON",
  "ENERGY": {
    "TotalStartTime": "2022-04-10T21:05:51",
    "Total": 0,
    "Yesterday": 0,
    "Today": 0,
    "Period": [
      0,
      0
    ],
    "Power": [
      0,
      0
    ],
    "ApparentPower": [
      0,
      0
    ],
    "ReactivePower": [
      0,
      0
    ],
    "Factor": [
      0,
      0
    ],
    "Voltage": 228,
    "Current": [
      0,
      0
    ],
    "BL09XX": {
      "Temperature": 36.2
    }
  },
  "ATC2da007": {
    "mac": "a4c1382da007",
    "Temperature": 22.8,
    "Humidity": 42,
    "DewPoint": 9.2,
    "Battery": 64,
    "RSSI": -91
  },
  "TempUnit": "C"
}
Thanks for your help

Print this item

  HiveMQ private > No connection
Posted by: Ciberyan - 02-04-2023, 03:07 PM - Forum: Virtuino IoT - Replies (2)

Hello
Thanks for the really good job
I play around the Virtuino IOT on my PC
While connection with the Public HiveMq is ok, I cant connect to my private cluster
I have a RED cloud on top left (even if it say CONNECTED in the servers menu)
https://imgbox.com/q7UXiaWU
I set a Status variable, with a result of 3, but dont find any clue on what it means
https://imgbox.com/3OGT74NE
I try with Server side certificate or file certificate
My credentials are good of course
Any idea on what could be wrong ?
Any log somewhere to get server response ?
Sorry for the image, inserting seems not working so the link

Print this item