Skip to content

Commit 4812a70

Browse files
i6modsclaude
andcommitted
Remove ThingSpeak references from README and index.html comment
- README: IoT label, repo table description, and config snippet all updated to use generic 'ioT Server' / 'WRITE_API_KEY' wording - index.html: code comment now says 'API cap' instead of 'ThingSpeak cap' Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent de6c2ca commit 4812a70

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The dashboard displays real-time CPM and µSv/h readings with interactive time-r
6666
MCU : ESP32-C3 Super Mini
6767
Tube : SBM-20 Geiger-Müller Tube
6868
Factor: 0.0057 µSv/h per CPM
69-
IoT : ThingSpeak (field1 = CPM, field2 = µSv/h)
69+
IoT : ioT Server (field1 = CPM, field2 = µSv/h)
7070
Power : USB-C
7171
```
7272

@@ -81,7 +81,7 @@ The ESP32-C3 reads pulses from the SBM-20 tube, calculates CPM and µSv/h, then
8181
| `index.html` | Live dashboard — hosted via GitHub Pages |
8282
| `geigerduino_xiao_esp32c3/` | Firmware for XIAO ESP32-C3 |
8383
| `geigerduino_esp32c3_supermini/` | Firmware for ESP32-C3 Super Mini |
84-
| `geigerduino2_thingspeak/` | ThingSpeak variant firmware |
84+
| `geigerduino2_thingspeak/` | IoT server variant firmware |
8585
| `XIAO_ESP32C3_SETUP_REFERENCE.txt` | Wiring & board setup notes |
8686

8787
---
@@ -93,7 +93,7 @@ Open the firmware `.ino` file and set your credentials:
9393
```cpp
9494
const char* ssid = "YOUR_WIFI_SSID";
9595
const char* password = "YOUR_WIFI_PASSWORD";
96-
const char* apiKey = "YOUR_THINGSPEAK_WRITE_KEY";
96+
const char* apiKey = "YOUR_WRITE_API_KEY";
9797
```
9898

9999
In `index.html`, update the channel and read key:

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ <h3>☢ <span>Dose Rate</span> — µSv/h</h3>
604604
// gaps in data could make "1 Hour" show several hours)
605605
// days=1 → 2,880 pts at 30s intervals, well under 8,000 cap ✓
606606
// days=7&average=60 → hourly averages = 168 pts (days=7 alone = 20,160
607-
// pts, over ThingSpeak's 8,000 cap → only ~2.7 days shown)
607+
// pts, over the 8,000 pt API cap → only ~2.7 days shown)
608608
// days=30&average=1440 → daily averages = 30 pts (avoids cap entirely)
609609
'1h': { param: 'minutes=60', label: '1 Hour' },
610610
'24h': { param: 'days=1', label: '24 Hours' },

0 commit comments

Comments
 (0)