Hi,
I know this is nothing fancy and the old dogs will laugh about it but it was a major achievement for me after a few hours of fiddling around and with the help of Phil and his inmense paitnece with me I maged to transmit data from my Arduino to a simple User Interface

Here the set up with the Arduino. It is a Voltage dicider absed on 2 Photoresistors and limited by a hole through which light falls. According to the position of the hole the voltage is higher or lower and that I am using for a device which will be a guider on the Sun.
Code: Select all
#include <Wire.h>
#include <MegunoLink.h>
InterfacePanel FR_ui;
float volt;
void leerFR()
{
volt = analogRead(A0);
}
void setup()
{
Serial.begin(14400);
pinMode(13,OUTPUT);
digitalWrite(13,LOW);
}
void loop()
{
leerFR();
volt = volt * 4.828;
FR_ui.SetNumber("mVolt",volt);
delay(1000);
}