Is there any way to convert code from VB to code for Arduino? This is part of the code I am trying to convert
namespace GPS
{
public class GpsPoint
{
public float x { get; set; }
public float y { get; set; }
public GpsPoint(float x, float y)
{
this.x = x;
this.y = y;
}
An Arduino program is likely to be very different from a VB program because of the limited facilities on an Arduino and its ability to interface with hardware.
Write down (in English - or your own language if different) the high-level steps that the Arduino needs to take.
Then look through the Arduino examples and tutorials to see how similar things are done.
If you know how to program VB you won't have any trouble with C++