Augustine Kizito / Mbed 2 deprecated Solar_Powered_Smart_Camera

Dependencies:   Adafruit_GFX Adafruit_ST7735 INA219 MODSERIAL MbedJSONValue mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Outputs.h Source File

Outputs.h

00001 #ifndef OUTPUTS_H
00002 #define OUTPUTS_H
00003 
00004 #include "Adafruit_ST7735.h"
00005 
00006 Adafruit_ST7735 tft(p11, p12, p13, p16, p14, p15); // MOSI, MISO, SCLK, SSEL, TFT_DC, TFT_RST
00007 DigitalOut RPiLED(p30);    // LED to show RPi is active
00008 DigitalOut utilityLED(p29);    // LED to show Utility Port is active
00009 DigitalOut batteryOneLowLED(p26);  // LED to show Battery One voltage is low
00010 DigitalOut batteryTwoLowLED(p25);     // LED to show Battery Two voltage is low
00011 //DigitalOut loggingLED(p24);         // LED to show logging is active
00012 
00013 #endif