# ### ### #
# ### author: O.Artz ### #
# ### ### #
-# ### UPDATE 2022-01-20 ### #
+# ### UPDATE 2022-06-07 ### #
# ### ### #
#####################################################
String unit;
void WiFiEvent(WiFiEvent_t event) {
+ // ensure the ethernet connection (status)
switch (event) {
case SYSTEM_EVENT_ETH_START:
Serial.println("ETH Started");
}
void start_telnet() {
- // for Telnet Server Connection
+ // start Telnet Server Connection
pinMode(2, OUTPUT); // yellow LED
pinMode(15, OUTPUT); // green LED
Serial.begin(115200);
}
void setup() {
+ //initalize the board
start_telnet();
// for I2C Connection
Wire.begin(SDA, SCL); // Initiate the Wire library
}
void start_screen() {
+ // show ikf logo and initials of the programmer
display.clearDisplay();
display.setTextSize(1); // Normal 1:1 pixel scale
display.setTextColor(SSD1306_WHITE); // Draw white text
}
void connection_screen() {
+ // show all connection relevant parameters
display.clearDisplay();
display.setTextSize(1); // Normal 1:1 pixel scale
display.setTextColor(SSD1306_WHITE); // Draw white text
}
void test_screen() {
+ // used as a test case
display.clearDisplay();
display.setTextSize(1); // Normal 1:1 pixel scale
display.setTextColor(SSD1306_WHITE); // Draw white text
}
void show_CH(String unit) {
+ // show the position of the measured adc values by their label name and the acutally set unit globaly
display.clearDisplay();
display.setTextSize(2); // Normal 1:1 pixel scale
}
void show_VAL(int dadc0, int dadc1, int dadc2, int dadc3, String unit) {
+ // show the measured adc values and the global unit
display.clearDisplay();
display.setTextSize(2); // Normal 1:1 pixel scale
}
void loop() {
- // for Telnet Server Connection
+ // for recieving and transmitting by Telnet Server Connection
uint8_t i;
if (eth_connected == true) {
// check if there are any new clients
}
void set_offset(int16_t new_offset_val, int chan_offset_num) {
+ // to calibrate the channels with an offset value
if (chan_offset_num == 0) {
offset0 = new_offset_val;
} else if (chan_offset_num == 1) {
}
void set_voltage_divider_factor(float new_vol_div_fac) {
+ // to set the correct voltage divider factor
vol_div_fac = new_vol_div_fac/1000.0;
}
void set_device_transformation_factor(float new_dev_trans_fac) {
+ // to transformate adc values in device values (units)
dev_trans_fac = new_dev_trans_fac/1000.0;
}
void set_unit(uint8_t new_unit) {
+ // to change the unit w/o changing transformationfactor. only for visuals
unit = possible_units[new_unit];
}
// write
if (rxbuf[0] == 'W') {
- // ADCsettings
- if (hex_to_int(rxbuf[5]) == 9) {
+ // ADC Settings
+ if (hex_to_int(rxbuf[5]) == 10) {
// uint8_t val =
// (hex_to_int(rxbuf[7])*16+hex_to_int(rxbuf[8]))&0xFF;
new_gain = (hex_to_int(rxbuf[9]));
send_answer_hex(&rxbuf[0], new_gain);
}
+ // Device Settings
if (hex_to_int(rxbuf[5]) == 11) {
//units
if (hex_to_int(rxbuf[4]) == 0) {
// read
if (rxbuf[0] == 'R'){
// read single ADC Channel
- if (hex_to_int(rxbuf[5]) == 10) {
+ if (hex_to_int(rxbuf[5]) == 13) {
uint16_t adc_val = 0xFFFF;
// CH0
if (hex_to_int(rxbuf[4]) == 0) {