Thermoduino Pro is the Pro version of my first android application "Thermoduino" and is used to control the temperature in your house from anywhere in the world. The new version comes with a new arduino sketch which can handle timers you can set in the app and show extra sensor info like humidity etc.
You need:
1 arduino Mega
1 W5100 ethernet shield
1 DHT 22
1 two channel relay card
some wiring EEPROMEX Library DHT Library RTC Library
Very nice but since you don't share the code or even the app why are you here trying to sell your app?
This is a forum community not a store for you advertise your apps
HugoPT:
Very nice but since you don't share the code or even the app why are you here trying to sell your app?
This is a forum community not a store for you advertise your apps
Hi HugoPT,
Thanks for you feedback. All my Arduino code is available online and all Android apps are or will be available for free in Google Play. Since I began developing projects for Arduino I have spend about 400 hours work, 500 euro's on testing hardware and 100 euro on site fee's. People downloaded my app's and sketch more than 55.000 times and all I got for it 160 euro. Fine for me but I wont call it a store. The paid versions are only a way to support the development and wont get me rich.
I decided not to share my Android code yet, I hope you respect that.
I have added security to your code, so only configured ip adresses can acces the thermoduino, if you have the thermoduino connected to the internet like me, otherwise everybody can controll my home thermostat by executing http get commands
maybe you could add, that from your app, these allowed ip adresses are stored in EEPROM and can be added from your app?
these are the needed code changes:
// Voor toegang tot Thermoduino
IPAddress ipBuf;
// Geef vertrouwde IP adressen op vanaf waar je de thermoduino kunt bedienen
IPAddress Work (xxx,xxx,xxx,xxx); // <== INSTELLEN
IPAddress Allowed1 (xxx,xxx,xxx,xxx); // <== INSTELLEN
IPAddress Allowed2 (xxx,xxx,xxx,xxx); // <== INSTELLEN
void run_eth()
{
EthernetClient client = server.available();
if (client)
{
// Mijn Code
/********** Beveilig Toegang **********/
ipBuf = client.remoteIP();
// Stel thuis netwerk IP adres in dus bv 192.168.2 (alleen 1e 3 nummers: bv 192.168.2) en stel andere toegestane IP adressen in
if (((ipBuf[0] == 192) && (ipBuf[1] == 168) && (ipBuf[2] == 2)) or (ipBuf == Work) or (ipBuf == Allowed1) or (ipBuf == Allowed2))
{
// Einde Mijn Code
no matching function for call to RTC_DS1307::begin(DATA TIME)
sketch_oct06a.ino: In function 'void start_rtc()':
sketch_oct06a:362: error: no matching function for call to 'RTC_DS1307::begin(DateTime)'
C:\Program Files (x86)\Arduino\libraries\RTClib/RTClib.h:31: note: candidates are: static uint8_t RTC_DS1307::begin()
The error states you want to pass a parameter to the begin function, but the used library's begin() function does not accept parameters.
Open the .h file of the RTC library and look what it uses for parameters (or none).
Hi,
when arduino and wifi lose power supply and after power supply is restored but internet doesn't working then application Thermoduino pro loses its meaning because it don't have RTC. Application is still searching for connection and for that thermostat lost its functionality. Do somebody know edit program so RTC run hardware pins SCL, SDA not from internet? What library I have to use? (any link???) I have I2C RTC DS1307 AT24C32 Real Time Clock Module for Arduino 51 AVR ARM PIC. http://www.aliexpress.com/item/Free-Shipping-I2C-RTC-DS1307-AT24C32-Real-Time-Clock-Module-for-Arduino-51-AVR-ARM-PIC/1786267095.html My program is in supplement.
email: ambroz666@gmail.com
hi, i saw in your scheme that you also included n lcd + keypad shield but in the sketch i don't find any trace of code regarding lcd: do you have another version which includes also the lcd display?