Forum: Test Ich blick es net


von Dietmar B. (theq)


Lesenswert?

...oder doch?!?
1
D:\Apps\arduino-1.8.7\hardware\tools\avr/bin/avrdude -CD:\Apps\arduino-1.8.7\hardware\tools\avr/etc/avrdude.conf -v -patmega328p -e -carduino -PCOM6 -b57600 -Ulock:w:0x3F:m -Uefuse:w:0xFD:m -Uhfuse:w:0xDA:m -Ulfuse:w:0xFF:m
2
3
avrdude: Version 6.3-20171130
4
         Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
5
         Copyright (c) 2007-2014 Joerg Wunsch
6
7
         System wide configuration file is "D:\Apps\arduino-1.8.7\hardware\tools\avr/etc/avrdude.conf"
8
9
         Using Port                    : COM6
10
         Using Programmer              : arduino
11
         Overriding Baud Rate          : 57600
12
         AVR Part                      : ATmega328P
13
         Chip Erase delay              : 9000 us
14
         PAGEL                         : PD7
15
         BS2                           : PC2
16
         RESET disposition             : dedicated
17
         RETRY pulse                   : SCK
18
         serial program mode           : yes
19
         parallel program mode         : yes
20
         Timeout                       : 200
21
         StabDelay                     : 100
22
         CmdexeDelay                   : 25
23
         SyncLoops                     : 32
24
         ByteDelay                     : 0
25
         PollIndex                     : 3
26
         PollValue                     : 0x53
27
         Memory Detail                 :

: Bearbeitet durch User
von Dietmar B. (theq)


Lesenswert?

... oder doch net
1
#if ARDUINO >= 100
2
 #include "Arduino.h"
3
#else
4
 #include <stdio.h>
5
#endif
6
7
Bar::Bar(uint8_t xCorner, uint8_t yCorner, uint8_t width, uint8_t height, uint8_t diffScale, Adafruit_GFX * display) {
8
  _yCorner = yCorner;
9
  _xCorner = xCorner;
10
  _display = display;
11
  _width = width;
12
  _height = height;
13
  _currVal = 0;
14
  _diffScale = diffScale;
15
}

Bitte melde dich an um einen Beitrag zu schreiben. Anmeldung ist kostenlos und dauert nur eine Minute.
Bestehender Account
Schon ein Account bei Google/GoogleMail? Keine Anmeldung erforderlich!
Mit Google-Account einloggen
Noch kein Account? Hier anmelden.