Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
; https://docs.platformio.org/page/projectconf.html

[env:SparkFun_Thing_Plus_Artemis]
platform = apollo3blue
board = SparkFun_Thing_Plus_Artemis
platform = espressif32 @ 6.9.0
board = esp32dev
framework = arduino
lib_deps =
sparkfun/SparkFun Micro OLED Breakout@^1.3.3
Expand Down
2 changes: 1 addition & 1 deletion src/roast_meter.ino
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "MAX30105.h"

#define PIN_RESET 9
#define PIN_RESET 17
#define DC_JUMPER 1

MAX30105 particleSensor;
Expand Down
4 changes: 2 additions & 2 deletions src/roast_meter_ble.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,10 @@ void loop() {
// -- Setups --

void setupEEPROM() {
EEPROM.init();
// EEPROM.init();
// You may choose to enable more or less EEPROM -
// Default length is 1024 bytes (if setLength is not called)
EEPROM.setLength(EEPROM_MAX_LENGTH);
EEPROM.begin(EEPROM_MAX_LENGTH*4);
// Note: larger sizes will increase RAM usage and execution time

// use EEPROM.get(int index, T type) to retrieve
Expand Down
Loading