def keywords(self, sett):
		#print sett
		if sett == 1:
			#return "const int void"
			s =  QsciLexerCPP.keywords(self, sett)
			s += " HIGH LOW INPUT OUTPUT"
			return s
			
		## umm test looks same ?? and with 3 cPP return loads of stuff
		#elif sett == 3:
		#	return "pinMode digitalWrite  HIGH LOW"
		#else:
		#	return " delay HIGH LOW"
		return QsciLexerCPP.keywords(self, sett)
    def keywords(self, sett):
        #print sett
        if sett == 1:
            #return "const int void"
            s = QsciLexerCPP.keywords(self, sett)
            s += " HIGH LOW INPUT OUTPUT"
            return s

        ## umm test looks same ?? and with 3 cPP return loads of stuff
        #elif sett == 3:
        #	return "pinMode digitalWrite  HIGH LOW"
        #else:
        #	return " delay HIGH LOW"
        return QsciLexerCPP.keywords(self, sett)
 def defaultKeywords(self, kwSet):
     """
     Public method to get the default keywords.
     
     @param kwSet number of the keyword set (integer)
     @return string giving the keywords (string) or None
     """
     return QsciLexerCPP.keywords(self, kwSet)