Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. color function(alarmtype)
  2. {
  3. color = #000000;
  4. switch (selectedFeature) {
  5.   case "temeperature":
  6.     color = #ff0000;
  7.     break;
  8.   case "electricity":
  9.     color = #000000;
  10.     break;
  11.   case "wireless/radio"
  12.     color = #0000ff;
  13.     break;
  14. }
  15. return color
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement