Skip to content

Commit 8300395

Browse files
committed
2 parents 7cf2c24 + ebd1802 commit 8300395

File tree

2 files changed

+4
-22
lines changed

2 files changed

+4
-22
lines changed

.github/workflows/build_documentation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
112112
- name: Deploy to github pages
113113
if: "(github.event_name == 'release' && github.event.action == 'published') || (github.event_name == 'workflow_dispatch' && github.event.inputs.publish == 'true')"
114-
uses: peaceiris/actions-gh-pages@v3.8.0
114+
uses: peaceiris/actions-gh-pages@v3.9.0
115115
with:
116116
github_token: ${{ secrets.GITHUB_TOKEN }}
117117
publish_dir: ${{ github.workspace }}/code_docs/ModularSensorsDoxygen/m.css

examples/DRWI_Mayfly1_WiFi/DRWI_Mayfly1_WiFi.ino

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*
55
* This example shows proper settings for the following configuration:
66
*
7-
* Mayfly v1.0 board
8-
* EnviroDIY SIM7080 LTE module (with Hologram SIM card)
7+
* Mayfly v1.x board
8+
* EnviroDIY ESP32 Wifi Bee module
99
* Hydros21 CTD sensor
1010
*
1111
* @author Sara Geleskie Damiano <sdamiano@stroudcenter.org>
@@ -96,7 +96,7 @@ const int32_t modemBaud = 115200; // Communication speed of the modem
9696
// Example pins here are for a EnviroDIY ESP32 Bluetooth/Wifi Bee with
9797
// Mayfly 1.1
9898
const int8_t modemVccPin = 18; // MCU pin controlling modem power
99-
const int8_t modemResetPin = A5; // MCU pin connected to modem reset pin
99+
const int8_t modemResetPin = -1; // MCU pin connected to modem reset pin
100100
const int8_t modemLEDPin = redLED; // MCU pin connected an LED to show modem
101101
// status
102102

@@ -136,20 +136,6 @@ MaximDS3231 ds3231(1);
136136
/** End [ds3231] */
137137

138138

139-
// ==========================================================================
140-
// Everlight ALS-PT19 Ambient Light Sensor
141-
// Built in on Mayfly 1.x
142-
// ==========================================================================
143-
/** Start [everlight_alspt19] */
144-
#include <sensors/EverlightALSPT19.h>
145-
146-
// Create a Everlight ALS-PT19 sensor object
147-
// For an EnviroDIY Mayfly, you can use the abbreviated version
148-
const uint8_t alsNumberReadings = 10;
149-
EverlightALSPT19 alsPt19(alsNumberReadings);
150-
/** End [everlight_alspt19] */
151-
152-
153139
// ==========================================================================
154140
// Sensirion SHT4X Digital Humidity and Temperature Sensor
155141
// Built in on Mayfly 1.x
@@ -194,8 +180,6 @@ Variable* variableList[] = {
194180
new MeterHydros21_Temp(&hydros), // Temperature (Meter_Hydros21_Temp)
195181
new SensirionSHT4x_Humidity(&sht4x), // Relative humidity (Sensirion_SHT40_Humidity)
196182
new SensirionSHT4x_Temp(&sht4x), // Temperature (Sensirion_SHT40_Temperature)
197-
new EverlightALSPT19_Illuminance(&alsPt19), // Illuminance (Everlight_AnalogALS_Illuminance)
198-
new MaximDS3231_Temp(&ds3231), // Temperature (Maxim_DS3231_Temp)
199183
new ProcessorStats_Battery(&mcuBoard), // Battery voltage (EnviroDIY_Mayfly_Batt)
200184
new Modem_SignalPercent(&modem), // Percent full scale (EnviroDIY_LTEB_SignalPercent)
201185
};
@@ -224,8 +208,6 @@ const char* UUIDs[] = // UUID array for device sensors
224208
"12345678-abcd-1234-ef00-1234567890ab", // Temperature (Meter_Hydros21_Temp)
225209
"12345678-abcd-1234-ef00-1234567890ab", // Relative humidity (Sensirion_SHT40_Humidity)
226210
"12345678-abcd-1234-ef00-1234567890ab", // Temperature (Sensirion_SHT40_Temperature)
227-
"12345678-abcd-1234-ef00-1234567890ab", // Illuminance (Everlight_AnalogALS_Illuminance)
228-
"12345678-abcd-1234-ef00-1234567890ab", // Temperature (Maxim_DS3231_Temp)
229211
"12345678-abcd-1234-ef00-1234567890ab", // Battery voltage (EnviroDIY_Mayfly_Batt)
230212
"12345678-abcd-1234-ef00-1234567890ab", // Percent full scale (EnviroDIY_LTEB_SignalPercent)
231213
};

0 commit comments

Comments
 (0)