WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: ARDUINO IDE!  (Read 5832 times)

Offline ikea78

  • Newbie
  • *
  • Posts: 5
ARDUINO IDE!
« on: October 23, 2012, 11:09:53 AM »
Does anybody know of a way to run the Arduino IDE on Tiny Core?  I would like to be able to write, compile, and upload sketches to my Arduino under Tiny Core.

Thanks,

Offline AmatCoder

  • Full Member
  • ***
  • Posts: 179
    • AmatCoder Projects
Re: ARDUINO IDE!
« Reply #1 on: October 23, 2012, 12:18:46 PM »
It just need openjdk-7-jre, isn't?

Offline AmatCoder

  • Full Member
  • ***
  • Posts: 179
    • AmatCoder Projects
Re: ARDUINO IDE!
« Reply #2 on: October 23, 2012, 12:37:39 PM »
Oh, I see... java binaries are not in $PATH. You can add it:

Code: [Select]
tc@box:~/arduino-1.0.1$ export PATH=$PATH:/usr/local/openjdk-7/jre/bin
tc@box:~/arduino-1.0.1$ ./arduino



Or alternatively you can replace in line 22 of arduino script:
Code: [Select]
java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Basewith:
Code: [Select]
/usr/local/openjdk-7/jre/bin/java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Base
« Last Edit: October 23, 2012, 12:41:40 PM by AmatCoder »

Offline ikea78

  • Newbie
  • *
  • Posts: 5
Re: ARDUINO IDE!
« Reply #3 on: October 24, 2012, 08:58:23 AM »
Awesome.  Thanks for your help!!

It looks like all I will need then are the USB to Serial drivers - libftdi.tcz and libusb.tcz.

I'll try it this weekend.   Thank you!!
« Last Edit: October 24, 2012, 09:40:02 AM by ikea78 »

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10965
Re: ARDUINO IDE!
« Reply #4 on: October 24, 2012, 10:03:39 AM »
That driver has been in the kernel for a while now. Just install the usb-serial extension.
The only barriers that can stop you are the ones you create yourself.

Offline ikea78

  • Newbie
  • *
  • Posts: 5
Re: ARDUINO IDE!
« Reply #5 on: October 25, 2012, 09:34:18 AM »
I now have the Arduino IDE successfully running and able to upload sketches to my Arduino. 

Thanks Curaga and AmatCoder!!