* [gentoo-user] Arduino development on GENTOO Linux
@ 2016-04-30 5:36 Meino.Cramer
2016-04-30 9:49 ` Ming-Che Lee
2016-04-30 13:24 ` Corbin
0 siblings, 2 replies; 6+ messages in thread
From: Meino.Cramer @ 2016-04-30 5:36 UTC (permalink / raw
To: Gentoo
Hi,
WARNING! I AM __VERY__ NEW TO ARDUINO! :)
For a little project I need to program an Arduino board.
Since all needed lib/scatched/script - or whatever it
is called in case of the Arduino - are already implemented
by someone else I will not reinvent the wheel a second time :)
Therefore I need the Arduino IDE.
Here http://playground.arduino.cc/Linux/Gentoo I found
some instructions, how to install it on GENTOO (I am on
a 64 bit AMD machine...)
But I found this:
| 64-bit users:
| librxtx is reported to cause some problems on gentoo linux because of an overflow,
| causing the IDE to fail. This problem is noted at rxtx here. Please go here for fixed binaries.
Above, "here" is a link ... which cannot be resolved.
Furthermore:
| Installing the Basics:
| First you need to log in as the superuser and install some necessary packages:
| emerge -avq sun-jre-bin crossdev
but
eix sun-jre-bin
says "not found".
So I /think/ this page is a little outdated...?
An
eix arduino
gives two matches:
* dev-embedded/arduino
Available versions: 1.0.5-r1^bs {doc examples ELIBC="FreeBSD"}
Homepage: http://arduino.cc/ https://arduino.googlecode.com/
Description: An open-source AVR electronics prototyping platform
* dev-ros/rosserial_arduino
Available versions: ~0.7.1 **9999 {test PYTHON_TARGETS="python2_7" ROS_MESSAGES="+cxx eus lisp +python"}
Homepage: http://wiki.ros.org/rosserial_arduino
Description: Libraries and examples for ROSserial usage on Arduino/AVR Platforms
If the first one is the IDE it is outdated.
The current version is 1.6.8.
The second match seems not to be relevant in my case.
Question:
What software do I need for programming an Arduino board "the arduino
way to do it" -- preverable installing it "the GENTOO way to do it"
(read: I like sources and compilations, I dont like bin blobs from
unknown sources that much...)
Thank you very much for any help in advance!
Have a nice weekend! :)
Best regards,
Meino
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] Arduino development on GENTOO Linux
2016-04-30 5:36 [gentoo-user] Arduino development on GENTOO Linux Meino.Cramer
@ 2016-04-30 9:49 ` Ming-Che Lee
2016-04-30 10:13 ` Meino.Cramer
2016-04-30 13:24 ` Corbin
1 sibling, 1 reply; 6+ messages in thread
From: Ming-Che Lee @ 2016-04-30 9:49 UTC (permalink / raw
To: gentoo-user
Hi Meino
Am 30.04.2016 um 07:36 schrieb Meino.Cramer@gmx.de:
> Hi,
>
> WARNING! I AM __VERY__ NEW TO ARDUINO! :)
>
> For a little project I need to program an Arduino board.
> Since all needed lib/scatched/script - or whatever it
> is called in case of the Arduino - are already implemented
> by someone else I will not reinvent the wheel a second time :)
>
> Therefore I need the Arduino IDE.
>
I am also new to Arduino, so here is what I did last week to install the
latest Arduino IDE 1.6.8.
I started with installing Arduino IDE 1.0.5 from GENTOO:
$ emerge arduino
It pulled in all needed dependent packages for the IDE. Look carefully
at the information displayed at the end of the emerge. You have to run
$ crossdev -s4 avr
to have the Tool-Chain for Arduino compiled.
Unfortunately I could not use IDE 1.0.5 because it didn't show some
highlighted commands in the IDE correctly. So I downloaded IDE 1.6.8 and
unzipped it in /opt. Next step was to run the installer
$ /opt/arduino-1.6.8/install.sh
To start IDE 1.6.8: /opt/arduino-1.6.8/arduino or via menu item.
Hope this helps.
Beste regards,
Ming-Che
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] Arduino development on GENTOO Linux
2016-04-30 9:49 ` Ming-Che Lee
@ 2016-04-30 10:13 ` Meino.Cramer
2016-04-30 13:13 ` Ming-Che Lee
0 siblings, 1 reply; 6+ messages in thread
From: Meino.Cramer @ 2016-04-30 10:13 UTC (permalink / raw
To: gentoo-user
Ming-Che Lee <Ming-Che.Lee@gmx.net> [16-04-30 12:04]:
> Hi Meino
>
> Am 30.04.2016 um 07:36 schrieb Meino.Cramer@gmx.de:
> > Hi,
> >
> > WARNING! I AM __VERY__ NEW TO ARDUINO! :)
> >
> > For a little project I need to program an Arduino board.
> > Since all needed lib/scatched/script - or whatever it
> > is called in case of the Arduino - are already implemented
> > by someone else I will not reinvent the wheel a second time :)
> >
> > Therefore I need the Arduino IDE.
> >
>
> I am also new to Arduino, so here is what I did last week to install the
> latest Arduino IDE 1.6.8.
>
> I started with installing Arduino IDE 1.0.5 from GENTOO:
>
> $ emerge arduino
>
> It pulled in all needed dependent packages for the IDE. Look carefully
> at the information displayed at the end of the emerge. You have to run
>
> $ crossdev -s4 avr
>
> to have the Tool-Chain for Arduino compiled.
>
> Unfortunately I could not use IDE 1.0.5 because it didn't show some
> highlighted commands in the IDE correctly. So I downloaded IDE 1.6.8 and
> unzipped it in /opt. Next step was to run the installer
>
> $ /opt/arduino-1.6.8/install.sh
>
> To start IDE 1.6.8: /opt/arduino-1.6.8/arduino or via menu item.
>
> Hope this helps.
>
> Beste regards,
>
> Ming-Che
>
>
Hi Ming-Che,
WHOW! :)
Thanks a LOT for the explanations! 8)
That will help to start programming the Arduino!
One question:
Did you download the arduino-1.6.8 binary distribution or
the sources and compile those locally on your GENTOO box?
Best regards
Meino
PS: In a few minutes I will send you a mail offlist
with some infos about what I have found and for what
I will use the arduino. I would be happy, if you
can use it for you arduino project also!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] Arduino development on GENTOO Linux
2016-04-30 10:13 ` Meino.Cramer
@ 2016-04-30 13:13 ` Ming-Che Lee
2016-04-30 13:26 ` Meino.Cramer
0 siblings, 1 reply; 6+ messages in thread
From: Ming-Che Lee @ 2016-04-30 13:13 UTC (permalink / raw
To: gentoo-user
Hi Meino
Am 30.04.2016 um 12:13 schrieb Meino.Cramer@gmx.de:
> One question:
> Did you download the arduino-1.6.8 binary distribution or
> the sources and compile those locally on your GENTOO box?
I wanted a quick start so I downloaded the binary distribution:
https://www.arduino.cc/download_handler.php?f=/arduino-1.6.8-linux64.tar.xz
It's good enough for me to start with as a newbie to Arduino :-)
> PS: In a few minutes I will send you a mail offlist
> with some infos about what I have found and for what
> I will use the arduino. I would be happy, if you
> can use it for you arduino project also!
Thank you for the infos!
Best regards,
Ming-Che
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] Arduino development on GENTOO Linux
2016-04-30 5:36 [gentoo-user] Arduino development on GENTOO Linux Meino.Cramer
2016-04-30 9:49 ` Ming-Che Lee
@ 2016-04-30 13:24 ` Corbin
1 sibling, 0 replies; 6+ messages in thread
From: Corbin @ 2016-04-30 13:24 UTC (permalink / raw
To: gentoo-user
On 04/30/2016 12:36 AM, Meino.Cramer@gmx.de wrote:
>
> but
> eix sun-jre-bin
> says "not found".
>
> So I /think/ this page is a little outdated...?
>
All of the Java 1.6 JREs/JDKs have been depreciated.
more info ... https://packages.gentoo.org/packages/virtual/jdk
Replacement(s) : ( Java 1.8 )
"dev-java/oracle-jdk-bin" OR "dev-java/oracle-jre-bin"
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [gentoo-user] Arduino development on GENTOO Linux
2016-04-30 13:13 ` Ming-Che Lee
@ 2016-04-30 13:26 ` Meino.Cramer
0 siblings, 0 replies; 6+ messages in thread
From: Meino.Cramer @ 2016-04-30 13:26 UTC (permalink / raw
To: gentoo-user
Hi Ming-Che Lee
> Hi Meino
>
> Am 30.04.2016 um 12:13 schrieb Meino.Cramer@gmx.de:
>
> > One question:
> > Did you download the arduino-1.6.8 binary distribution or
> > the sources and compile those locally on your GENTOO box?
>
> I wanted a quick start so I downloaded the binary distribution:
>
> https://www.arduino.cc/download_handler.php?f=/arduino-1.6.8-linux64.tar.xz
>
> It's good enough for me to start with as a newbie to Arduino :-)
...I will take them too. :)
>
> > PS: In a few minutes I will send you a mail offlist
> > with some infos about what I have found and for what
> > I will use the arduino. I would be happy, if you
> > can use it for you arduino project also!
>
> Thank you for the infos!
...you are welcome! :)
> Best regards,
>
> Ming-Che
>
Best regards,
Meino
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-04-30 13:27 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-30 5:36 [gentoo-user] Arduino development on GENTOO Linux Meino.Cramer
2016-04-30 9:49 ` Ming-Che Lee
2016-04-30 10:13 ` Meino.Cramer
2016-04-30 13:13 ` Ming-Che Lee
2016-04-30 13:26 ` Meino.Cramer
2016-04-30 13:24 ` Corbin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox