-
Notifications
You must be signed in to change notification settings - Fork 46
Installation
Anton Smirnov edited this page Jan 2, 2014
·
7 revisions
- Download arduino software, if necessary
- Clone this repository
- Copy (and confirm to replace) all the files from your local repository to 'libraries' folder in your arduino installation folder (make sure that you've replaced Firmata.cpp and Firmata.h files too as bundled implementation has bug).
- Run Arduino IDE
- Open StandardFirmataEthernet sketch (File/Examples/Firmata/StandardFirmataEthernet)
- Choose your arduino board (Tools/Board/...), if necessary
- Edit ip variable to use specific IP address
IPAddress ip(192,168,1,100);
or uncomment DHCP://#define DHCP 1
- Upload sketch
- Launch COM Monitor in Arduino IDE and remember IP address:
static IP:
Static IP: 192.168.1.100
or DHCP IP:
Requesting IP from DHCP ...
IP: 192.168.1.85
- Install ArduinoCommander android app, if necessary
- Launch application and switch to 'Ethernet' tab
- Click 'Add host' button, type host ip and port (1204 by default) and click 'OK' (edit port
int port = 1204;
in sketch if necessary) - Click on list item to start connecting
- Use ArduinoCommander as usual (watch video)