Search results

  1. G

    Hikvision isapi - email picture at set times

    Bit hard on Arduino - my coding a little slopppy :) #include <SPI.h> #include <Ethernet.h> byte mac[] = {0x90, 0xA2, 0xDA, 0x00, 0xFF, 0x1D }; / UNIQUE TO BOARD IPAddress ip(192,168,1,30); /Manufacturer recommended address IPAddress myDns(1, 1, 1, 1); /Random, not sure if I need to do...
  2. G

    Hikvision isapi - email picture at set times

    This may be of use to someone - still work in progress but this Arduino code does the basics #include <SPI.h> #include <Ethernet.h> byte mac[] = {0x90, 0xA2, 0xDA, 0x00, 0xFF, 0x1D }; / UNIQUE TO BOARD IPAddress ip(192, 168, 1, 30); /Manufacturer recommended address IPAddress myDns(1, 1...
  3. G

    Hikvision isapi - email picture at set times

    Hello, I am new here so forgive me if I have posted in the wrong place. I am using a DS-2CD2386G2-ISU/SL and an Arduino with an ethernet shield. I can sucessfully update the OSD overlay text so have got to grips with using some aspects of the API. Manually the only way I have found to email...