Hi,
Did you connect the hardware to the PC you want to start ?
Search found 36 matches
- Sun Dec 31, 2017 11:59 pm
- Forum: MegunoLink
- Topic: Problem with UDP and MegunoLink Host Builder
- Replies: 6
- Views: 23112
- Sat Dec 23, 2017 5:46 pm
- Forum: MegunoLink
- Topic: Windows 7 and a build msi
- Replies: 2
- Views: 14541
Re: Windows 7 and a build msi
Hi Rainer, Windows 7 should be alright. He will need the latest .net libraries installed but I think our installer should fetch that. Maybe he didn't have his machine on the internet?
Otherwise I guess we need any details on error messages etc. Maybe he changed the install path (which isn't ...
- Fri Dec 22, 2017 9:03 pm
- Forum: MegunoLink
- Topic: Windows 7 and a build msi
- Replies: 2
- Views: 14541
Windows 7 and a build msi
Hi,
For testing purposes I did build a simple exe with the MegunoLink BUilder and send it to a friend.
He was not able to install it on his PC.
Did I overlook something ?
regards Rainer
For testing purposes I did build a simple exe with the MegunoLink BUilder and send it to a friend.
He was not able to install it on his PC.
Did I overlook something ?
regards Rainer
- Tue Dec 19, 2017 8:13 pm
- Forum: MegunoLink
- Topic: Help me Urgent with serial communication
- Replies: 1
- Views: 12662
Re: Help me Urgent with serial communication
Hi,
I do not think that is a problem of the build software but more a computer problem.
Do you really need such a fast serial connection of 115200 baud ? Have you tried with a lower one ?
What about closing the program, unplug the USB cable, plug it in again and then restart software ?
If it ...
I do not think that is a problem of the build software but more a computer problem.
Do you really need such a fast serial connection of 115200 baud ? Have you tried with a lower one ?
What about closing the program, unplug the USB cable, plug it in again and then restart software ?
If it ...
- Fri Dec 15, 2017 5:27 pm
- Forum: MegunoLink
- Topic: Time plot in an UI
- Replies: 2
- Views: 15568
Re: Time plot in an UI
Thank you Philip

- Tue Dec 12, 2017 9:15 pm
- Forum: MegunoLink
- Topic: Format Text Box for Floating Point Numbers
- Replies: 9
- Views: 70783
Re: Format Text Box for Floating Point Numbers
Hi,
Sorry for so many posts. UNtil now I saw that the OP just wants 1 decimal number and not two. Now I understood his question.
Sorry for making up this confusin but thank anyhow I learned something else
Promise that the next time I will read slower the original posts
regards Rainer
Sorry for so many posts. UNtil now I saw that the OP just wants 1 decimal number and not two. Now I understood his question.
Sorry for making up this confusin but thank anyhow I learned something else
Promise that the next time I will read slower the original posts
regards Rainer
- Tue Dec 12, 2017 9:09 pm
- Forum: MegunoLink
- Topic: Time plot in an UI
- Replies: 2
- Views: 15568
Time plot in an UI
Hi,
I finally managed to get going the time plot but noticed something. All possible adjustments which are in the Builder window after compiling an exe are there too.
When I ran the first exe with the Plot I wondered why my defined lines where not there anymore and that is how I discovered that ...
I finally managed to get going the time plot but noticed something. All possible adjustments which are in the Builder window after compiling an exe are there too.
When I ran the first exe with the Plot I wondered why my defined lines where not there anymore and that is how I discovered that ...
- Tue Dec 12, 2017 8:12 pm
- Forum: MegunoLink
- Topic: Format Text Box for Floating Point Numbers
- Replies: 9
- Views: 70783
Re: Format Text Box for Floating Point Numbers
Hi,
A few minutes later I tested it now with " .... float Value ) "
#include "MegunoLink.h"
InterfacePanel LAS;
TimePlot AnalogTomVolt;
int LedSensor;
float mVolt;
int mVoltText;
void setup()
{
Serial.begin(9600);
pinMode(13, OUTPUT);
digitalWrite(13, LOW);
}
void loop()
{
LedSensor ...
A few minutes later I tested it now with " .... float Value ) "
#include "MegunoLink.h"
InterfacePanel LAS;
TimePlot AnalogTomVolt;
int LedSensor;
float mVolt;
int mVoltText;
void setup()
{
Serial.begin(9600);
pinMode(13, OUTPUT);
digitalWrite(13, LOW);
}
void loop()
{
LedSensor ...
- Tue Dec 12, 2017 7:54 pm
- Forum: MegunoLink
- Topic: Format Text Box for Floating Point Numbers
- Replies: 9
- Views: 70783
Re: Format Text Box for Floating Point Numbers
Hi,
After reading a few times the URL I think I understood it :-)
Look at my code which writes now numbers into a text box.
First code adding additional variables and using abs()
#include <MegunoLink.h>
InterfacePanel Test_UI;
float volt;
float volt1;
long voltText;
long volt1Text;
void ...
After reading a few times the URL I think I understood it :-)
Look at my code which writes now numbers into a text box.
First code adding additional variables and using abs()
#include <MegunoLink.h>
InterfacePanel Test_UI;
float volt;
float volt1;
long voltText;
long volt1Text;
void ...
- Tue Dec 12, 2017 5:33 pm
- Forum: MegunoLink
- Topic: Format Text Box for Floating Point Numbers
- Replies: 9
- Views: 70783
Re: Format Text Box for Floating Point Numbers
Hi,
Interesting. I did take a quick look into the URL you mentioned but I did not get it quite. Will take a longer look toady in the afternoon.
I am using the numeric updown box but I do not like the arrows there as I am not choosing and sending anything from the box to the Arduino. I am just ...
