Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "etherShield.h"
- #include <OneWire.h>
- #include <DallasTemperature.h>
- OneWire ds(3); // on pin 3
- #define ONE_WIRE_BUS 3 // Data wire is plugged into digital pin 3 on the Arduino
- #define TEMPERATURE_PRECISION 12
- #define NumberOfDevices 5 // Set maximum number of devices in order to dimension
- // Array holding all Device Address arrays.
- OneWire oneWire(ONE_WIRE_BUS); // Setup a oneWire instance to communicate with any OneWire devices
- DallasTemperature sensors(&oneWire); // Pass our oneWire reference to Dallas Temperature.
- byte allAddress [NumberOfDevices][8]; // Device Addresses are 8-element byte arrays.
- // we need one for each of our DS18B20 sensors.
- byte totalDevices; // Declare variable to store number of One Wire devices
- // that are actually discovered.
- DeviceAddress Sensor1 = { 0x28, 0xF2, 0xBE, 0x43, 0x03, 0x00, 0x00, 0x63 };
- DeviceAddress Sensor2 = { 0x28, 0xC9, 0x7E, 0x43, 0x03, 0x00, 0x00, 0x54 };
- DeviceAddress Sensor3 = { 0x28, 0xE9, 0x9E, 0x43, 0x03, 0x00, 0x00, 0x38 };
- static uint8_t mymac[6] = {0x54,0x55,0x58,0x10,0x00,0x24};
- static uint8_t myip[4] = {192,168,1,15};
- static char baseurl[]="http://192.168.1.15/";
- static uint16_t mywwwport =80; // listen port for tcp/www (max range 1-254)
- #define BUFFER_SIZE 500
- static uint8_t buf[BUFFER_SIZE+1];
- #define STR_BUFFER_SIZE 22
- static char strbuf[STR_BUFFER_SIZE+1];
- EtherShield es=EtherShield();
- // prepare the webpage by writing the data to the tcp send buffer
- uint16_t print_webpage(uint8_t *buf);
- int8_t analyse_cmd(char *str);
- #define TEMP_PIN 3
- void getCurrentTemp( int *sign, int *whole, int *fract);
- void setup(){
- Serial.begin(9600);
- sensors.begin();
- // locate devices on the bus
- Serial.print("Locating devices...");
- Serial.print("Found ");
- Serial.print(sensors.getDeviceCount(), DEC);
- Serial.println(" devices.");
- totalDevices = discoverOneWireDevices(); // get addresses of our one wire devices into allAddress array
- for (byte i=0; i < totalDevices; i++)
- sensors.setResolution(allAddress[i], TEMPERATURE_PRECISION); // and set the a to d conversion resolution of each.
- // report parasite power requirements
- Serial.print("Parasite power is: ");
- if (sensors.isParasitePowerMode()) Serial.println("ON");
- else Serial.println("OFF");
- Serial.print("Device 0 Resolution: ");
- Serial.print(sensors.getResolution(Sensor1), DEC);
- Serial.println();
- Serial.print("Device 1 Resolution: ");
- Serial.print(sensors.getResolution(Sensor2), DEC);
- Serial.println();
- /*initialize enc28j60*/
- es.ES_enc28j60Init(mymac);
- es.ES_enc28j60clkout(2); // change clkout from 6.25MHz to 12.5MHz
- delay(10);
- /* Magjack leds configuration, see enc28j60 datasheet, page 11 */
- // LEDA=greed LEDB=yellow
- //
- // 0x880 is PHLCON LEDB=on, LEDA=on
- // enc28j60PhyWrite(PHLCON,0b0000 1000 1000 00 00);
- es.ES_enc28j60PhyWrite(PHLCON,0x880);
- delay(500);
- //
- // 0x990 is PHLCON LEDB=off, LEDA=off
- // enc28j60PhyWrite(PHLCON,0b0000 1001 1001 00 00);
- es.ES_enc28j60PhyWrite(PHLCON,0x990);
- delay(500);
- //
- // 0x880 is PHLCON LEDB=on, LEDA=on
- // enc28j60PhyWrite(PHLCON,0b0000 1000 1000 00 00);
- es.ES_enc28j60PhyWrite(PHLCON,0x880);
- delay(500);
- //
- // 0x990 is PHLCON LEDB=off, LEDA=off
- // enc28j60PhyWrite(PHLCON,0b0000 1001 1001 00 00);
- es.ES_enc28j60PhyWrite(PHLCON,0x990);
- delay(500);
- //
- // 0x476 is PHLCON LEDA=links status, LEDB=receive/transmit
- // enc28j60PhyWrite(PHLCON,0b0000 0100 0111 01 10);
- es.ES_enc28j60PhyWrite(PHLCON,0x476);
- delay(100);
- //init the ethernet/ip layer:
- es.ES_init_ip_arp_udp_tcp(mymac,myip,80);
- // initialize DS18B20 datapin
- digitalWrite(TEMP_PIN, LOW);
- pinMode(TEMP_PIN, INPUT); // sets the digital pin as input (logic 1)
- }
- byte discoverOneWireDevices() {
- byte j=0; // search for one wire devices and
- // copy to device address arrays.
- while ((j < NumberOfDevices) && (oneWire.search(allAddress[j]))) {
- j++;
- }
- int i=0;
- for (byte i=0; i < j; i++) {
- Serial.print("Device ");
- Serial.print(i, DEC);
- Serial.print(": ");
- printAddress(allAddress[i]); // print address from each device address arry.
- }
- Serial.print("\r\n");
- return j ; // return total number of devices found.
- }
- void printAddress(DeviceAddress addr) {
- byte i;
- for( i=0; i < 8; i++) { // prefix the printout with 0x
- Serial.print("0x");
- if (addr[i] < 16) {
- Serial.print('0'); // add a leading '0' if required.
- }
- Serial.print(addr[i], HEX); // print the actual value in HEX
- if (i < 7) {
- Serial.print(", ");
- }
- }
- //tesztelésre
- Serial.println("*****");
- for( i=0; i < 8; i++) { // prefix the printout with 0x
- Serial.print(addr[i], HEX); // print the actual value in HEX;
- }
- Serial.println("*****");
- Serial.print("\r\n");
- }
- float printTemperature(DeviceAddress addr) {
- float tempC = sensors.getTempC(addr); // read the device at addr.
- if (tempC == -127.00) {
- Serial.print("Error getting temperature");
- } else {
- Serial.println(tempC); // and print its value.
- return tempC;
- }
- }
- void loop(){
- uint16_t plen, dat_p;
- int8_t cmd;
- plen = es.ES_enc28j60PacketReceive(BUFFER_SIZE, buf);
- /*plen will ne unequal to zero if there is a valid packet (without crc error) */
- if(plen!=0){
- // arp is broadcast if unknown but a host may also verify the mac address by sending it to a unicast address.
- if(es.ES_eth_type_is_arp_and_my_ip(buf,plen)){
- es.ES_make_arp_answer_from_request(buf);
- return;
- }
- // check if ip packets are for us:
- if(es.ES_eth_type_is_ip_and_my_ip(buf,plen)==0){
- return;
- }
- if(buf[IP_PROTO_P]==IP_PROTO_ICMP_V && buf[ICMP_TYPE_P]==ICMP_TYPE_ECHOREQUEST_V){
- es.ES_make_echo_reply_from_request(buf,plen);
- return;
- }
- // tcp port www start, compare only the lower byte
- if (buf[IP_PROTO_P]==IP_PROTO_TCP_V&&buf[TCP_DST_PORT_H_P]==0&&buf[TCP_DST_PORT_L_P]==mywwwport){
- if (buf[TCP_FLAGS_P] & TCP_FLAGS_SYN_V){
- es.ES_make_tcp_synack_from_syn(buf); // make_tcp_synack_from_syn does already send the syn,ack
- return;
- }
- if (buf[TCP_FLAGS_P] & TCP_FLAGS_ACK_V){
- es.ES_init_len_info(buf); // init some data structures
- dat_p=es.ES_get_tcp_data_pointer();
- if (dat_p==0){ // we can possibly have no data, just ack:
- if (buf[TCP_FLAGS_P] & TCP_FLAGS_FIN_V){
- es.ES_make_tcp_ack_from_any(buf);
- }
- return;
- }
- if (strncmp("GET ",(char *)&(buf[dat_p]),4)!=0){
- // head, post and other methods for possible status codes see:
- // http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
- plen=es.ES_fill_tcp_data_p(buf,0,PSTR("HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n<h1>200 OK</h1>"));
- goto SENDTCP;
- }
- if (strncmp("/ ",(char *)&(buf[dat_p+4]),2)==0){
- plen=print_webpage(buf);
- goto SENDTCP;
- }
- cmd=analyse_cmd((char *)&(buf[dat_p+5]));
- if (cmd==1){
- plen=print_webpage(buf);
- }
- SENDTCP: es.ES_make_tcp_ack_from_any(buf); // send ack for http get
- es.ES_make_tcp_ack_with_data(buf,plen); // send data
- }
- }
- }
- }
- // The returned value is stored in the global var strbuf
- uint8_t find_key_val(char *str,char *key)
- {
- uint8_t found=0;
- uint8_t i=0;
- char *kp;
- kp=key;
- while(*str && *str!=' ' && found==0){
- if (*str == *kp){
- kp++;
- if (*kp == '\0'){
- str++;
- kp=key;
- if (*str == '='){
- found=1;
- }
- }
- }else{
- kp=key;
- }
- str++;
- }
- if (found==1){
- // copy the value to a buffer and terminate it with '\0'
- while(*str && *str!=' ' && *str!='&' && i<STR_BUFFER_SIZE){
- strbuf[i]=*str;
- i++;
- str++;
- }
- strbuf[i]='\0';
- }
- return(found);
- }
- int8_t analyse_cmd(char *str)
- {
- int8_t r=-1;
- if (find_key_val(str,"cmd")){
- if (*strbuf < 0x3a && *strbuf > 0x2f){
- // is a ASCII number, return it
- r=(*strbuf-0x30);
- }
- }
- return r;
- }
- uint16_t print_webpage(uint8_t *buf)
- {
- char temp_string[10];
- int i=0;
- int k=0;
- float tempC;
- //char *temp_string="100";
- uint16_t plen;
- plen=es.ES_fill_tcp_data_p(buf,0,PSTR("HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n"));
- plen=es.ES_fill_tcp_data_p(buf,plen,PSTR("<meta http-equiv=refresh content=5>"));
- plen=es.ES_fill_tcp_data_p(buf,plen,PSTR("<form METHOD=get action=\""));
- plen=es.ES_fill_tcp_data(buf,plen,baseurl);
- plen=es.ES_fill_tcp_data_p(buf,plen,PSTR("\">"));
- i=0;
- byte present = 0;
- byte type_s;
- byte data[12];
- byte addr[8];
- float celsius, fahrenheit;
- float garageTempf = 0.0;
- char garageTempc[7];
- sensors.requestTemperatures();
- char z=0;
- for (byte k=0; k < totalDevices; k++) {
- plen=es.ES_fill_tcp_data_p(buf,plen,PSTR("Sensor: ") );
- celsius=printTemperature(allAddress[k]);
- dtostrf(celsius, 3, 2, garageTempc);
- Serial.print("Sensor");
- Serial.print(k);
- Serial.print(": ");
- Serial.println(celsius);
- i=0;
- while (garageTempc[i]) {
- buf[TCP_CHECKSUM_L_P+3+plen]=garageTempc[i++];
- plen++;
- }
- plen=es.ES_fill_tcp_data_p(buf,plen,PSTR(" °C<br>") );
- }
- plen=es.ES_fill_tcp_data_p(buf,plen,PSTR("<input type=hidden name=cmd value=1>"));
- plen=es.ES_fill_tcp_data_p(buf,plen,PSTR("<input type=submit value=\"Get Temperature\"></form>"));
- plen=es.ES_fill_tcp_data_p(buf,plen,PSTR("</center>"));
- return(plen);
- }
Advertisement
Add Comment
Please, Sign In to add comment