protofusion

open hardware and software

User Tools

Site Tools


zoncoffee_pid_controller

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
zoncoffee_pid_controller [2013/11/11 01:31] – created Ethan Zoncazoncoffee_pid_controller [2023/03/23 02:48] (current) – external edit 127.0.0.1
Line 5: Line 5:
   - Connect your LCD   - Connect your LCD
     - Serial LCDs are connected to the "LCD" screw terminal     - Serial LCDs are connected to the "LCD" screw terminal
-    - Parallel LCDs are connected through the auxilliary connector +    - Parallel LCDs are connected through the auxiliary connector 
-  - Connect a rotary encoder +  - Connect a rotary encoder and switch to the labeled screw terminal 
-  - Connect your solid-state relay +    - Internal pull-ups are enabled, so the switch should be connected between ground and the ''sw'' pin 
-  Connect a buzzer (optional) +    - If your rotary encoder does not operate correctly with any pin configuration, you may need to try different quadrature sequences in ''/lib/Quadrature/Quadrature.cpp'' 
-  - Connect your power supply+  - Connect solid-state relay to the 2-pin SSR screw terminal 
 +  - Connect your 5v power supply (either USB or screw terminal)
  
 ===== Software Setup ===== ===== Software Setup =====
  
-Your ZonCoffee board comes pre-loaded with the latest firmware. However, you can flash your own custom firmware or updates using the Arduino bootloader which is pre-programmed on the ATMEGA32u4.+To get started, [[http://hg.protofusion.org/ZonCoffee/archive/486905a58273.zip|download the ZonCoffee Arduino sketch and libraries]] 
 + 
 +Your ZonCoffee board comes pre-loaded with the latest firmware. However, you can flash your own custom firmware  
 + 
 +==== Arduino IDE ==== 
 + 
 +Download the latest [[http://arduino.cc/|Arduino IDE]] and make sure that the selected board is Arduino Leonardo. The IDE should function as if the ZonCoffee was a normal Arduino Leonardo. 
 + 
 +Note: In that zip file, all libraries in the "lib" folder need to be installed to your Arduino IDE. If you haven't done this before, you just need to copy and paste all subfolders of the "lib" directory into the "libraries" folder of your Arduino installation. 
 + 
 + 
 + 
 +==== LCD support ==== 
 + 
 +The firmware comes pre-configured for the HD44780 parallel LCD display. To use a SparkFun serial LCD, you will need to change a couple configuration options: 
 + 
 +In the Arduino sketch, browse to ''options.h'' 
 + 
 +    13 //#define LCDSF      // Use SparkFun serial lcd 
 +    14 #define LCDHD    // Use standard HD44780 lcd or compat. 
 + 
 + 
 +Uncomment the LCDSF line and comment out the LCDHD line. Now your SparkFun LCD should work properly. 
 + 
 +**There seems to be a bug in the Arduino IDE when switching between LCDs. If you change the selected display in ''options.h'' and get a ton of compilation errors, change the order of these two blocks in zoncoffee.ino (for example):** 
 + 
 +Change this:  
 + 
 +    15 // Setup LCD 
 +    16 #ifdef LCDHD 
 +    17   #include <LiquidCrystal.h> 
 +    18   LiquidCrystal lcd(A5,A4,A3,A2,A1,A0); 
 +    19 #endif 
 +    20 
 +    21 #ifdef LCDSF 
 +    22   #include <SLCD.h> 
 +    23   SLCD sflcd = SLCD(LCDROWS, LCDCOLS); 
 +    24 #endif 
 +     
 +To this: 
 + 
 +    15 // Setup LCD 
 +    16 #ifdef LCDSF 
 +    17   #include <SLCD.h> 
 +    18   SLCD sflcd = SLCD(LCDROWS, LCDCOLS); 
 +    19 #endif 
 +    20 #ifdef LCDHD 
 +    21   #include <LiquidCrystal.h> 
 +    22   LiquidCrystal lcd(A5,A4,A3,A2,A1,A0); 
 +    23 #endif 
 +    24 
 +     
 +...or the other way around. 
 + 
 +     
 +    
  
  
zoncoffee_pid_controller.1384133472.txt.gz · Last modified: 2023/03/23 02:48 (external edit)