Skip to content

This is an implementation for reading/writing IP related information (IP Address, Subnet, Gateway and DNS) from/to Arduino EEPROM. Tested on Arduino Ethernet board which has 1k of EEPROM but can be adapted to other Arduino boards.

Notifications You must be signed in to change notification settings

eddyyanto/arduino-eeprom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Arduino EEPROM Read/Write

Arduino Board Ethernet

This is an implementation for reading/writing IP related information (IP Address, Subnet, Gateway and DNS) from/to Arduino EEPROM. Tested on Arduino Ethernet board which has 1k of EEPROM but can be adapted to other Arduino boards.

API Structure:

COMMAND:PARAM:VALUE

Available serial API:

  • WRITE:IP:192.168.1.50
  • WRITE:SUBNET:255.255.255.0
  • WRITE:GATEWAY:192.168.1.254
  • WRITE:DNS:192.168.1.254
  • READ:IP
  • READ:SUBNET
  • READ:GATEWAY
  • READ:DNS
  • RESTART:NET

Assigned EEPROM Addresses:

  • IP : 0-3
  • SUBNET : 4-7
  • GATEWAY : 8-11
  • DNS : 12-15

Example:

<< Serial port COM6 opened
>> READ:IP
<< IP : 192.168.1.100
>> WRITE:IP:192.168.1.50
<< WRITE OK
>> RESTART:NET
<< RESTART OK
>> READ:IP
<< IP : 192.168.1.50

About

This is an implementation for reading/writing IP related information (IP Address, Subnet, Gateway and DNS) from/to Arduino EEPROM. Tested on Arduino Ethernet board which has 1k of EEPROM but can be adapted to other Arduino boards.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Other 100.0%