Linus Emmering
GERMANY • + Follow
Edit Project
Tools, APP Software Used etc.
|
arduino IDEArduino
|
Description
Arduino-Flugzeugbeleuchtung-mit-Attiny85
Arduino Flugzeugbeleuchtung mit Attiny85
Benötigte Bauteile:
4x Widerstand 270Ohm
5x Widerstand 150Ohm
1x Widerstand 100Ohm
1x LED Grün 3mm
13x LED Weiß 3mm
3x LED Rot 3mm
1x ATtiny85
1x IC-Sockel, 8-polig
Anschlüsse ATtiny85
LED 0 Strobe
1 Beacon
2 taxi
3 TakeoffLanding
4 Runwayturnoff
INPUT: 5V
Sktech:
int taxi = 2,
TakeoffLanding = 3,
Runwayturnoff = 4,
Strobe = 0,
Beacon = 1;
int ledPins[3] = {2, 3, 4};
int flashTimeouts[6] = {50, 50, 50, 400, 50, 400};
int flashBehaviour[2][6] = {{0, 0, 0, 0, 1, 0}, {1, 0, 1, 0, 0, 0}};
int flashPosition = 0;
long flashTimer = 0;
unsigned long previousMillis = 0;
const long interval = 10000;
void setup() {
pinMode(taxi, OUTPUT);
pinMode(TakeoffLanding, OUTPUT);
pinMode(Runwayturnoff, OUTPUT);
pinMode(Strobe, OUTPUT);
pinMode(Beacon, OUTPUT);
for (int i = 0; i < 5; i++) {
pinMode(ledPins[i], OUTPUT);
}
LEDan();
}
void LEDan(){
digitalWrite(taxi, HIGH);
digitalWrite(TakeoffLanding, HIGH);
digitalWrite(Runwayturnoff, HIGH);
}
void LEDaus(){
digitalWrite(taxi, LOW);
digitalWrite(TakeoffLanding, LOW);
digitalWrite(Runwayturnoff, LOW);
}
void blinken(){
digitalWrite(Beacon, flashBehaviour[0][flashPosition]);
digitalWrite(Strobe, flashBehaviour[1][flashPosition]);
if(flashTimer + flashTimeouts[flashPosition] < millis()) {
flashPosition++;
flashTimer = millis();
if (flashPosition > 5) flashPosition = 0;
}
}
void loop() {
blinken();
}
Code
Schematic and Layout
Jan 21,2024
787 views
Arduino-Flugzeugbeleuchtung-mit-Attiny85
Arduino-Flugzeugbeleuchtung-mit-Attiny85
787
1
0
Published: Jan 21,2024
Download Gerber file 4
BOM(Bill of materials)
Centroid file
Purchase
Donation Received ($)
PCBWay Donate 10% cost To Author
Only PCB
PCB+Assembly
*PCBWay community is a sharing platform. We are not responsible for any design issues and parameter issues (board thickness, surface finish, etc.) you choose.
Copy this HTML into your page to embed a link to order this shared project
Copy
Under the
Attribution-ShareAlike (CC BY-SA)
License.
- Comments(0)
- Likes(1)
Upload photo
You can only upload 5 files in total. Each file cannot exceed 2MB. Supports JPG, JPEG, GIF, PNG, BMP
0 / 10000
It looks like you have not written anything. Please add a comment and try again.
You can upload up to 5 images!
Image size should not exceed 2MB!
File format not supported!
View More
- Engineer Sep 29,2024
View More
VOTING
0 votes
- 0 USER VOTES
0.00
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Design
1/4
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Usability
2/4
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Creativity
3/4
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Content
4/4
More by Linus Emmering
- DMX LED Bar 1 Nur Taster Teil 2 DMX LED Bar 1 Nur Taster Teil 1Arduino Projekt Max485Benötigte Bauteile:4x Taster 6x6mm4x Widerständ...
- 7 segment with 7 Servo / 7 Segment mit 7 Servos / Siebensegmentanzeige Siebensegmentanzeige mit 7 ServosBenötigte Bauteile:7x 1/4W 220 Widerstand, Kohleschicht, 220 Ohm14x...
- Arduino-Spinnen-Roboter Pro Mini Anleitung auf Bau ProgrammierungAnleitung Bluetooth ControlSpider robot(quad robot, quadruped)-SG90B...
- Arduino-Spinnen-Roboter Nano Anleitung auf Bau ProgrammierungAnleitung Bluetooth ControlSpider robot(quad robot, quadruped)-SG90B...
- Neopixel-LED-Matrix Benötigte Library:Adafruit_NeoPixelAdafruit_NeoMatrixBenötigte Bauteile:1x Arduino NanoWS2812B 4Pin ...
- DMX-Lüfter Benötigte Bauteile:4x Taster 6x6mm (https://funduinoshop.com/bauelemente/taster-und-schalter/taster/...
- Arduino-Flugzeugbeleuchtung-mit-Attiny85 Arduino Flugzeugbeleuchtung mit Attiny85Benötigte Bauteile:4x Widerstand 270Ohm5x Widerstand 150Ohm1...
- Arduino Programmierstation Atmega328 & Attiny85 Arduino Programmierstation Atmega328 & Attiny85Benötigte Bauteile:- 1x LED Grün 3mm- ...
- Temperaturmessstation Arduino Temp SensorBenötigte Bauteile:4x Taster 6x6mm4x Widerstände 1kOhm1x Arduino Nano1x Widerstan...
- DMX LED Bar 2 Nur Taster Teil 1 DMX LED Bar 2 Nur Taster Teil 1Arduino Projekt Max485Benötigte Bauteile:4x Taster 6x6mm4x Widerständ...
- DMX Relias Box DMX Relias BoxBenötigte Bauteile:4x Taster 6x6mm4x Widerstände 1kOhm1x Arduino Nano1x Max4851x IC-So...
You may also like
-
-
-
-
-
-
3D printed Enclosure Backplate for Riden RD60xx power supplies
154 1 1 -
-