using WRITE to save SERIN strings from PINK module
adamblake
Posts: 3
Is it possible to read a string from the PINK module via SERIN
and store the string in EEPROM via the WRITE command with a bs2
I'm running out of variable RAM really fast and I am hoping
I can store a string into an EEPROM memory location directly.
Is this even possible? I'm a bit unfamiliar with the flexibility of
SERIN and new to the bs2 in general.
Thanks for any help,
-Adam
and store the string in EEPROM via the WRITE command with a bs2
I'm running out of variable RAM really fast and I am hoping
I can store a string into an EEPROM memory location directly.
Is this even possible? I'm a bit unfamiliar with the flexibility of
SERIN and new to the bs2 in general.
Thanks for any help,
-Adam
Comments
For example:
mybyte VAR Byte(3)
mybyte(0) ="A"
mybyte(1) ="B"
mybyte(2) ="C"
WRITE 0, mybyte(0)
WRITE 1, mybyte(1)
WRITE 2, mybyte(2)
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Don't worry. Be happy