FIRMWARE UPLOAD

From lechacal
Revision as of 11:15, 24 June 2015 by Administrator (talk | contribs)
Jump to navigation Jump to search

Upload emontx Arduino sketch to the EmonWRT

Required Equipment

  • 1 screw driver
  • 1 FTDI/USB adaptor
  • A computer running the Arduino IDE

Steps

1/ Open the EMonWRT enclosure removing the two screws.

2/ Download and install the Arduino IDE. https://www.arduino.cc/en/Main/Software

3/ Open the sketch template given on the main EmonWRT page.

4/ Modify it to your needs. The main parameters to change are at the top of the sketch.

const boolean CT1  = 1;                                                 // Set to 0 to disable CT channel 1
const boolean CT2  = 1;                                                 // Set to 0 to disable CT channel 2
const boolean CT3  = 1;                                                 // Set to 0 to disable CT channel 3
const boolean TEMP = 1;                                                 // Set to 0 to disable Temperature Channel
const boolean RP1  = 1;                                                 // Set to 0 to disable Real Power on CT1 channel (requires ac/ac adaptor)
const boolean RP2  = 1;                                                 // Set to 0 to disable Real Power on CT1 channel (requires ac/ac adaptor)
const boolean RP3  = 1;                                                 // Set to 0 to disable Real Power on CT1 channel (requires ac/ac adaptor) 
const boolean VRMS = 1;                                                 // Set to 0 to disable VRMS channel (requires ac/ac adaptor)
const boolean PULS = 0;                                                 // Set to 0 to disable PULSE channel (requires TSL257 sensor)
const boolean RF   = 0;                                                 // Set to 0 to disable RFM12B forwarding.

Set the variable =0 or =1 depending on which sensor you wish to enable/disable. Note that for RP1 RP2 RP3 associated CT1 ct2 ct3 must also be enabled.


5/ Connect the FTDI adaptor to the emontx board on the FTDI port. Make sure grounds are connected together. Connect the other end of the FTDI adaptor to the USB port of the computer.

6/ Upload the sketch with the IDE.