Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projekte:cis:canon_mf4370dn [2016-06-15 02:04] – [bestätigt] cracki | projekte:cis:canon_mf4370dn [2017-01-17 01:01] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 24: | Line 24: | ||
* Barcode: Format ITF, Typ Text, Wert 57038164 | * Barcode: Format ITF, Typ Text, Wert 57038164 | ||
- | ===== Reversing | + | ===== Pinout |
- | + | ||
- | Pins gezaehlt von innen (links) nach aussen (rechts). | + | |
- | ==== bestätigt ==== | ||
- | |||
- | * 1 GND = 10 GND | ||
- | * davon abgesehen sind 1-5 und 6-12 getrennt | ||
- | * insbesondere 5, trotz weiterer Abzweigung, scheint mit nix weiter zu interagieren | ||
- | |||
- | Beleuchtung: | ||
- | * 2 GND Rot, ~2.3V 50mA | ||
- | * 3 GND Gruen, ~3.45V 50mA | ||
- | * 4 GND Blau, ~3.45V 30mA | ||
- | * 5 VCC (3.3V OK) | ||
- | |||
- | Signale: | ||
* 6 Clock | * 6 Clock | ||
* 7 Startpuls | * 7 Startpuls | ||
* 8 Vref | * 8 Vref | ||
- | * 11 ??? | + | |
+ | * 10 GND | ||
+ | | ||
* 12 Aout | * 12 Aout | ||
- | ==== Hypothesen ==== | + | * 2-4 V Ausgang, geht nie runter auf 0 |
- | * 6,7,11 sehen gleich aus | + | * regelmäßige blinde Flecke, ca 0.5mm breit jeweils |
- | * 8,12 sehen gleich aus | + | * doppelt so viele blinde Flecke, wenn Spannung an DPI > VCC |
- | * 9 VCC? | + | ===== Reversing ===== |
- | * 10 GND (bestaetigt) | + | |
+ | Pins gezaehlt von innen (links) nach aussen (rechts). | ||
+ | |||
+ | Bis auf GND sind 1-5 und 6-12 getrennt. Insbesondere 5, trotz weiterer Abzweigung, scheint mit nix weiter zu interagieren. | ||
==== Messungen ==== | ==== Messungen ==== | ||
Line 64: | Line 54: | ||
| 4 | | | 4 | | ||
| 5 | | | 5 | | ||
+ | |||
+ | auch: | ||
+ | * 2 GND Rot, ~2.3V 50mA | ||
+ | * 3 GND Gruen, ~3.45V 50mA | ||
+ | * 4 GND Blau, ~3.45V 30mA | ||
+ | |||
+ | bei ~4.5V Versorgung in die LEDs folgende Widerstände nach Erde: | ||
+ | * Rot: 220 | ||
+ | * Grün: 50 | ||
+ | * Blau: 100 | ||
Spannungen bei 1 mA: | Spannungen bei 1 mA: | ||
- | ^ + \ - ^ 6 ^ 7 ^ 8 ^ 9 ^ 10 ^ 11 ^ 12 ^ Beschreibung | + | ^ + \ - ^ 6 ^ 7 ^ 8 ^ 9 ^ 10 ^ 11 ^ 12 ^ Aufgabe |
- | | 6 | <typo bg:# | + | | 6 | <typo bg:# |
- | | 7 | <typo bg:# | + | | 7 | <typo bg:# |
- | | 8 | <typo bg:# | + | | 8 | <typo bg:# |
- | | 9 | <typo bg:# | + | | 9 | <typo bg:# |
- | | 10 | <typo bg:# | + | | 10 | <typo bg:# |
- | | 11 | <typo bg:# | + | | 11 | <typo bg:# |
- | | 12 | <typo bg:# | + | | 12 | <typo bg:# |
+ | |||
+ | ===== Arduino Code ===== | ||
+ | |||
+ | < | ||
+ | #define START 2 | ||
+ | #define CLOCK 3 | ||
+ | #define DPIMODE 4 | ||
+ | #define LEDR 5 | ||
+ | #define LEDG 6 | ||
+ | #define LEDB 7 | ||
+ | |||
+ | bool dpimode = 1; | ||
+ | uint16_t pixels = dpimode ? 5184 : 2592; | ||
+ | |||
+ | uint32_t linetime = 4000; // us | ||
+ | uint32_t sched = 0; | ||
+ | |||
+ | uint8_t lightcolor = 0; | ||
+ | |||
+ | void set_lighting(uint8_t active) | ||
+ | { | ||
+ | digitalWrite(LEDR, | ||
+ | digitalWrite(LEDG, | ||
+ | digitalWrite(LEDB, | ||
+ | } | ||
+ | |||
+ | void setup() { | ||
+ | pinMode(START, | ||
+ | pinMode(CLOCK, | ||
+ | pinMode(DPIMODE, | ||
+ | |||
+ | pinMode(LEDR, | ||
+ | pinMode(LEDG, | ||
+ | pinMode(LEDB, | ||
+ | |||
+ | digitalWrite(DPIMODE, | ||
+ | |||
+ | sched = micros(); | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | |||
+ | set_lighting(0); | ||
+ | |||
+ | digitalWrite(START, | ||
+ | digitalWrite(CLOCK, | ||
+ | digitalWrite(CLOCK, | ||
+ | digitalWrite(START, | ||
+ | |||
+ | set_lighting(1 << lightcolor); | ||
+ | |||
+ | for (uint16_t counter = 82 + pixels; counter-- > 0; ) | ||
+ | { | ||
+ | PORTD |= _BV(PORTD3); | ||
+ | PORTD &= ~_BV(PORTD3); | ||
+ | } | ||
+ | |||
+ | lightcolor = (lightcolor+1) % 3; | ||
+ | sched += linetime; | ||
+ | int32_t dt = sched - micros(); | ||
+ | while (dt > 0x4000) | ||
+ | { | ||
+ | delayMicroseconds(0x4000); | ||
+ | dt -= 0x4000; | ||
+ | } | ||
+ | if (dt > 0) | ||
+ | delayMicroseconds(dt); | ||
+ | } | ||
+ | </ |