Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <EEPROM.h>
- float teste = 0;
- float xpto = 123.45;
- void setup()
- {
- Serial.begin(9600);
- EEPROM.put(0, xpto);
- EEPROM.get(0, teste);
- Serial.println(teste);
- }
- void loop()
- {
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement