Hello Folks,
in case anyone of you is looking for a decent C tutorial - the
folks from ByteGarage in Italy currently has their large C
programming video course, totally for free:
It is still free for two days, so maybe collect it.
Tam
With best regards
Tam HANNA
Enjoy electronics? Join 19k7 other followers by visiting the Crazy Electronics Lab at
On 2021. 11. 07. 21:05, peter bunge
wrote:
toggle quoted message
Show quoted text
Thanks John; I have ruled out Python for now but
may?learn it some?day.?
20 years using C does not make me a programmer but I have
built many successful projects with the tools I have.
Many seem to be missing the point that I am looking for the
shortest learning curve. The two missing items are a C
compiler with a nice IDE to run on Windows and learning
graphics with it.
I understand the following (TurboC)
/*
Simple example to draw circle */
#¾±²Ô³¦±ô³Ü»å±ð¡±²µ°ù²¹±è³ó¾±³¦²õ.³ó¡±
#¾±²Ô³¦±ô³Ü»å±ð¡±³¦´Ç²Ô¾±´Ç.³ó¡±
void
main()
{
int
gd=DETECT,gm;
initgraph(&gd,
&gm, ¡°c:/tc/bgi ¡°);
circle(330,180,100);
getch();
closegraph();
}
I
just need to get started with software running on a Windows
computer to?write programs like that.? I have done similar
on a low res LCD with a PIC.
The
best advice so far was the free MS Visual C which I will try
to load. There is a very nice Tutorial that I partly
completed on?the version that was not free.?
I
hope the free version is as good.
Is
anyone interested in helping with a PC controlling an HP
Impedance analyzer?
Peter
On Sun, Nov 7, 2021 at 1:38 PM
John Griessen <
john@...> wrote:
On 11/7/21 09:39, peter bunge wrote:
> I am not a programmer and like to keep things simple.
> The reason I like the PIC over Arduino and RaspberryPi is
that I can make custom PCBs and program the pins on the PIC to
be
> convenient.
micropython on a STM32F4 or others might interest you.? It's
still a learning curve.? STM32's have lots of GPIOs ports and
such
that can be remapped? in various alternate ways, but not pin
by pin.? The power and grounds and XTAL in/out don't remap,
but some
redundant ones can be left off.