<div dir="ltr">Unfortunately, it looks like they removed WinForms support in Xamarin Studio :(</div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Feb 10, 2015 at 12:42 PM,  <span dir="ltr"><<a href="mailto:jonjwolfe@anibit.com" target="_blank">jonjwolfe@anibit.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">FWIW, Windows.Forms *does* work decently under mono on OSX and Linux. I have never tested elaborate or sophisticated UI's in Winforms/mono, but basic one's work well. The thing to watch out for is anything in C# where you use "P/invoke", which is the way in .Net to cheat and make calls into the underlying OS. Those are not going to work in Mono. Custom controls and digging deep into the Windows messaging loop are two things that often require p/invoke calls, so if your app doesn't use those, it should be fine. I have even verified that C# console applications work under mono on Raspian. I think I also tested Winforms on the pi, but I cannot remember for sure. My UI framework of choice, WPF, is not at all supported under mono, but given that Microsoft has recently open-sourced many crucial parts of the .Net framework that weren't already open source, I am hopeful that support will come one day in the not too distant future.<br>
<br>
I agree with Adam, it does sound like python/pyserial is the way to go if you want easy cross platform, I have used it too.<br>
<br>
I have researched a lot of options for UI's in Python, and it seems like a lot of it is done in either tkinter or gtk. I'm personally leaning toward tkinter because it's very commonly included with Python, so there is not additional setup.<br>
<br>
If you know neither Python nor C#, and only need Windows support, and have ever done any C/C++/Java, then C# with Windows.Forms is probably the fastest way to get something up and running quickly with minimal learning curve. Google "Visual Studio 2013 Express for Windows Desktop" or "Visual Studio 2013 community". Both are free, royalty free, and free for most commercial use(within certain limits). Express is smaller to download and install, but has been replaced by the more featured "Community" edition.<br>
<br>
--Jon<span class=""><br>
<br>
<br>
On 2015-02-10 11:14, Adam Haile wrote:<br>
</span><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
Fred,<br>
I had to research the same thing when developing the AllPixel. It<br>
doesn't use an FTDI chip since the ATMega32u4 we used has CDC USB<br>
Serial, but as far as the OS is concerned, it's just serial like FTDI.<br>
<br>
First major question that will change my answer is what OS support you<br>
need?<br>
Because I needed to support any OS on any architecture, I went with<br>
Python (2.7.x) and pyserial which is a pure python, cross-OS serial<br>
interface.<br>
However, the UI components of Python are lacking. There's a plethora<br>
of windowing packages but I've never been super happy with any of<br>
them. So, if you just need something simple and a command line<br>
interface would work, I would definitely recommend the pyserial/Python<br>
route.<br>
<br>
If, for example, you just need Windows support, I can certainly<br>
recommend C# which has built in serial functionality. With a little<br>
work and the use of Mono it should even work cross-OS. But if you do<br></span>
need that, _start_ with Mono since you will really need to use GTK#<br>
instead of WinForms or WPF that are the Windows C# defaults but _don't<br>
_work in Mono so much.<span class=""><br>
<br>
On Tue, Feb 10, 2015 at 8:35 AM, Fred Ebeling<br>
<<a href="mailto:FEbeling@ecpdesigns.com" target="_blank">FEbeling@ecpdesigns.com</a>> wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
HI<br>
<br>
I am developing a simple controller unit that interfaces to the<br>
computer using a USB FTDI IC. What I need is a simple support<br>
language that would allow me to program some text and select<br>
some options and then send commands to the controller.<br>
<br>
Any suggestions:<br>
<br>
Fred Ebeling<br>
</blockquote>
<br>
<br></span>
______________________________<u></u>_________________<br>
Triangle, NC Embedded Computing mailing list<br>
<a href="mailto:TriEmbed@triembed.org" target="_blank">TriEmbed@triembed.org</a><br>
<a href="http://mail.triembed.org/mailman/listinfo/triembed_triembed.org" target="_blank">http://mail.triembed.org/<u></u>mailman/listinfo/triembed_<u></u>triembed.org</a><br>
TriEmbed web site: <a href="http://TriEmbed.org" target="_blank">http://TriEmbed.org</a><br>
</blockquote>
</blockquote></div><br></div>