Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed mbed-rtos ModbusSlave232 MODSERIAL max6675 millis
includes.h@1:77e7cf856fae, 2016-07-28 (annotated)
- Committer:
- AfdhalAtiffTan
- Date:
- Thu Jul 28 13:23:10 2016 +0000
- Revision:
- 1:77e7cf856fae
First Rev_1 alpha code. May contain bugs. All sensors and actuators should be working. Doesn't use RTOS because SoftSerial can't handle it, it uses Ticker instead. Communication via MODBUS RTU on serial.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| AfdhalAtiffTan | 1:77e7cf856fae | 1 | #include "mbed.h" |
| AfdhalAtiffTan | 1:77e7cf856fae | 2 | #include "DHT.h" //humidity and air temperature |
| AfdhalAtiffTan | 1:77e7cf856fae | 3 | #include "ModbusSlave232.h" //see readme, for modbus |
| AfdhalAtiffTan | 1:77e7cf856fae | 4 | #include "millis.h" //see readme, for modbus |
| AfdhalAtiffTan | 1:77e7cf856fae | 5 | #include "SoftSerial.h" //for co2 sensor |
| AfdhalAtiffTan | 1:77e7cf856fae | 6 | #include "TSL2561_I2C.h" //for light sensor |
| AfdhalAtiffTan | 1:77e7cf856fae | 7 | #include "DS1820.h" //water temp sensor |
| AfdhalAtiffTan | 1:77e7cf856fae | 8 | |
| AfdhalAtiffTan | 1:77e7cf856fae | 9 | #include "pin_definitions.h" //anythign related to physical pins |
| AfdhalAtiffTan | 1:77e7cf856fae | 10 | #include "objects_and_variables.h" //public objs and vars |