aboutsummaryrefslogtreecommitdiff
path: root/Digital Photoreactor Controller Firmware/Master_Photoreactor_Controller/Master_Photoreactor_Controller.ino
diff options
context:
space:
mode:
authorPhilip Lampkin <plampkin@chem.wisc.edu>2021-02-10 21:55:24 -0600
committerPhilip Lampkin <plampkin@chem.wisc.edu>2021-02-10 21:55:24 -0600
commit6c3a55f379230d190a1b9030dea27fb8b08b3cbf (patch)
treee51565ca44031071b4182a634ea9a15d610f8b63 /Digital Photoreactor Controller Firmware/Master_Photoreactor_Controller/Master_Photoreactor_Controller.ino
parent4cb6b8dc9134b144d1e2b9beee94d4fc4477ac87 (diff)
updated base designs
Diffstat (limited to 'Digital Photoreactor Controller Firmware/Master_Photoreactor_Controller/Master_Photoreactor_Controller.ino')
-rw-r--r--Digital Photoreactor Controller Firmware/Master_Photoreactor_Controller/Master_Photoreactor_Controller.ino4
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);