Progduino. a small program that I'm building.

I'm building a small program for Arduino I want your opinion.

Progduino is a small and free program for Arduino users. Progduino built to help Arduino users who want to build their own computer software that could communicate with Arduino In a really simple way.What you need to know is to work with a single command of Arduino (Serial.println). with this command you can communicate with Progduino and send it commands, with these commands you can design and develop software on your PC and communicate with Arduino.

the program is free to use and (version 1.0.0.0 Beta) For more information : progduino.com

Can you give some examples how it is used?

robtillaart:
Can you give some examples how it is used?

Example 1 : Click on a button to show a message.

void setup()
{
Serial.begin(9600);
ProgduinoRunOnce();
}

void loop()
{

}

void ProgduinoRunOnce(){
Serial.println(F("WindowSize; width:800; height:600"));
Serial.println(F("CreateButton; width:100; height:50; top:150; left:200; fontsize:12; name:button1; text:click me;"));
Serial.println(F("OnClick; control:button1; showmessage:my message;"));
}

Example 2 : Click on a button to add item to listBox.

void setup()
{
Serial.begin(9600);
ProgduinoRunOnce();
}

void loop()
{

}

void ProgduinoRunOnce(){
Serial.println(F("WindowSize; width:800; height:600"));
Serial.println(F("CreateButton; width:100; height:50; top:10; left:200; fontsize:12; name:button1; text:click me;"));
Serial.println(F("CreateListBox; width:200; height:200; top:100; left:200; fontsize:12; name:ListBox1; items:item 01, item 02;"));
Serial.println(F("OnClick; control:button1; additem:ListBox1:item 03;"));
}

You can take data from sensors and add them to the ListBox (for example).

There are all kinds of functions and I'm working on more functions. for example you can show data on ListBox that taken from temperature sensor and send the data to your Email or/and save the data to a text file (All the functions needed to do this are ready).

There are many more examples on the site.

May I suggest that you add a few paragraphs near the top of the home page of your website which tell people what Progduino is. Something like

Progduino is a program that runs on your PC and does ....

To run Progduino your PC must have ...

Is it something similar to my EzScrn demo ?

...R

Robin2:
May I suggest that you add a few paragraphs near the top of the home page of your website which tell people what Progduino is. Something like

Progduino is a program that runs on your PC and does ....

To run Progduino your PC must have ...

Is it something similar to my EzScrn demo ?

...R

Very nice. You have a website so I can see what you did?

maordany:
Very nice. You have a website so I can see what you did?

It is all in the link I gave you.

...R

Is Progduino dead? The site link is a dead end,

Are there any alternatives?