Setup:
ESP-01
External breadboard power supply
v0.9.5.2 AT Firmware (have tried writing it to 0x00000 and 0x40000 with the same result)
My Code:
#include <OneWire.h>
#include <DallasTemperature.h>
// Data wire is plugged into pin 2 on the Arduino
#define ONE_WIRE_BUS 2
// Setup a oneWire instance to communicate with any OneWire devices
// (not just Maxim/Dallas temperature ICs)
OneWire oneWire(ONE_WIRE_BUS);
// Pass our oneWire reference to Dallas Temperature.
DallasTemperature sensors(&oneWire);
//#define BLYNK_PRINT Serial // Comment this out to disable prints and save space
//#include <ESP8266WiFi.h>
//#include <BlynkSimpleEsp8266.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
//char auth[] = "AuthCode";
float tempF = 0;
float tempC = 0;
int i = 0;
void setup(void)
{
// start serial port
Serial.begin(9600);
Serial.println("");
Serial.println("Dallas Temperature IC Control Library Demo");
// Start up the library
sensors.begin();
//Blynk.begin(auth, "SSID", "PWD");
}
void loop(void)
{
i++;
//Blynk.run();
// call sensors.requestTemperatures() to issue a global temperature
// request to all devices on the bus
Serial.print("Requesting temperatures...");
sensors.requestTemperatures(); // Send the command to get temperatures
Serial.print("DONE - ");
Serial.print("Temperature for Device 1 is: ");
tempC = sensors.getTempCByIndex(0);// Why "byIndex"?
// You can have more than one IC on the same bus.
// 0 refers to the first IC on the wire
if (tempC != 85) {
tempF = ((tempC * 1.8) + 32);
Serial.print(tempF);
Serial.print(" - Reading number: ");
Serial.println(i);
//Send data to Blynk at V0
//Blynk.virtualWrite(0, tempF);
}
}Output:
Dallas Temperature IC Control Library Demo
Requesting temperatures...DONE - Temperature for Device 1 is: 70.47 - Reading number: 1
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 2
Requesting temperatures...DONE - Temperature for Device 1 is: 70.47 - Reading number: 3
Requesting temperatures...DONE - Temperature for Device 1 is: 70.47 - Reading number: 4
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 5
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 6
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 7
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 8
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 9
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 10
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 11
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 12
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 13
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 14
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 15
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 16
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 17
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 18
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 19
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 20
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 21
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 22
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 23
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 24
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 25
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 26
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 27
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 28
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 29
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 30
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 31
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 32
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 33
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 34
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 35
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 36
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 37
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 38
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 39
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 40
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 41
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 42
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 43
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 44
Requesting temperatures...DONE - Temperature for Device 1 is: 70.36 - Reading number: 45
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 46
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 47
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 48
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 49
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 50
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 51
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 52
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 53
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 54
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 55
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 56
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 57
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 58
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 59
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 60
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 61
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 62
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 63
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 64
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 65
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 66
Requesting temperatures...DONE - Temperature for Device 1 is: 70.70 - Reading number: 67
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 68
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 69
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 70
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 71
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 72
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 73
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 74
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 75
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 76
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 77
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 78
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 79
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 80
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 81
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 82
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 83
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 84
Requesting temperatures...DONE - Temperature for Device 1 is: 70.70 - Reading number: 85
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 86
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 87
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 88
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 89
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 90
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 91
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 92
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 93
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 94
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 95
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 96
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 97
Requesting temperatures...DONE - Temperature for Device 1 is: 70.70 - Reading number: 98
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 99
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 100
Requesting temperatures...DONE - Temperature for Device 1 is: 70.70 - Reading number: 101
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 102
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 103
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 104
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 105
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 106
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 107
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 108
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 109
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 110
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 111
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 112
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 113
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 114
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 115
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 116
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 117
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 118
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 119
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 120
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 121
Requesting temperatures...DONE - Temperature for Device 1 is: 70.70 - Reading number: 122
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 123
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 124
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 125
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 126
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 127
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 128
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 129
Requesting temperatures...DONE - Temperature for Device 1 is: 70.36 - Reading number: 130
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 131
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 132
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 133
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 134
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 135
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 136
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 137
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 138
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 139
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 140
Requesting temperatures...DONE - Temperature for Device 1 is: 70.70 - Reading number: 141
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 142
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 143
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 144
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 145
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 146
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 147
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 148
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 149
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 150
Requesting temperatures...ÿDONE - Temperature for Device 1 is: Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 152
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 153
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 154
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 155
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 156
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 157
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 158
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 159
Requesting temperatures...DONE - Temperature for Device 1 is: 70.93 - Reading number: 160
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 161
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 162
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 163
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 164
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 165
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 166
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 167
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 168
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 169
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 170
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 171
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 172
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 173
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 174
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 175
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 176
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 177
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 178
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 179
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 180
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 181
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 182
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 183
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 184
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 185
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 186
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 187
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 188
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 189
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 190
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 191
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 192
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 193
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 194
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 195
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 196
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 197
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 198
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 199
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 200
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 201
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 202
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 203
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 204
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 205
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 206
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 207
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 208
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 209
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 210
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 211
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 212
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 213
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 214
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 215
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 216
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 217
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 218
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 219
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 220
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 221
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 222
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 223
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 224
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 225
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 226
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 227
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 228
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 229
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 230
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 231
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 232
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 233
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 234
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 235
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 236
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 237
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 238
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 239
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 240
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 241
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 242
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 243
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 244
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 245
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 246
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 247
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 248
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 249
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 250
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 251
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 252
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 253
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 254
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 255
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 256
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 257
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 258
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 259
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 260
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 261
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 262
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 263
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 264
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 265
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 266
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 267
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 268
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 269
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 270
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 271
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 272
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 273
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 274
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 275
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 276
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 277
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 278
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 279
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 280
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 281
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 282
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 283
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 284
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 285
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 286
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 287
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 288
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 289
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 290
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 291
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 292
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 293
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 294
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 295
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 296
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 297
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 298
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 299
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 300
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 301
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 302
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 303
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 304
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 305
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 306
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 307
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 308
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 309
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 310
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 311
Requesting temperatures...DONE - Temperature for Device 1 is: 70.47 - Reading number: 312
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 313
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 314
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 315
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 316
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 317
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 318
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 319
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 320
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 321
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 322
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 323
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 324
Requesting temperatures...DONE - Temperature for Device 1 is: 70.36 - Reading number: 325
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 326
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 327
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 328
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 329
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 330
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 331
Requesting temperatures...DONE - Temperature for Device 1 is: 70.47 - Reading number: 332
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 333
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 334
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 335
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 336
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 337
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 338
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 339
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 340
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 341
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 342
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 343
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 344
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 345
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 346
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 347
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 348
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 349
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 350
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 351
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 352
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 353
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 354
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 355
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 356
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 357
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 358
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 359
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 360
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 361
Requesting temperatures...DONE - Temperature for Device 1 is: 70.59 - Reading number: 362
Requesting temperatures...
Exception (0):
epc1=0x4020679b epc2=0x00000000 epc3=0x00000000 excvaddr=0x00000064 depc=0x00000000
ctx: sys
sp: 3ffff640 end: 3fffffb0 offset: 01a0
>>>stack>>>
3ffff7e0: 40101d55 40101d52 af9f81ad aa51f47d
3ffff7f0: 400005e1 83e74ba8 e7883431 a018d083
3ffff800: 4020679b 00000033 0000001e 80cbab61
3ffff810: 0000001b 04000102 00000000 00000001
3ffff820: fbf8ffff 04000002 3feffe00 00000100
3ffff830: 0000001a 00000018 04000102 40101d3c
3ffff840: 3fffc100 00000001 00000000 00000000
3ffff850: fe2595c6 ca911a17 f3ae0f30 9a362f4d
3ffff860: dfd1d0e7 a731f11c 5eb30288 497762be
3ffff870: eee5258c 9a9ace98 5c342cae 7c45ac6f
3ffff880: 1ae61b00 fcaff7ea cd89a253 5340e7b8
3ffff890: d90f1372 f73814e5 2cb7a841 b277466c
3ffff8a0: 962f3903 da68c3fe ecea1a56 32ea1ad6
3ffff8b0: 5e095f9a 7d89584c e76049b0 75ab9b4b
3ffff8c0: 549472e6 5c6372ef 822c50fe f83e31cc
3ffff8d0: 93556730 2041da3b 890d0d88 32fd76ea
3ffff8e0: f6942163 d001e3fd b89e61db 5b82eb6f
3ffff8f0: 40101d55 40101d52 43cd7978 d77e73eb
3ffff900: 400005e1 2d2b9b4b d8cd2759 74f780f9
3ffff910: 4020679b 00000033 0000001e 088cf3f1
3ffff920: 0000001b 04000102 00000000 00000001
3ffff930: fbf8ffff 04000002 3feffe00 00000100
3ffff940: 0000001a 00000018 04000102 40101d3c
3ffff950: 3fffc100 00000001 00000000 00000000
3ffff960: aa3b58e9 692dd9bf ef122840 00000000
3ffff970: 7ab6033a 00000000 3ffff9f2 4021303a
3ffff980: 3ffff9f2 0000000c 00000000 00000000
3ffff990: 13b71a79 00000000 00000085 ffffffff
3ffff9a0: 00000002 00000000 00000007 40008320
3ffff9b0: ffffffff 00000000 000000f5 ffffffff
3ffff9c0: ffffb8f5 00000000 40213216 ffffffff
3ffff9d0: 3ffed900 fffffffd e982a3e2 8c4be91f
3ffff9e0: 00000000 00000000 00000001 40006545
3ffff9f0: 00000000 00000000 00000000 40006545
3ffffa00: 40101d55 40101d52 00000020 40103d37
3ffffa10: 400005e1 3ffecb58 00000000 40213412
3ffffa20: 4020679b 00000033 0000001e 00000000
3ffffa30: 0000001b 04000102 00000000 00000001
3ffffa40: fbf8ffff 04000002 3feffe00 00000100
3ffffa50: 0000001a 00000018 04000102 40101d3c
3ffffa60: 3fffc100 00000001 00000000 00000000
3ffffa70: 4000b570 4020e901 0000000e ffffff80
3ffffa80: 00000000 00000000 00000000 00000000
3ffffa90: 00000000 00000000 00000000 00000000
3ffffaa0: 00000000 00000000 00000000 00000000
3ffffab0: 00000000 00000000 00000000 00000000
3ffffac0: 4000b570 202964fc 5f2d3a00 61e14b40
3ffffad0: 00000000 00000000 00000000 00000000
3ffffae0: 00000000 00000000 00000000 00000000
3ffffaf0: 00000000 00000000 00000000 00000000
3ffffb00: 00000000 00000000 00000000 00000000
3ffffb10: 40101d55 40101d52 ab42ca80 10f06ee6
3ffffb20: 400005e1 a8f59d60 4327d606 9416e21a
3ffffb30: 4020679b 00000033 0000001e c14007c8
3ffffb40: 0000001b 04000102 00000000 00000001
3ffffb50: fbf8ffff 04000002 3feffe00 00000100
3ffffb60: 0000001a 00000018 04000102 40101d3c
3ffffb70: 3fffc100 00000001 00000000 00000000
3ffffb80: 00000000 00000000 00000000 00000000
3ffffb90: 3d21c382 71000ec7 b922f27b 1da6465a
3ffffba0: 26c826be 0fb16c96 d21e3622 758dd75b
3ffffbb0: f9796406 2b9a0290 d6fd0a80 b6604a88
3ffffbc0: 4000b5f9 00000008 00000038 3ffffca0
3ffffbd0: 00000008 3ffffca0 787d4fbb e185235a
3ffffbe0: 5d7eb2ef aebf5bd7 3c89046b da1e9d5c
3ffffbf0: 87c9c1b7 5c81b27c b1b7f6d1 8da6eeab
3ffffc00: 719e85ba e9b6805a 92b67493 d148b315
3ffffc10: 1831590a 2fc85056 6625033f d3a1f04d
3ffffc20: 40101d55 40101d52 4010256c 3ffe8c20
3ffffc30: 400005e1 00000000 9355ad67 0000004e
3ffffc40: 4020679b 00000033 0000001e 3ffe8bf0
3ffffc50: 0000001b 04000102 00000000 00000001
3ffffc60: fbf8ffff 04000002 3feffe00 00000100
3ffffc70: 0000001a 00000018 04000102 40101d3c
3ffffc80: 3fffc100 00000001 00000000 00000000
3ffffc90: 4010301d 3ffe8c20 3ffec810 7fffffff
3ffffca0: 401026c6 00040000 00000000 7fffffff
3ffffcb0: 00000022 401026c3 00040000 3ffed0c8
3ffffcc0: 3ffe8c20 40104e22 00000000 00000000
3ffffcd0: 00000000 00000000 0000001f 40101345
3ffffce0: 00000000 00000000 0000001f 40101345
3ffffcf0: 4000050c 00000030 00000018 ffffffff
3ffffd00: 40215dfe 00000030 00000018 ffffffff
3ffffd10: 40215dd9 00010083 00010000 00010083
3ffffd20: 00000014 00000028 00000000 fff8ffff
3ffffd30: 40101d55 40101d52 00000000 3fff03c0
3ffffd40: 400005e1 00000000 0000001f 40101345
3ffffd50: 40206798 00000033 0000001e 00000030
3ffffd60: 40101d5b 04000102 00000000 00000001
3ffffd70: fbf8ffff 04000002 3feffe00 00000100
3ffffd80: 0000001a 00000018 04000102 40101d3c
3ffffd90: 3fffc100 00000001 0000001c 00000000
3ffffda0: 3ffedd24 3ffee310 3ffe98fc 00000030
3ffffdb0: 00000000 00000000 00000001 00000059
3ffffdc0: 3ffe8c20 401038de 00000001 00000000
3ffffdd0: 00000000 401036af 00000000 00000002
3ffffde0: 3ffe8c20 00000001 00000002 40103d37
3ffffdf0: 401035a8 3ffec810 00000002 3ffe8bf0
3ffffe00: 00000001 401028f5 3ffec810 3ffed0c8
3ffffe10: 40102d4e 3ffe8c20 3ffe8bf0 00000000
3ffffe20: 00000000 40102c0b 3ffe8c20 00000008
3ffffe30: 4020a8aa 3ffec810 3fff0778 3ffec810
3ffffe40: 40101d55 40101d52 3ffec810 7fffffff
3ffffe50: 400005e1 00040000 00000000 7fffffff
3ffffe60: 4021271c 00000030 0000001e 3fff0a10
3ffffe70: 00000000 00000001 00000000 00000000
3ffffe80: 0000000b 00000000 3ffe9170 00000000
3ffffe90: ffffffff 3fffc6fc 0000004e ffffffff
3ffffea0: 00000000 00000001 3ffe801c 0000001c
3ffffeb0: 40000f68 00000030 0000001e ffffffff
3ffffec0: 40000f58 00000000 00000020 00000000
3ffffed0: 3ffe9730 c142d0bc 3ff20a00 c0000000
3ffffee0: 00001000 00000000 0000004e 3fffdab0
3ffffef0: 00000000 3fffdcc0 3ffe9130 00000030
3fffff00: 00000000 3ffeabec 00000020 40103d37
3fffff10: 4020bf26 3ffec860 3ffed760 3ffe9feb
3fffff20: 3ffecb58 40209f1c 3ffeabc8 3fff0778
3fffff30: 40214dd6 3ffecb58 00000001 4021278a
3fffff40: 000005e0 00000020 4010256c 3ffe8c20
3fffff50: 0000003c 00000000 00000000 0000004e
3fffff60: 00000001 4010350e 3ffe8c20 3ffec810
3fffff70: 4020a0a2 3fffdab0 00000000 3ffed0c8
3fffff80: 3ffec810 40209bb9 3fffdab0 00000000
3fffff90: 3fffdcc0 3ffe9138 00000000 3fffdcc0
3fffffa0: 3ffe9138 40000f49 3fffdab0 40000f49
<<<stack<<<
c_Çc_ÇÏ