Changes between Version 128 and Version 129 of WikiStart
- Timestamp:
- 2013-11-21 23:45:50 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v128 v129 43 43 You will also get instructions on how to install the Vera plugin here. 44 44 45 === Sensors === 46 45 47 [[DallasTemperatureSensor|Dallas Temperature Sensor]] 46 48 … … 71 73 Soil moisture sensor that triggers a security sensor device in Vera. 72 74 75 === Actuators === 76 77 An actuator is something that can be controlled [from vera]. It can also be a combination of sensor and actuator like ir sender/receiver example below. 78 73 79 [[RelayActuator|Relay Actuator]] 74 80 75 81 Relay example sketch that can be controlled from Vera using a regular binary light switch device in Vera. 76 82 83 [[RelayActuatorWithButton|Relay Actuator with a button]] 84 85 Relay example sketch that can be controlled from Vera using a regular binary light switch device in Vera. It also shows how you can connect a pushbutton to the Arduino and control the relay like a light switch. The pushbutton change will also update status on vera side. 86 87 [[IrSensor|IR Sender and Receiver]] 88 89 This is a simple ir sender receiver example. The sketch will receive ir signals and update an vera variable with a unique id. This can be used to trigger scenes or other actions on vera side. The example also shows how to control IR devices by sending out ir-commands triggered from vera. 90 91 [[ServoActuator|Servo Actuator]] 92 93 Shows how you can control a servo from Vera. Can be used for controlling blinds or other things in your home. 94 95 === Other examples === 96 77 97 [[http://code.mios.com/git_public/mios/arduino-sensor.git/blob/HEAD:/VeraArduino/Arduino/libraries/Vera/examples/RelayingNode/RelayingNode.ino?js=1|Relaying Sensor Node]] 78 98 … … 81 101 [[TimeExample|Fetch Time]] 82 102 83 Example sketch that fetches local time from vera. 103 Example sketch that fetches local time from vera. Hook up an display and use it to build an Arduino clock or to schedule stuff. 84 104 85 105 [[ClearEEPROM|Clear EEPROM configuration]] 86 106 87 Sketch that can be downloaded to an arduino to clear routing information, relay node and radio id. Use this to "factory reset" your arduino if something goes bananas.107 Sketch that can be downloaded to an Arduino to clear EEPROM. The library use it for storing routing information, which relay node that should be used and the unique radio id the node has. Use this to "factory reset" your Arduino if something goes bananas. 88 108 89 109