diff options
author | Philip Lampkin <plampkin@chem.wisc.edu> | 2021-02-10 21:55:24 -0600 |
---|---|---|
committer | Philip Lampkin <plampkin@chem.wisc.edu> | 2021-02-10 21:55:24 -0600 |
commit | 6c3a55f379230d190a1b9030dea27fb8b08b3cbf (patch) | |
tree | e51565ca44031071b4182a634ea9a15d610f8b63 /Digital Photoreactor Controller Firmware | |
parent | 4cb6b8dc9134b144d1e2b9beee94d4fc4477ac87 (diff) |
updated base designs
Diffstat (limited to 'Digital Photoreactor Controller Firmware')
-rw-r--r-- | Digital Photoreactor Controller Firmware/Master_Photoreactor_Controller/Master_Photoreactor_Controller.ino | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Digital Photoreactor Controller Firmware/Master_Photoreactor_Controller/Master_Photoreactor_Controller.ino b/Digital Photoreactor Controller Firmware/Master_Photoreactor_Controller/Master_Photoreactor_Controller.ino index 8c2ffa4..88e7313 100644 --- a/Digital Photoreactor Controller Firmware/Master_Photoreactor_Controller/Master_Photoreactor_Controller.ino +++ b/Digital Photoreactor Controller Firmware/Master_Photoreactor_Controller/Master_Photoreactor_Controller.ino @@ -21,8 +21,8 @@ void loop() //generate buffer containing data to send via I2C uint8_t buf[1]; - buf[0] = 25; // adjusting this byte changes fan speed. Can be adjusted from 0 to 256. - buf[1] = 1; // adjusting this byte changes LED intensity. Can be adjusted from 0 to 256. + buf[0] = 20; // adjusting this byte changes fan speed. Can be adjusted from 0 to 256. + buf[1] = 20; // adjusting this byte changes LED intensity. Can be adjusted from 0 to 256. // send buffer Wire.beginTransmission(I2C_SLAVE_ADDR); |