diff options
author | SudhakarKuma | 2017-10-25 15:53:45 +0530 |
---|---|---|
committer | SudhakarKuma | 2017-10-25 15:53:45 +0530 |
commit | 09c89f6242ecf2495f86140a3f53ef4678f8563b (patch) | |
tree | 96c9a2836be76442376b166f63304a0b2adef560 /CodesArduino-for-plugin/TwoRelay/Readme | |
download | Open-Sky-Planetarium-09c89f6242ecf2495f86140a3f53ef4678f8563b.tar.gz Open-Sky-Planetarium-09c89f6242ecf2495f86140a3f53ef4678f8563b.tar.bz2 Open-Sky-Planetarium-09c89f6242ecf2495f86140a3f53ef4678f8563b.zip |
Updated OSP-plugin
Diffstat (limited to 'CodesArduino-for-plugin/TwoRelay/Readme')
-rw-r--r-- | CodesArduino-for-plugin/TwoRelay/Readme | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/CodesArduino-for-plugin/TwoRelay/Readme b/CodesArduino-for-plugin/TwoRelay/Readme new file mode 100644 index 0000000..c8e83bd --- /dev/null +++ b/CodesArduino-for-plugin/TwoRelay/Readme @@ -0,0 +1,12 @@ +This code is updated on July 18, 2017 and tested on one 2DM542 and one TB6560 driver. + +It has following features: +1. One relay is used to connect SMPS to loads (LASER and motors). This relay is driven by Arduino board. + digitalWrite(13, LOW); + +2. Second relay is turned on automatically when SMPS is found to be ON. + if(analogRead(smps)>=300) + +3. Second relay is driven by the output of step down module (4v). Earlier it was driven by Arduino board. +4. "Start Calibrate" does not switch ON second relay. + |