muwerk Scheduler Library
A low-resource cooperative scheduler with MQTT-like queues for Arduinos, ATtiny up to ESP32
Loading...
Searching...
No Matches
i2cdoctor.h
1// i2cdoctor.h -- i2c system diagnostics via messages / mqtt
2#pragma once
3
4#include <Arduino_JSON.h>
5#ifndef tiny_twi_h
6#include <Wire.h>
7#else
8typedef TinyWire TwoWire;
9#endif
10
11#include "scheduler.h"
12#include "heartbeat.h"
13
14namespace ustd {
15
54class I2CDoctor {
55 private:
56 // muwerk task management
57 Scheduler *pSched;
58 int tID;
59 TwoWire *pWire;
60
61 // active configuration
62 String name;
63
64 // runtime control - state management
65 bool bActive = false;
66 // runtime control - i2c scanner
67 int hwErrs = 0;
68 int i2cDevs = 0;
69
70 public:
71 I2CDoctor(String name = "doctor") : name(name) {
73 }
74
75 ~I2CDoctor() {
76 }
77
78 void begin(Scheduler *_pSched, TwoWire *_pWire) {
87 pSched = _pSched;
88 pWire = _pWire;
89
90 tID = pSched->add([this]() { this->loop(); }, name, 100000); // every 100 ms
91
92 pSched->subscribe(tID, name + "/#", [this](String topic, String msg, String originator) {
93 this->subsMsg(topic, msg, originator);
94 });
95
96 bActive = true;
97 }
98
99 protected:
100 bool i2c_checkAddress(uint8_t address) {
101 pWire->beginTransmission(address);
102 byte error = pWire->endTransmission();
103 if (error == 0) {
104 return true;
105 } else if (error == 4) {
106 ++hwErrs;
107 }
108 return false;
109 }
110
111 void publishI2C() {
112 i2cDevs = 0;
113 hwErrs = 0;
114 JSONVar i2cinfo;
115 for (uint8_t address = 1; address < 127; address++) {
116 if (i2c_checkAddress(address)) {
117 char msg[32];
118 sprintf(msg, "0x%02x", address);
119 i2cinfo["addresses"][i2cDevs] = (const char *)msg;
120 ++i2cDevs;
121 }
122 }
123 i2cinfo["device_count"] = i2cDevs;
124 i2cinfo["hardware_errors"] = hwErrs;
125 pSched->publish(name + "/i2cinfo", JSON.stringify(i2cinfo));
126 }
127
128 void loop() {
129 if (bActive) {
130 }
131 }
132
133 void subsMsg(String topic, String msg, String originator) {
134 if (topic == name + "/i2cinfo/get") {
135 publishI2C();
136 }
137 };
138}; // I2CDoctor
139
140} // namespace ustd
muwerk I2CDoctor Class
Definition i2cdoctor.h:54
void begin(Scheduler *_pSched, TwoWire *_pWire)
Definition i2cdoctor.h:78
I2CDoctor(String name="doctor")
Definition i2cdoctor.h:71
muwerk Scheduler Class
Definition scheduler.h:199
int add(T_TASK task, String name, unsigned long minMicroSecs=100000L, T_PRIO prio=PRIO_NORMAL)
Definition scheduler.h:475
bool publish(String topic, String msg="", String originator="")
Definition scheduler.h:367
int subscribe(int taskID, String topic, T_SUBS subs, String originator="")
Definition scheduler.h:395
The muwerk namespace.
Definition console.h:15