Changes between Version 23 and Version 24 of ArduinoGateway


Ignore:
Timestamp:
2014-02-21 15:58:55 (10 years ago)
Author:
hek
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ArduinoGateway

    v23 v24  
    55== Installing the Arduino Vera plugin  == 
    66 
    7 The latest version of the Vera plugin can be found [[http://code.mios.com/git_public/mios/arduino-sensor.git/tree/HEAD:/VeraArduino/Vera?js=1|here]].\\ 
     7The latest version of the Vera plugin can be found [[https://github.com/mysensors/Vera|here]].\\ 
    88 
    99[[Image(serial.png, align=right, 300px)]] 
     
    13134. If you have your Arduino board plugged into Vera you should now configure which serial device to use. See image to the right. Set baudrate to 115200.  
    1414 
     15== Installing Arduino Gateway Software (ethernet interface) == 
     16See:  
     17 
    1518 
    1619== Installing Arduino Gateway Software == 
    17 Install all Arduino libraries found [[http://code.mios.com/git_public/mios/arduino-sensor.git/tree/HEAD:/VeraArduino/Arduino/libraries?js=1|here]] in your Arduino IDEs library location.\\ 
     20Install all Arduino libraries found [[https://github.com/mysensors/Arduino/tree/master/libraries|here]] in your Arduino IDEs library location.\\ 
    1821 
    19 Download the Arduino sketch for the gateway found [[http://code.mios.com/git_public/mios/arduino-sensor.git/tree/HEAD:/VeraArduino/Arduino/ArduinoGateway?js=1|here]] and download it to your Arduino Nano.\\ 
     22Download the Arduino sketch for the Serial Gateway version [[https://github.com/mysensors/Arduino/tree/master/SerialGateway|here]] and download it to your Arduino Nano.\\ 
     23 
     24If you prefer the Ethernet version it's found  [[https://github.com/mysensors/Arduino/tree/master/EthernetGateway|here]]. Follow connect instruction in the head of sketch. (See: http://forum.micasaverde.com/index.php/topic,23093.0.html) 
    2025 
    2126You really don't need to configure anything in this sketch. Just download it and connect the Arduino to your Vera using usb-connector. Please note that only Arduino Nano module have a serial chipset recognized automatically by Vera.  
     
    2530You only need to connect the radio chip to the Arduino. Follow the instructions in ConnectingRadioModule. 
    2631 
    27 As an option you also can connect inclusion button & indicating leds. Pin to be used by button is defined inside ArduinoGateway sketch as #define INCLUSION_MODE_PIN 3. Actually it is hard to redefine it because sketch is using the particular interrupt handler. Connect button between +5V and digital pin 3 with a 10k pull down resistor to GND (see image).  
     32As an option you also can connect inclusion button & indicating leds. Pin to be used by button is defined inside SerialGateway sketch as #define INCLUSION_MODE_PIN 3. Actually it is hard to redefine it because sketch is using the particular interrupt handler. Connect button between +5V and digital pin 3 with a 10k pull down resistor to GND (see image).  
    2833 
    29 There are 3 led types supported - RX/TX/Error. Use them to have a visual feedback during radio activity. Radial 3mm green/yellow/red leds could be a good choice. Your should use 3 resistors 270R-510R. Each led is connected by anode to +5V pin and cathode is connected through a resistor to a digital pins 6/5/4 respectively for RX/TX/Error. Pins can be re-configured inside ArduinoGateway sketch at this line: 
     34There are 3 led types supported - RX/TX/Error. Use them to have a visual feedback during radio activity. Radial 3mm green/yellow/red leds could be a good choice. Your should use 3 resistors 270R-510R. Each led is connected by anode to +5V pin and cathode is connected through a resistor to a digital pins 6/5/4 respectively for RX/TX/Error. Pins can be re-configured inside SerialGateway sketch at this line: 
    3035 
    3136[[Image(digital_button.jpg, 300px, align=right)]]