Przeglądaj źródła

Print a welcome message at startup

DricomDragon 5 lat temu
rodzic
commit
62e1167562
2 zmienionych plików z 6 dodań i 2 usunięć
  1. 2 2
      prog/clean.py
  2. 4 0
      prog/sources/setup-loop.cpp

+ 2 - 2
prog/clean.py

@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/env python
 # -*- coding: UTF-8 -*-
 
 #----------------------------------------------------------------------------------------------------------------------*
@@ -10,7 +10,7 @@ import sys, os, shutil
 #----------------------------------------------------------------- Get script absolute path
 scriptDir = os.path.dirname (os.path.abspath (sys.argv [0]))
 #----------------------------------------------------------------- Import common definitions
-pythonScriptDir = scriptDir + "/../../dev-files"
+pythonScriptDir = scriptDir + "/../dev-files"
 sys.path.append (pythonScriptDir)
 import common_definitions
 #-----------------------------------------------------------------

+ 4 - 0
prog/sources/setup-loop.cpp

@@ -15,6 +15,7 @@ void setup (USER_MODE) {
 	// Start
 	digitalWrite(L0_LED, true);
 
+	// Init buttons and LEDs
 	BUTTON[0] = P0_PUSH_BUTTON;
 	BUTTON[1] = P1_PUSH_BUTTON;
 	BUTTON[2] = P2_PUSH_BUTTON;
@@ -32,6 +33,9 @@ void setup (USER_MODE) {
 		buttonReleased[i] = digitalRead(BUTTON[i]);
 		actionDone[i] = false;
 	}
+
+	// Init LCD
+	printString(MODE_ "Welcome Jovian");
 }
 
 void loop (USER_MODE) {