Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
#include <Wire.h> #define GOT_HERE() do {Serial.print('['); Serial.print(__LINE__); Serial.println(']'); Serial.flush();} while(0) #define SDA_PIN 4 #define SCL_PIN 5 // define memory address of blocks #define I2C_SLAVE_ADDR0 0x50 #define I2C_SLAVE_ADDR1 0x51 #define I2C_SLAVE_ADDR2 0x52 #define I2C_SLAVE_ADDR3 0x53 #define I2C_SLAVE_ADDR4 0x54 #define I2C_SLAVE_ADDR5 0x55 #define I2C_SLAVE_ADDR6 0x56 #define I2C_SLAVE_ADDR7 0x57 #define PAGE_BUFFER 16 #define NUM_OF_PAGES 16 #define MAX_MEMORY 256 bool ok = true; char addrpk[] = "{\"bc1qjaz2248t09y98vaqguq2560t7kclhesapce5sf\":\"KxdK7M6b148NsEyH6EvR91xSWN27uzCxYfhgdRznZEZfX7Kkr9Rh\"}"; uint16_t i = 0; char* data; // Read bytes from eeprom device void readEEPROM(uint8_t deviceaddr, uint16_t eepromaddr, char* data, uint8_t datalen){ Wire.beginTransmission(deviceaddr); Wire.write(eepromaddr); Wire.endTransmission(); Wire.requestFrom(deviceaddr, datalen); while( Wire.available() ) data[i++] = Wire.read(); i = 0; } void writeEEPROM(byte deviceaddr, byte eepromaddr, char* data){ uint8_t msglen = 0, bytes_left_in_page = 0, page_number = 1; uint8_t data_fit = 0, avail_eemem = 0, last_write_size = 0; uint8_t remaining_pages = 0, pages_needed = 0; // Compute the length of the string do{ msglen++; }while(data[msglen]); // Given the address to write to, we need to know how much space is // available in the current page bytes_left_in_page = PAGE_BUFFER - (eepromaddr % PAGE_BUFFER); // bytes_left_in_page = 11 // Calculate size of last write last_write_size = (msglen - bytes_left_in_page) % PAGE_BUFFER; // last_write_size = 10 // We also need to know where does the target address is located in // terms of pages, starting at page [0] page_number = eepromaddr / PAGE_BUFFER; // page_number = 7 // Therefore, for 24LC16B, there are more x pages available for write // including the page where the target address actually is remaining_pages = NUM_OF_PAGES - page_number - 1; // remaining_pages = 8 // Check how much memory there is available, starting from the // target address avail_eemem = MAX_MEMORY - ( remaining_pages * PAGE_BUFFER - bytes_left_in_page ); // avail_eemem = 139 // Check if data fits the eeprom memory capacity, starting from // target address - [1] doesn't fit, [0] it fits data_fit = msglen > avail_eemem ? 1 : 0; // data_fit = 1 // Check how many pages we need to write the string pages_needed = msglen % PAGE_BUFFER ? (msglen / PAGE_BUFFER + 1) : msglen / PAGE_BUFFER; // pages_needed = 7 // Check if data fits eeprom block memory // Also check if target addres is at the beginning of a page // if it is, then, we write 16 bytes at once and then we // keep writting the remaining string always 16 bytes at // aa time, until the end of the string if( !data_fit ) if ( !bytes_left_in_page ){ for(uint8_t i = 0; i < pages_needed; i++){ Wire.beginTransmission(deviceaddr); Wire.write(eepromaddr + i * PAGE_BUFFER); Wire.write(data[eepromaddr + i * PAGE_BUFFER], PAGE_BUFFER); Wire.endTransmission(); delay(6); // delay for page write } }else{ // We are not at the beginning of any page // Fill the remaining bytes of the current page Wire.beginTransmission(deviceaddr); Wire.write(eepromaddr); Wire.write(data[0], bytes_left_in_page); Wire.endTransmission(); delay(6); // delay for page write // Fill next (complete) pages with 16 bytes for(uint8_t i = 0; i < pages_needed - 2; i++){ Wire.beginTransmission(deviceaddr); Wire.write(eepromaddr + i * PAGE_BUFFER); Wire.write(data[bytes_left_in_page + i * PAGE_BUFFER], PAGE_BUFFER); Wire.endTransmission(); delay(6); // delay for page write } // Last write Wire.beginTransmission(deviceaddr); Wire.write((page_number + remaining_pages - 2) * PAGE_BUFFER); Wire.write(data[msglen - last_write_size], last_write_size + 1); Wire.endTransmission(); delay(6); // delay for page write } else // Turn on a red led because data is larger than eeprom memory } void setup(){ Serial.begin(115200); Wire.begin(SDA_PIN, SCL_PIN); } void loop(){ if(ok){ Wire.beginTransmission(I2C_SLAVE_ADDR7); Wire.write(0x2f); Wire.write(addrpk); Wire.endTransmission(); delay(5); /* ---- Read from EEPROM ---- */ Wire.beginTransmission(I2C_SLAVE_ADDR7); Wire.write(0x2f); Wire.endTransmission(); Wire.requestFrom(I2C_SLAVE_ADDR7, sizeof(myData)); Serial.print("Byte read: "); while( Wire.available() ){ Serial.print(Wire.read(), HEX); Serial.print(" "); } Serial.println(); ok = false; GOT_HERE(); } }
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
OoT rando seed 6/13
2 hours ago | 202.05 KB
w
19 hours ago | 0.09 KB
[email protected]
- idiot sending fr...
21 hours ago | 1.35 KB
Untitled
1 day ago | 0.03 KB
Checking in availability
1 day ago | 0.66 KB
TRMP TOKEN
1 day ago | 1.56 KB
Untitled
1 day ago | 0.16 KB
my-push Script
1 day ago | 0.19 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!