df

Dependencies:   mbed

Fork of APP1 by Team APP

Committer:
GaiSensei
Date:
Thu Feb 09 15:55:18 2017 +0000
Revision:
23:2531e72d92b9
Parent:
21:a111be2582be
gh

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dupm2216 21:a111be2582be 1 /////////////////////////////////////////////////////////////
dupm2216 21:a111be2582be 2 // APP 1: Systèmes à microprocesseurs //
dupm2216 21:a111be2582be 3 // //
dupm2216 21:a111be2582be 4 // Université de Sherbrooke //
dupm2216 21:a111be2582be 5 // Génie informatique //
dupm2216 21:a111be2582be 6 // Session 5, Hiver 2017 //
dupm2216 21:a111be2582be 7 // //
dupm2216 21:a111be2582be 8 // Date: 17 janvier 2017 //
dupm2216 21:a111be2582be 9 // //
dupm2216 21:a111be2582be 10 // Auteurs: Maxime Dupuis, dupm2216 //
dupm2216 21:a111be2582be 11 // Bruno Allaire-Lemay, allb2701 //
dupm2216 21:a111be2582be 12 /////////////////////////////////////////////////////////////
dupm2216 21:a111be2582be 13
GaiSensei 13:bb9669053eb3 14 #ifndef DISPLAYER_CONSTANTS_HPP
GaiSensei 13:bb9669053eb3 15 #define DISPLAYER_CONSTANTS_HPP
GaiSensei 13:bb9669053eb3 16
GaiSensei 13:bb9669053eb3 17 const int CLEAR_DISPLAY_REGISTER = 0x76;
GaiSensei 13:bb9669053eb3 18 const int DECIMAL_CONTROL_REGISTER = 0x77;
GaiSensei 13:bb9669053eb3 19 const int FLOATING_POINT_DOT_POSITION = 0x02;
GaiSensei 13:bb9669053eb3 20 const int CURSOR_CONROL_REGISTER = 0x79;
GaiSensei 13:bb9669053eb3 21 const int MOST_LEFT_DIGIT_POSITION= 0x00;
GaiSensei 13:bb9669053eb3 22
GaiSensei 13:bb9669053eb3 23 #endif