Facebook
From Bistre Dolphin, 7 Years ago, written in Plain Text.
">

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

from

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

- view diff
Embed
Download Paste or View Raw
Hits: 368
  1. int button = 6;
  2. int led = 13;
  3. void setup() {
  4. pinMode(led, OUTPUT);
  5. pinMode(button, INPUT);
  6. digitalWrite(button, HIGH);
  7.  
  8.  
  9. }
  10.  
  11. void loop() {
  12.   if(digitalRead(button) == LOW){
  13.     digitalWrite(led, HIGH);
  14.   }
  15.   else
  16.   {
  17.     digitalWrite(led, LOW);
  18.   }
  19. }