├── Altium Designer 2013 PCB Logo Creator ├── Converter.PAS ├── Converter.dfm ├── LayerComboBox.pas ├── PCBLogoCreator.PRJSCR ├── altiumlogo.bmp ├── ddd.bmp ├── test1.bmp └── test2.bmp ├── Image2Lcd ├── Image2Lcd 安装程序.exe ├── Image2Lcd+KeyGen 注册软件 │ └── Image2Lcd KeyGen.exe └── 说明.txt ├── LCD点阵提取工具 └── LCD点阵提取工具zimo221.EXE ├── PCtoLCD2002完美版 12864编辑器 └── PCtoLCD2002完美版 12864编辑器.rar ├── README.md ├── 串口调试助手 ├── readme.txt ├── 串口调试助手V1.5.exe └── 串口调试助手(丁丁) │ ├── sscom.ini │ └── sscom33.exe ├── 取模软件 ├── ASC.PTL ├── Gb2312.PTL ├── PCtoLCD.INI ├── PCtoLCD.exe ├── PCtoLCD2002.INI ├── RTL60.BPL ├── VCL60.BPL ├── _index.TXT ├── notice.txt ├── readme2002.txt ├── shuzi.TXT └── shuzi.TXT_index.TXT ├── 字库制作软件 ├── DSET.ini ├── qtintf.dll ├── readme.txt ├── register.ini ├── ts3.exe ├── ts3 │ ├── register.ini │ └── ts3.exe ├── 多国文字点阵字库生成器 3.8 注册机.rar └── 点阵字库生成器使用说明.pdf ├── 屏幕颜色获取软件 ├── ColorPix.exe └── cPix.ini └── 汉字内码查询 反查询 └── 汉字内码查询.exe /Altium Designer 2013 PCB Logo Creator/Converter.PAS: -------------------------------------------------------------------------------- 1 | {..............................................................................} 2 | { Summary } 3 | { Converts a monochrome image as a PCB Logo into a series of thin } 4 | { PCB tracks that can be placed on a PCB document as a logo. } 5 | { } 6 | { Copyright (c) 2008 by Altium Limited } 7 | { } 8 | { Version 1.5 } 9 | { } 10 | { Changes For Version 1.5 } 11 | { - Fix off by one errors accessing Canvas.Pixels } 12 | { - Make more tolerant of non-monochrome images, now tracks are created at } 13 | { the boundary of white and non-white pixels } 14 | { - Use user customized layer names } 15 | {..............................................................................} 16 | 17 | Var 18 | gvBoard : IPCB_Board; 19 | 20 | {......................................................................................................................} 21 | Procedure RunConverterScript; 22 | Begin 23 | ConverterForm.ShowModal; 24 | End; 25 | {......................................................................................................................} 26 | 27 | {......................................................................................................................} 28 | Procedure PlaceATrack(ABoard : IPCB_Board; X1,Y1,X2,Y2 : TCoord; ALayer : TLayer, AWidth : Float); 29 | Var 30 | PCBTrack : IPCB_Track; 31 | Sheet : IPCB_Sheet; 32 | OffSet : TCoord; 33 | Begin 34 | // obtain the coordinates of the sheet so can place logo within the board 35 | Sheet := ABoard.PCBSheet; 36 | OffSet := MilsToCoord(100); 37 | 38 | // place a new track on the blank PCB 39 | PCBTrack := PCBServer.PCBObjectFactory(eTrackObject, eNoDimension, eCreate_Default); 40 | PCBTrack.Width := MilsToCoord(1) * AWidth; 41 | 42 | PCBTrack.X1 := Sheet.SheetX + MilsToCoord(X1) + Offset; 43 | PCBTrack.Y1 := Sheet.SheetY + MilsToCoord(Y1) + Offset; 44 | PCBTrack.X2 := Sheet.SheetX + MilsToCoord(X2) + Offset; 45 | PCBTrack.Y2 := Sheet.SheetY + MilsToCoord(Y2) + Offset; 46 | PCBTrack.Layer := ALayer; 47 | 48 | ABoard.AddPCBObject(PCBTrack); 49 | End; 50 | {......................................................................................................................} 51 | 52 | {......................................................................................................................} 53 | Procedure ScalingFactorChange(Dummy : TObject); 54 | Begin 55 | ConverterForm.lImageSize.Caption := FloatToStr((ConverterForm.Image1.Picture.Width + 1) * ConverterForm.eScalingFactor.Text) + ' x ' + 56 | FloatToStr((ConverterForm.Image1.Picture.Height + 1) * ConverterForm.eScalingFactor.Text) + ' mils'; 57 | End; 58 | {......................................................................................................................} 59 | 60 | {......................................................................................................................} 61 | Procedure TConverterForm.eScalingFactorChange(Sender: TObject); 62 | Begin 63 | ScalingFactorChange(Nil); 64 | End; 65 | {......................................................................................................................} 66 | 67 | {......................................................................................................................} 68 | Procedure TConverterForm.loadbuttonClick(Sender: TObject); 69 | Var 70 | I, J : Integer; 71 | Begin 72 | If OpenPictureDialog1.Execute then 73 | Begin 74 | XPProgressBar1.Position := 0; 75 | XStatusBar1.SimpleText := ' Loading...'; 76 | XStatusBar1.Update; 77 | 78 | // loading a monochrome bitmap only 79 | Image1.Picture.LoadFromFile(OpenPictureDialog1.FileName); 80 | 81 | // Check if image is monochrome, otherwise prompt a warning 82 | If Image1.Picture.Bitmap.PixelFormat <> pf1bit Then 83 | Begin 84 | For J := 0 to Image1.Picture.Height - 1 Do 85 | For I := 0 to Image1.Picture.Height - 1 Do 86 | Begin 87 | If Image1.Canvas.Pixels[I,J] <> clWhite Then 88 | Image1.Canvas.Pixels[I,J] := clBlack; 89 | End; 90 | End; 91 | 92 | ScalingFactorChange(Nil); 93 | 94 | convertbutton.Enabled := True; 95 | LoadButton.Enabled := False; 96 | XStatusBar1.SimpleText := ' Ready...'; 97 | XStatusBar1.Update; 98 | End; 99 | End; 100 | {......................................................................................................................} 101 | 102 | {......................................................................................................................} 103 | procedure TConverterForm.ConverterFormCreate(Sender: TObject); 104 | begin 105 | // Create a standalone blank PCB document and add the new logo to it 106 | // from the PCBLogoContainer d.s. 107 | CreateNewDocumentFromDocumentKind('PCB'); 108 | 109 | // GetCurrentPCBBoard returns a IPCB_Board type. 110 | gvBoard := PCBServer.GetCurrentPCBBoard; 111 | 112 | If gvBoard = Nil Then 113 | Begin 114 | ShowWarning('A PCB document is not created properly.'); 115 | ShowModal := mrError; 116 | End 117 | Else 118 | SetupComboBoxFromLayer(ComboBoxLayers, gvBoard); 119 | end; 120 | {......................................................................................................................} 121 | 122 | {......................................................................................................................} 123 | Procedure TConverterForm.convertbuttonClick(Sender: TObject); 124 | Var 125 | x, y, x1, FlipY, FlipX : Integer; 126 | PixelColor : TColor; 127 | Start : Boolean; 128 | //PCBBoard : IPCB_Board; 129 | PCBLayer : TLayer; 130 | TrackWidth : Integer; 131 | Begin 132 | Screen.Cursor := crHourGlass; 133 | XPProgressBar1.Max := Image1.Picture.Height; 134 | PCBLayer := GetLayerFromComboBox(ComboBoxLayers, gvBoard); 135 | TrackWidth := StrToFloat(eScalingFactor.Text); 136 | 137 | // ensure the layer selected is displayed in the PCB workspace 138 | gvBoard.LayerIsDisplayed[PCBLayer] := True; 139 | 140 | For Y := 0 to Image1.Picture.Height - 1 Do 141 | Begin 142 | XPProgressBar1.Position := Y; 143 | XPProgressBar1.Update; 144 | 145 | XStatusBar1.SimpleText := ' Converting...'; 146 | XStatusBar1.Update; 147 | 148 | If (cbMirrorY.Checked) Then 149 | FlipY := Y 150 | Else 151 | FlipY := Abs(Y - Image1.Picture.Height - 1); 152 | 153 | FlipY := FlipY * StrToFloat(eScalingFactor.Text); 154 | 155 | // Denotes the start of a line on a row of an image 156 | Start := False; 157 | 158 | For X := 0 To Image1.Picture.Width Do 159 | Begin 160 | If (cbNegative.Checked) Then 161 | PixelColor := clBlack 162 | Else 163 | PixelColor := clWhite; 164 | 165 | If X < Image1.Picture.Width Then 166 | PixelColor := Image1.Canvas.Pixels[x,y]; 167 | 168 | If cbMirrorX.Checked Then 169 | FlipX := abs(X - Image1.Picture.Width) 170 | Else 171 | FlipX := X; 172 | 173 | FlipX := FlipX * StrToFloat(eScalingFactor.Text); 174 | 175 | If (cbNegative.Checked) Then 176 | Begin 177 | Case PixelColor Of 178 | clWhite : 179 | If Not (Start) Then 180 | Begin 181 | x1 := FlipX; 182 | Start := True; 183 | End; 184 | 185 | Else 186 | Begin 187 | If (Start) Then 188 | PlaceATrack(gvBoard, X1,FlipY,FlipX,FlipY, PCBLayer, TrackWidth); 189 | 190 | Start := False; 191 | End; 192 | End; 193 | End 194 | Else 195 | Begin 196 | Case PixelColor Of 197 | clWhite: 198 | Begin 199 | If (Start) Then 200 | PlaceATrack(gvBoard, X1,FlipY,FlipX,FlipY, PCBLayer, TrackWidth); 201 | Start := False; 202 | End; 203 | 204 | Else 205 | If Not (Start) Then 206 | Begin 207 | x1 := FlipX; 208 | Start := True; 209 | End; 210 | 211 | End; 212 | End; 213 | End; 214 | End; 215 | 216 | Screen.Cursor := crArrow; 217 | XStatusBar1.SimpleText := ' Done...'; 218 | XStatusBar1.Update; 219 | 220 | // toggle buttons 221 | ConvertButton.Enabled := False; 222 | LoadButton.Enabled := True; 223 | 224 | // clear out progress bar 225 | XPProgressBar1.Position := 0; 226 | XPProgressBar1.Update; 227 | 228 | //clear out image 229 | Image1.Picture.Bitmap := nil; 230 | 231 | Client.SendMessage('PCB:Zoom', 'Action=All' , 255, Client.CurrentView); 232 | End; 233 | {......................................................................................................................} 234 | 235 | {......................................................................................................................} 236 | Procedure TConverterForm.exitbuttonClick(Sender: TObject); 237 | Begin 238 | Close; 239 | End; 240 | {......................................................................................................................} 241 | 242 | -------------------------------------------------------------------------------- /Altium Designer 2013 PCB Logo Creator/Converter.dfm: -------------------------------------------------------------------------------- 1 | object ConverterForm: TConverterForm 2 | Left = 18 3 | Top = 9 4 | BorderStyle = bsDialog 5 | Caption = 'PCB Logo Creator' 6 | ClientHeight = 236 7 | ClientWidth = 520 8 | Color = clBtnFace 9 | Font.Charset = DEFAULT_CHARSET 10 | Font.Color = clWindowText 11 | Font.Height = -11 12 | Font.Name = 'MS Sans Serif' 13 | Font.Style = [] 14 | OldCreateOrder = False 15 | Position = poScreenCenter 16 | OnCreate = ConverterFormCreate 17 | DesignSize = ( 18 | 520 19 | 236) 20 | PixelsPerInch = 96 21 | TextHeight = 13 22 | object Image1: TImage 23 | Left = 8 24 | Top = 8 25 | Width = 200 26 | Height = 200 27 | Center = True 28 | Proportional = True 29 | Stretch = True 30 | end 31 | object XStatusBar1: TXStatusBar 32 | Left = 0 33 | Top = 211 34 | Width = 520 35 | Height = 25 36 | Enabled = False 37 | Panels = <> 38 | ParentShowHint = False 39 | ShowHint = False 40 | SimplePanel = True 41 | SimpleText = ' Ready...' 42 | SizeGrip = False 43 | end 44 | object XPProgressBar1: TXPProgressBar 45 | Left = 76 46 | Top = 217 47 | Width = 435 48 | Height = 15 49 | Position = 0 50 | Smooth = True 51 | Step = 0 52 | Anchors = [akLeft, akTop, akRight] 53 | TabOrder = 2 54 | end 55 | object GroupBox1: TGroupBox 56 | Left = 215 57 | Top = 5 58 | Width = 209 59 | Height = 201 60 | Caption = ' Converter Options ' 61 | TabOrder = 1 62 | object lImageSize: TLabel 63 | Left = 72 64 | Top = 72 65 | Width = 46 66 | Height = 13 67 | Caption = ' 0 x 0 mils' 68 | end 69 | object ImageSizeLabel: TLabel 70 | Left = 13 71 | Top = 72 72 | Width = 59 73 | Height = 13 74 | Caption = 'Image size : ' 75 | end 76 | object lScalingFactor: TLabel 77 | Left = 13 78 | Top = 101 79 | Width = 77 80 | Height = 13 81 | Caption = 'Scaling Factor : ' 82 | end 83 | object Label2: TLabel 84 | Left = 13 85 | Top = 21 86 | Width = 66 87 | Height = 13 88 | Caption = 'Board Layer : ' 89 | end 90 | object Label1: TLabel 91 | Left = 144 92 | Top = 101 93 | Width = 54 94 | Height = 13 95 | Caption = '(mils/pixels)' 96 | end 97 | object cbNegative: TCheckBox 98 | Left = 13 99 | Top = 127 100 | Width = 97 101 | Height = 21 102 | Caption = 'Negative' 103 | TabOrder = 0 104 | end 105 | object cbMirrorX: TCheckBox 106 | Left = 13 107 | Top = 148 108 | Width = 58 109 | Height = 21 110 | Caption = 'Mirror X' 111 | TabOrder = 1 112 | end 113 | object cbMirrorY: TCheckBox 114 | Left = 13 115 | Top = 169 116 | Width = 56 117 | Height = 21 118 | Caption = 'Mirror Y' 119 | TabOrder = 2 120 | end 121 | object UpDown1: TUpDown 122 | Left = 122 123 | Top = 97 124 | Width = 15 125 | Height = 21 126 | Associate = eScalingFactor 127 | Position = 1 128 | TabOrder = 3 129 | end 130 | object eScalingFactor: TEdit 131 | Left = 91 132 | Top = 97 133 | Width = 31 134 | Height = 21 135 | TabOrder = 4 136 | Text = '1' 137 | OnChange = eScalingFactorChange 138 | end 139 | object ComboBoxLayers: TComboBox 140 | Left = 13 141 | Top = 36 142 | Width = 188 143 | Height = 21 144 | Style = csDropDownList 145 | ItemHeight = 13 146 | TabOrder = 5 147 | end 148 | end 149 | object exitbutton: TButton 150 | Left = 432 151 | Top = 66 152 | Width = 75 153 | Height = 25 154 | Anchors = [akTop, akRight] 155 | Cancel = True 156 | Caption = 'Exit' 157 | TabOrder = 3 158 | OnClick = exitbuttonClick 159 | end 160 | object convertbutton: TButton 161 | Left = 432 162 | Top = 38 163 | Width = 75 164 | Height = 25 165 | Anchors = [akTop, akRight] 166 | Caption = 'Convert' 167 | Enabled = False 168 | TabOrder = 4 169 | OnClick = convertbuttonClick 170 | end 171 | object loadbutton: TButton 172 | Left = 432 173 | Top = 10 174 | Width = 75 175 | Height = 25 176 | Anchors = [akTop, akRight] 177 | Caption = 'Load' 178 | TabOrder = 5 179 | OnClick = loadbuttonClick 180 | end 181 | object OpenPictureDialog1: TOpenPictureDialog 182 | Left = 43 183 | Top = 105 184 | end 185 | end 186 | -------------------------------------------------------------------------------- /Altium Designer 2013 PCB Logo Creator/LayerComboBox.pas: -------------------------------------------------------------------------------- 1 | {......................................................................................................................} 2 | Var gv_ListBoxIndexToLayerArray : TList; 3 | {......................................................................................................................} 4 | 5 | {......................................................................................................................} 6 | Function GetLayerFromComboBox(ComboBox : TComboBox; Board : IPCB_Board) : TLayer; 7 | Begin 8 | Result := eTopLayer; 9 | 10 | If ComboBox.ItemIndex < 0 Then 11 | Exit; 12 | 13 | If ComboBox.ItemIndex >= ComboBox.Items.Count Then 14 | Exit; 15 | 16 | Result := gv_ListBoxIndexToLayerArray.Items(ComboBox.ItemIndex); 17 | End; 18 | {......................................................................................................................} 19 | 20 | {......................................................................................................................} 21 | Procedure SetupComboBoxFromLayer(ComboBox : TComboBox; Board : IPCB_Board); 22 | Var 23 | Layer : TLayer; 24 | LayerObject : IPCB_LayerObject; 25 | LayerIterator : IPCB_LayerObjectIterator; 26 | Begin 27 | gv_ListBoxIndexToLayerArray := TList.Create; 28 | ComboBox.Items.Clear; 29 | 30 | LayerIterator := ILayer.LayerIterator_PossibleLayers; 31 | While LayerIterator.Next Do 32 | Begin 33 | gv_ListBoxIndexToLayerArray.Add(LayerIterator.Layer); 34 | ComboBox.Items.Add(ILayer.AsString(LayerIterator.Layer)); 35 | 36 | If LayerIterator.Layer = Board.CurrentLayer Then 37 | ComboBox.ItemIndex := ComboBox.Items.Count - 1; 38 | End; 39 | End; 40 | {......................................................................................................................} 41 | 42 | -------------------------------------------------------------------------------- /Altium Designer 2013 PCB Logo Creator/PCBLogoCreator.PRJSCR: -------------------------------------------------------------------------------- 1 | [Design] 2 | Version=1.0 3 | HierarchyMode=0 4 | ChannelRoomNamingStyle=0 5 | OutputPath= 6 | LogFolderPath= 7 | ChannelDesignatorFormatString=$Component_$RoomName 8 | ChannelRoomLevelSeperator=_ 9 | OpenOutputs=1 10 | ArchiveProject=0 11 | TimestampOutput=0 12 | SeparateFolders=0 13 | PinSwapBy_Netlabel=1 14 | PinSwapBy_Pin=1 15 | AllowPortNetNames=0 16 | AllowSheetEntryNetNames=1 17 | AppendSheetNumberToLocalNets=0 18 | DefaultConfiguration= 19 | UserID=0xFFFFFFFF 20 | DefaultPcbProtel=1 21 | DefaultPcbPcad=0 22 | ReorderDocumentsOnCompile=1 23 | NameNetsHierarchically=0 24 | PowerPortNamesTakePriority=0 25 | PushECOToAnnotationFile=1 26 | 27 | [Document1] 28 | DocumentPath=Converter.PAS 29 | AnnotationEnabled=1 30 | AnnotateStartValue=1 31 | AnnotationIndexControlEnabled=0 32 | AnnotateSuffix= 33 | AnnotateScope=All 34 | AnnotateOrder=-1 35 | DoLibraryUpdate=1 36 | DoDatabaseUpdate=1 37 | ClassGenCCAutoEnabled=1 38 | ClassGenCCAutoRoomEnabled=1 39 | ClassGenNCAutoScope=None 40 | 41 | [Document2] 42 | DocumentPath=LayerComboBox.pas 43 | AnnotationEnabled=1 44 | AnnotateStartValue=1 45 | AnnotationIndexControlEnabled=0 46 | AnnotateSuffix= 47 | AnnotateScope=All 48 | AnnotateOrder=-1 49 | DoLibraryUpdate=1 50 | DoDatabaseUpdate=1 51 | ClassGenCCAutoEnabled=1 52 | ClassGenCCAutoRoomEnabled=1 53 | ClassGenNCAutoScope=None 54 | 55 | [Generic_ScriptingSystem] 56 | StartProcName=C:\Program Files\Altium2004\Examples\Scripts\Converter.PAS> 57 | 58 | [OutputGroup1] 59 | Name=Netlist Outputs 60 | Description= 61 | TargetPrinter=CutePDF Writer 62 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 63 | OutputType1=EDIF 64 | OutputName1=EDIF for PCB 65 | OutputDocumentPath1= 66 | OutputVariantName1= 67 | OutputDefault1=0 68 | OutputType2=MultiWire 69 | OutputName2=MultiWire 70 | OutputDocumentPath2= 71 | OutputVariantName2= 72 | OutputDefault2=0 73 | OutputType3=Pcad 74 | OutputName3=Pcad for PCB 75 | OutputDocumentPath3= 76 | OutputVariantName3= 77 | OutputDefault3=0 78 | OutputType4=ProtelNetlist 79 | OutputName4=Protel 80 | OutputDocumentPath4= 81 | OutputVariantName4= 82 | OutputDefault4=0 83 | OutputType5=VHDL 84 | OutputName5=VHDL File 85 | OutputDocumentPath5= 86 | OutputVariantName5= 87 | OutputDefault5=0 88 | OutputType6=XSpiceNetlist 89 | OutputName6=XSpice Netlist 90 | OutputDocumentPath6= 91 | OutputVariantName6= 92 | OutputDefault6=0 93 | OutputType7=Verilog 94 | OutputName7=Verilog File 95 | OutputDocumentPath7= 96 | OutputVariantName7= 97 | OutputDefault7=0 98 | OutputType8=CadnetixNetlist 99 | OutputName8=Cadnetix Netlist 100 | OutputDocumentPath8= 101 | OutputVariantName8= 102 | OutputDefault8=0 103 | OutputType9=CalayNetlist 104 | OutputName9=Calay Netlist 105 | OutputDocumentPath9= 106 | OutputVariantName9= 107 | OutputDefault9=0 108 | OutputType10=EESofNetlist 109 | OutputName10=EESof Netlist 110 | OutputDocumentPath10= 111 | OutputVariantName10= 112 | OutputDefault10=0 113 | OutputType11=IntergraphNetlist 114 | OutputName11=Intergraph Netlist 115 | OutputDocumentPath11= 116 | OutputVariantName11= 117 | OutputDefault11=0 118 | OutputType12=MentorBoardStationNetlist 119 | OutputName12=Mentor BoardStation Netlist 120 | OutputDocumentPath12= 121 | OutputVariantName12= 122 | OutputDefault12=0 123 | OutputType13=OrCadPCB2Netlist 124 | OutputName13=Orcad/PCB2 Netlist 125 | OutputDocumentPath13= 126 | OutputVariantName13= 127 | OutputDefault13=0 128 | OutputType14=PADSNetlist 129 | OutputName14=PADS ASCII Netlist 130 | OutputDocumentPath14= 131 | OutputVariantName14= 132 | OutputDefault14=0 133 | OutputType15=PCADNetlist 134 | OutputName15=PCAD Netlist 135 | OutputDocumentPath15= 136 | OutputVariantName15= 137 | OutputDefault15=0 138 | OutputType16=PCADnltNetlist 139 | OutputName16=PCADnlt Netlist 140 | OutputDocumentPath16= 141 | OutputVariantName16= 142 | OutputDefault16=0 143 | OutputType17=Protel2Netlist 144 | OutputName17=Protel2 Netlist 145 | OutputDocumentPath17= 146 | OutputVariantName17= 147 | OutputDefault17=0 148 | OutputType18=RacalNetlist 149 | OutputName18=Racal Netlist 150 | OutputDocumentPath18= 151 | OutputVariantName18= 152 | OutputDefault18=0 153 | OutputType19=RINFNetlist 154 | OutputName19=RINF Netlist 155 | OutputDocumentPath19= 156 | OutputVariantName19= 157 | OutputDefault19=0 158 | OutputType20=SciCardsNetlist 159 | OutputName20=SciCards Netlist 160 | OutputDocumentPath20= 161 | OutputVariantName20= 162 | OutputDefault20=0 163 | OutputType21=SIMetrixNetlist 164 | OutputName21=SIMetrix 165 | OutputDocumentPath21= 166 | OutputVariantName21= 167 | OutputDefault21=0 168 | OutputType22=SIMPLISNetlist 169 | OutputName22=SIMPLIS 170 | OutputDocumentPath22= 171 | OutputVariantName22= 172 | OutputDefault22=0 173 | OutputType23=TangoNetlist 174 | OutputName23=Tango Netlist 175 | OutputDocumentPath23= 176 | OutputVariantName23= 177 | OutputDefault23=0 178 | OutputType24=TelesisNetlist 179 | OutputName24=Telesis Netlist 180 | OutputDocumentPath24= 181 | OutputVariantName24= 182 | OutputDefault24=0 183 | OutputType25=WireListNetlist 184 | OutputName25=WireList Netlist 185 | OutputDocumentPath25= 186 | OutputVariantName25= 187 | OutputDefault25=0 188 | 189 | [OutputGroup2] 190 | Name=Simulator Outputs 191 | Description= 192 | TargetPrinter=CutePDF Writer 193 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 194 | OutputType1=AdvSimNetlist 195 | OutputName1=Mixed Sim 196 | OutputDocumentPath1= 197 | OutputVariantName1= 198 | OutputDefault1=0 199 | OutputType2=SIMetrix_Sim 200 | OutputName2=SIMetrix 201 | OutputDocumentPath2= 202 | OutputVariantName2= 203 | OutputDefault2=0 204 | OutputType3=SIMPLIS_Sim 205 | OutputName3=SIMPLIS 206 | OutputDocumentPath3= 207 | OutputVariantName3= 208 | OutputDefault3=0 209 | 210 | [OutputGroup3] 211 | Name=Documentation Outputs 212 | Description= 213 | TargetPrinter=CutePDF Writer 214 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 215 | OutputType1=Composite 216 | OutputName1=Composite Drawing 217 | OutputDocumentPath1= 218 | OutputVariantName1= 219 | OutputDefault1=0 220 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 221 | OutputType2=Logic Analyser Print 222 | OutputName2=Logic Analyser Prints 223 | OutputDocumentPath2= 224 | OutputVariantName2= 225 | OutputDefault2=0 226 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 227 | OutputType3=PCB Print 228 | OutputName3=PCB Prints 229 | OutputDocumentPath3= 230 | OutputVariantName3= 231 | OutputDefault3=0 232 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 233 | OutputType4=Schematic Print 234 | OutputName4=Schematic Prints 235 | OutputDocumentPath4= 236 | OutputVariantName4= 237 | OutputDefault4=0 238 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 239 | OutputType5=Wave Print 240 | OutputName5=Wave Prints 241 | OutputDocumentPath5= 242 | OutputVariantName5= 243 | OutputDefault5=0 244 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 245 | OutputType6=SimView Print 246 | OutputName6=SimView Prints 247 | OutputDocumentPath6= 248 | OutputVariantName6= 249 | OutputDefault6=0 250 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 251 | OutputType7=OpenBus Print 252 | OutputName7=OpenBus Prints 253 | OutputDocumentPath7= 254 | OutputVariantName7= 255 | OutputDefault7=0 256 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 257 | OutputType8=PCB 3D Print 258 | OutputName8=PCB 3D Prints 259 | OutputDocumentPath8= 260 | OutputVariantName8= 261 | OutputDefault8=0 262 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 263 | OutputType9=WaveSim Print 264 | OutputName9=WaveSim Prints 265 | OutputDocumentPath9= 266 | OutputVariantName9= 267 | OutputDefault9=0 268 | PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 269 | 270 | [OutputGroup4] 271 | Name=Assembly Outputs 272 | Description= 273 | TargetPrinter=CutePDF Writer 274 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 275 | OutputType1=Assembly 276 | OutputName1=Assembly Drawings 277 | OutputDocumentPath1= 278 | OutputVariantName1= 279 | OutputDefault1=0 280 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 281 | OutputType2=Pick Place 282 | OutputName2=Generates pick and place files 283 | OutputDocumentPath2= 284 | OutputVariantName2= 285 | OutputDefault2=0 286 | 287 | [OutputGroup5] 288 | Name=Fabrication Outputs 289 | Description= 290 | TargetPrinter=CutePDF Writer 291 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 292 | OutputType1=CompositeDrill 293 | OutputName1=Composite Drill Drawing 294 | OutputDocumentPath1= 295 | OutputVariantName1= 296 | OutputDefault1=0 297 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 298 | OutputType2=Drill 299 | OutputName2=Drill Drawing/Guides 300 | OutputDocumentPath2= 301 | OutputVariantName2= 302 | OutputDefault2=0 303 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 304 | OutputType3=Final 305 | OutputName3=Final Artwork Prints 306 | OutputDocumentPath3= 307 | OutputVariantName3= 308 | OutputDefault3=0 309 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 310 | OutputType4=Gerber 311 | OutputName4=Gerber Files 312 | OutputDocumentPath4= 313 | OutputVariantName4= 314 | OutputDefault4=0 315 | OutputType5=Mask 316 | OutputName5=Solder/Paste Mask Prints 317 | OutputDocumentPath5= 318 | OutputVariantName5= 319 | OutputDefault5=0 320 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 321 | OutputType6=NC Drill 322 | OutputName6=NC Drill Files 323 | OutputDocumentPath6= 324 | OutputVariantName6= 325 | OutputDefault6=0 326 | OutputType7=ODB 327 | OutputName7=ODB++ Files 328 | OutputDocumentPath7= 329 | OutputVariantName7= 330 | OutputDefault7=0 331 | OutputType8=Plane 332 | OutputName8=Power-Plane Prints 333 | OutputDocumentPath8= 334 | OutputVariantName8= 335 | OutputDefault8=0 336 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 337 | OutputType9=Test Points 338 | OutputName9=Test Point Report 339 | OutputDocumentPath9= 340 | OutputVariantName9= 341 | OutputDefault9=0 342 | 343 | [OutputGroup6] 344 | Name=Report Outputs 345 | Description= 346 | TargetPrinter=CutePDF Writer 347 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 348 | OutputType1=BOM_PartType 349 | OutputName1=Bill of Materials 350 | OutputDocumentPath1= 351 | OutputVariantName1= 352 | OutputDefault1=0 353 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 354 | OutputType2=ComponentCrossReference 355 | OutputName2=Component Cross Reference Report 356 | OutputDocumentPath2= 357 | OutputVariantName2= 358 | OutputDefault2=0 359 | OutputType3=ReportHierarchy 360 | OutputName3=Report Project Hierarchy 361 | OutputDocumentPath3= 362 | OutputVariantName3= 363 | OutputDefault3=0 364 | OutputType4=SimpleBOM 365 | OutputName4=Simple BOM 366 | OutputDocumentPath4= 367 | OutputVariantName4= 368 | OutputDefault4=0 369 | OutputType5=SinglePinNetReporter 370 | OutputName5=Report Single Pin Nets 371 | OutputDocumentPath5= 372 | OutputVariantName5= 373 | OutputDefault5=0 374 | OutputType6=Design Rules Check 375 | OutputName6=Design Rules Check 376 | OutputDocumentPath6= 377 | OutputVariantName6= 378 | OutputDefault6=0 379 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 380 | OutputType7=Electrical Rules Check 381 | OutputName7=Electrical Rules Check 382 | OutputDocumentPath7= 383 | OutputVariantName7= 384 | OutputDefault7=0 385 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 386 | OutputType8=Script 387 | OutputName8=Script Output 388 | OutputDocumentPath8= 389 | OutputVariantName8= 390 | OutputDefault8=0 391 | 392 | [OutputGroup7] 393 | Name=Other Outputs 394 | Description= 395 | TargetPrinter=CutePDF Writer 396 | PrinterOptions=Record=PrinterOptions|Copies=1|Duplex=1|TrueTypeOptions=3|Collate=1|PrintWhat=1 397 | OutputType1=Text Print 398 | OutputName1=Text Print 399 | OutputDocumentPath1= 400 | OutputVariantName1= 401 | OutputDefault1=0 402 | PageOptions1=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 403 | OutputType2=Text Print 404 | OutputName2=Text Print 405 | OutputDocumentPath2= 406 | OutputVariantName2= 407 | OutputDefault2=0 408 | PageOptions2=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 409 | OutputType3=Text Print 410 | OutputName3=Text Print 411 | OutputDocumentPath3= 412 | OutputVariantName3= 413 | OutputDefault3=0 414 | PageOptions3=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 415 | OutputType4=Text Print 416 | OutputName4=Text Print 417 | OutputDocumentPath4= 418 | OutputVariantName4= 419 | OutputDefault4=0 420 | PageOptions4=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 421 | OutputType5=Text Print 422 | OutputName5=Text Print 423 | OutputDocumentPath5= 424 | OutputVariantName5= 425 | OutputDefault5=0 426 | PageOptions5=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 427 | OutputType6=Text Print 428 | OutputName6=Text Print 429 | OutputDocumentPath6= 430 | OutputVariantName6= 431 | OutputDefault6=0 432 | PageOptions6=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 433 | OutputType7=Text Print 434 | OutputName7=Text Print 435 | OutputDocumentPath7= 436 | OutputVariantName7= 437 | OutputDefault7=0 438 | PageOptions7=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 439 | OutputType8=Text Print 440 | OutputName8=Text Print 441 | OutputDocumentPath8= 442 | OutputVariantName8= 443 | OutputDefault8=0 444 | PageOptions8=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 445 | OutputType9=Text Print 446 | OutputName9=Text Print 447 | OutputDocumentPath9= 448 | OutputVariantName9= 449 | OutputDefault9=0 450 | PageOptions9=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 451 | OutputType10=Text Print 452 | OutputName10=Text Print 453 | OutputDocumentPath10= 454 | OutputVariantName10= 455 | OutputDefault10=0 456 | PageOptions10=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 457 | OutputType11=Text Print 458 | OutputName11=Text Print 459 | OutputDocumentPath11= 460 | OutputVariantName11= 461 | OutputDefault11=0 462 | PageOptions11=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 463 | OutputType12=Text Print 464 | OutputName12=Text Print 465 | OutputDocumentPath12= 466 | OutputVariantName12= 467 | OutputDefault12=0 468 | PageOptions12=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 469 | OutputType13=Text Print 470 | OutputName13=Text Print 471 | OutputDocumentPath13= 472 | OutputVariantName13= 473 | OutputDefault13=0 474 | PageOptions13=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 475 | OutputType14=Text Print 476 | OutputName14=Text Print 477 | OutputDocumentPath14= 478 | OutputVariantName14= 479 | OutputDefault14=0 480 | PageOptions14=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 481 | OutputType15=Text Print 482 | OutputName15=Text Print 483 | OutputDocumentPath15= 484 | OutputVariantName15= 485 | OutputDefault15=0 486 | PageOptions15=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 487 | OutputType16=Text Print 488 | OutputName16=Text Print 489 | OutputDocumentPath16= 490 | OutputVariantName16= 491 | OutputDefault16=0 492 | PageOptions16=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 493 | OutputType17=Text Print 494 | OutputName17=Text Print 495 | OutputDocumentPath17= 496 | OutputVariantName17= 497 | OutputDefault17=0 498 | PageOptions17=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 499 | OutputType18=Text Print 500 | OutputName18=Text Print 501 | OutputDocumentPath18= 502 | OutputVariantName18= 503 | OutputDefault18=0 504 | PageOptions18=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 505 | OutputType19=Text Print 506 | OutputName19=Text Print 507 | OutputDocumentPath19= 508 | OutputVariantName19= 509 | OutputDefault19=0 510 | PageOptions19=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 511 | OutputType20=Text Print 512 | OutputName20=Text Print 513 | OutputDocumentPath20= 514 | OutputVariantName20= 515 | OutputDefault20=0 516 | PageOptions20=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 517 | OutputType21=Text Print 518 | OutputName21=Text Print 519 | OutputDocumentPath21= 520 | OutputVariantName21= 521 | OutputDefault21=0 522 | PageOptions21=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 523 | OutputType22=Text Print 524 | OutputName22=Text Print 525 | OutputDocumentPath22= 526 | OutputVariantName22= 527 | OutputDefault22=0 528 | PageOptions22=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 529 | OutputType23=Text Print 530 | OutputName23=Text Print 531 | OutputDocumentPath23= 532 | OutputVariantName23= 533 | OutputDefault23=0 534 | PageOptions23=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 535 | OutputType24=Text Print 536 | OutputName24=Text Print 537 | OutputDocumentPath24= 538 | OutputVariantName24= 539 | OutputDefault24=0 540 | PageOptions24=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 541 | OutputType25=Text Print 542 | OutputName25=Text Print 543 | OutputDocumentPath25= 544 | OutputVariantName25= 545 | OutputDefault25=0 546 | PageOptions25=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 547 | OutputType26=Text Print 548 | OutputName26=Text Print 549 | OutputDocumentPath26= 550 | OutputVariantName26= 551 | OutputDefault26=0 552 | PageOptions26=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 553 | OutputType27=Text Print 554 | OutputName27=Text Print 555 | OutputDocumentPath27= 556 | OutputVariantName27= 557 | OutputDefault27=0 558 | PageOptions27=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 559 | 560 | [Modification Levels] 561 | Type1=1 562 | Type2=1 563 | Type3=1 564 | Type4=1 565 | Type5=1 566 | Type6=1 567 | Type7=1 568 | Type8=1 569 | Type9=1 570 | Type10=1 571 | Type11=1 572 | Type12=1 573 | Type13=1 574 | Type14=1 575 | Type15=1 576 | Type16=1 577 | Type17=1 578 | Type18=1 579 | Type19=1 580 | Type20=1 581 | Type21=1 582 | Type22=1 583 | Type23=1 584 | Type24=1 585 | Type25=1 586 | Type26=1 587 | Type27=1 588 | Type28=1 589 | Type29=1 590 | Type30=1 591 | Type31=1 592 | Type32=1 593 | Type33=1 594 | Type34=1 595 | Type35=1 596 | Type36=1 597 | Type37=1 598 | Type38=1 599 | Type39=1 600 | Type40=1 601 | Type41=1 602 | Type42=1 603 | Type43=1 604 | Type44=1 605 | Type45=1 606 | Type46=1 607 | Type47=1 608 | Type48=1 609 | Type49=1 610 | Type50=1 611 | Type51=1 612 | Type52=1 613 | Type53=1 614 | Type54=1 615 | Type55=1 616 | Type56=1 617 | Type57=1 618 | Type58=1 619 | Type59=1 620 | Type60=1 621 | Type61=1 622 | Type62=1 623 | Type63=1 624 | Type64=1 625 | Type65=1 626 | Type66=1 627 | 628 | [Difference Levels] 629 | Type1=1 630 | Type2=1 631 | Type3=1 632 | Type4=1 633 | Type5=1 634 | Type6=1 635 | Type7=1 636 | Type8=1 637 | Type9=1 638 | Type10=1 639 | Type11=1 640 | Type12=1 641 | Type13=1 642 | Type14=1 643 | Type15=1 644 | Type16=1 645 | Type17=1 646 | Type18=1 647 | Type19=1 648 | Type20=1 649 | Type21=1 650 | Type22=1 651 | Type23=1 652 | Type24=1 653 | Type25=1 654 | Type26=1 655 | Type27=1 656 | Type28=1 657 | Type29=1 658 | Type30=1 659 | Type31=1 660 | Type32=1 661 | Type33=1 662 | Type34=1 663 | 664 | [Electrical Rules Check] 665 | Type1=1 666 | Type2=1 667 | Type3=2 668 | Type4=1 669 | Type5=2 670 | Type6=2 671 | Type7=1 672 | Type8=1 673 | Type9=1 674 | Type10=1 675 | Type11=2 676 | Type12=2 677 | Type13=2 678 | Type14=1 679 | Type15=1 680 | Type16=1 681 | Type17=1 682 | Type18=1 683 | Type19=1 684 | Type20=1 685 | Type21=1 686 | Type22=1 687 | Type23=1 688 | Type24=1 689 | Type25=2 690 | Type26=2 691 | Type27=2 692 | Type28=1 693 | Type29=1 694 | Type30=1 695 | Type31=1 696 | Type32=2 697 | Type33=2 698 | Type34=2 699 | Type35=1 700 | Type36=2 701 | Type37=1 702 | Type38=2 703 | Type39=2 704 | Type40=2 705 | Type41=0 706 | Type42=2 707 | Type43=1 708 | Type44=1 709 | Type45=2 710 | Type46=1 711 | Type47=2 712 | Type48=2 713 | Type49=1 714 | Type50=2 715 | Type51=1 716 | Type52=1 717 | Type53=1 718 | Type54=1 719 | Type55=1 720 | Type56=2 721 | Type57=1 722 | Type58=1 723 | Type59=0 724 | Type60=1 725 | Type61=2 726 | Type62=2 727 | Type63=1 728 | Type64=0 729 | Type65=2 730 | Type66=3 731 | Type67=2 732 | Type68=2 733 | Type69=1 734 | Type70=2 735 | Type71=2 736 | Type72=2 737 | Type73=2 738 | Type74=1 739 | Type75=2 740 | Type76=1 741 | Type77=1 742 | Type78=1 743 | Type79=1 744 | Type80=2 745 | Type81=3 746 | Type82=3 747 | Type83=3 748 | Type84=3 749 | Type85=3 750 | Type86=2 751 | Type87=2 752 | Type88=2 753 | Type89=1 754 | Type90=1 755 | Type91=3 756 | Type92=3 757 | Type93=2 758 | Type94=2 759 | Type95=2 760 | Type96=2 761 | Type97=2 762 | Type98=0 763 | 764 | [ERC Connection Matrix] 765 | L1=NNNNNNNNNNNWNNNWW 766 | L2=NNWNNNNWWWNWNWNWN 767 | L3=NWEENEEEENEWNEEWN 768 | L4=NNENNNWEENNWNENWN 769 | L5=NNNNNNNNNNNNNNNNN 770 | L6=NNENNNNEENNWNENWN 771 | L7=NNEWNNWEENNWNENWN 772 | L8=NWEENEENEEENNEENN 773 | L9=NWEENEEEENEWNEEWW 774 | L10=NWNNNNNENNEWNNEWN 775 | L11=NNENNNNEEENWNENWN 776 | L12=WWWWNWWNWWWNWWWNN 777 | L13=NNNNNNNNNNNWNNNWW 778 | L14=NWEENEEEENEWNEEWW 779 | L15=NNENNNNEEENWNENWW 780 | L16=WWWWNWWNWWWNWWWNW 781 | L17=WNNNNNNNWNNNWWWWN 782 | 783 | [Annotate] 784 | SortOrder=3 785 | MatchParameter1=Comment 786 | MatchStrictly1=1 787 | MatchParameter2=Library Reference 788 | MatchStrictly2=1 789 | PhysicalNamingFormat=$Component_$RoomName 790 | GlobalIndexSortOrder=3 791 | 792 | [PrjClassGen] 793 | CompClassManualEnabled=0 794 | CompClassManualRoomEnabled=0 795 | NetClassAutoBusEnabled=1 796 | NetClassAutoCompEnabled=0 797 | NetClassAutoNamedHarnessEnabled=0 798 | NetClassManualEnabled=0 799 | 800 | [LibraryUpdateOptions] 801 | SelectedOnly=0 802 | PartTypes=0 803 | FullReplace=1 804 | UpdateDesignatorLock=1 805 | UpdatePartIDLock=1 806 | DoGraphics=1 807 | DoParameters=1 808 | DoModels=1 809 | AddParameters=0 810 | RemoveParameters=0 811 | AddModels=1 812 | RemoveModels=1 813 | UpdateCurrentModels=1 814 | 815 | [DatabaseUpdateOptions] 816 | SelectedOnly=0 817 | PartTypes=0 818 | 819 | [Comparison Options] 820 | ComparisonOptions0=Kind=Net|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 821 | ComparisonOptions1=Kind=Net Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 822 | ComparisonOptions2=Kind=Component Class|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 823 | ComparisonOptions3=Kind=Rule|MinPercent=75|MinMatch=3|ShowMatch=-1|Confirm=-1|UseName=-1|InclAllRules=0 824 | ComparisonOptions4=Kind=Differential Pair|MinPercent=50|MinMatch=1|ShowMatch=0|Confirm=0|UseName=0|InclAllRules=0 825 | 826 | [SmartPDF] 827 | PageOptions=Record=PageOptions|CenterHorizontal=True|CenterVertical=True|PrintScale=1.00|XCorrection=1.00|YCorrection=1.00|PrintKind=1|BorderSize=5000000|LeftOffset=0|BottomOffset=0|Orientation=2|PaperLength=1000|PaperWidth=1000|Scale=100|PaperSource=7|PrintQuality=-4|MediaType=1|DitherType=10|PaperKind=A4|PrintScaleMode=1 828 | 829 | -------------------------------------------------------------------------------- /Altium Designer 2013 PCB Logo Creator/altiumlogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/Altium Designer 2013 PCB Logo Creator/altiumlogo.bmp -------------------------------------------------------------------------------- /Altium Designer 2013 PCB Logo Creator/ddd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/Altium Designer 2013 PCB Logo Creator/ddd.bmp -------------------------------------------------------------------------------- /Altium Designer 2013 PCB Logo Creator/test1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/Altium Designer 2013 PCB Logo Creator/test1.bmp -------------------------------------------------------------------------------- /Altium Designer 2013 PCB Logo Creator/test2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/Altium Designer 2013 PCB Logo Creator/test2.bmp -------------------------------------------------------------------------------- /Image2Lcd/Image2Lcd 安装程序.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/Image2Lcd/Image2Lcd 安装程序.exe -------------------------------------------------------------------------------- /Image2Lcd/Image2Lcd+KeyGen 注册软件/Image2Lcd KeyGen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/Image2Lcd/Image2Lcd+KeyGen 注册软件/Image2Lcd KeyGen.exe -------------------------------------------------------------------------------- /Image2Lcd/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/Image2Lcd/说明.txt -------------------------------------------------------------------------------- /LCD点阵提取工具/LCD点阵提取工具zimo221.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/LCD点阵提取工具/LCD点阵提取工具zimo221.EXE -------------------------------------------------------------------------------- /PCtoLCD2002完美版 12864编辑器/PCtoLCD2002完美版 12864编辑器.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/PCtoLCD2002完美版 12864编辑器/PCtoLCD2002完美版 12864编辑器.rar -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PineconePi工具箱([点我进入官网](http://www.pineconepi.cn)) 2 | 3 | ### **目录结构** 4 | 5 | 1. Altium Designer 2013 PCB Logo Creator: Altium Designer logo图形生成脚本 6 | 7 | -------------------------------------------------------------------------------- /串口调试助手/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/串口调试助手/readme.txt -------------------------------------------------------------------------------- /串口调试助手/串口调试助手V1.5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/串口调试助手/串口调试助手V1.5.exe -------------------------------------------------------------------------------- /串口调试助手/串口调试助手(丁丁)/sscom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/串口调试助手/串口调试助手(丁丁)/sscom.ini -------------------------------------------------------------------------------- /串口调试助手/串口调试助手(丁丁)/sscom33.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/串口调试助手/串口调试助手(丁丁)/sscom33.exe -------------------------------------------------------------------------------- /取模软件/ASC.PTL: -------------------------------------------------------------------------------- 1 |  2 |  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ -------------------------------------------------------------------------------- /取模软件/Gb2312.PTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/取模软件/Gb2312.PTL -------------------------------------------------------------------------------- /取模软件/PCtoLCD.INI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/取模软件/PCtoLCD.INI -------------------------------------------------------------------------------- /取模软件/PCtoLCD.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/取模软件/PCtoLCD.exe -------------------------------------------------------------------------------- /取模软件/PCtoLCD2002.INI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/取模软件/PCtoLCD2002.INI -------------------------------------------------------------------------------- /取模软件/RTL60.BPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/取模软件/RTL60.BPL -------------------------------------------------------------------------------- /取模软件/VCL60.BPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/取模软件/VCL60.BPL -------------------------------------------------------------------------------- /取模软件/_index.TXT: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /取模软件/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/取模软件/notice.txt -------------------------------------------------------------------------------- /取模软件/readme2002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/取模软件/readme2002.txt -------------------------------------------------------------------------------- /取模软件/shuzi.TXT: -------------------------------------------------------------------------------- 1 | 0(0) 1(1) 2(2) 3(3) 4(4) 5(5) 6(6) 7(7) 8(8) 9(9) 2 | 3 | {0x00,0xE0,0xF0,0x18,0x08,0x18,0xF0,0xE0,0x00,0x0F,0x1F,0x30,0x20,0x30,0x1F,0x0F},/*"0",0*/ 4 | 5 | {0x00,0x10,0x10,0xF8,0xF8,0x00,0x00,0x00,0x00,0x20,0x20,0x3F,0x3F,0x20,0x20,0x00},/*"1",1*/ 6 | 7 | {0x00,0x70,0x78,0x08,0x08,0x88,0xF8,0x70,0x00,0x30,0x38,0x2C,0x26,0x23,0x31,0x30},/*"2",2*/ 8 | 9 | {0x00,0x30,0x38,0x88,0x88,0xC8,0x78,0x30,0x00,0x18,0x38,0x20,0x20,0x31,0x1F,0x0E},/*"3",3*/ 10 | 11 | {0x00,0x00,0xC0,0xE0,0x30,0xF8,0xF8,0x00,0x00,0x07,0x07,0x24,0x24,0x3F,0x3F,0x24},/*"4",4*/ 12 | 13 | {0x00,0xF8,0xF8,0x88,0x88,0x88,0x08,0x08,0x00,0x19,0x39,0x21,0x20,0x31,0x1F,0x0E},/*"5",5*/ 14 | 15 | {0x00,0xE0,0xF0,0x98,0x88,0x98,0x18,0x00,0x00,0x0F,0x1F,0x31,0x20,0x31,0x1F,0x0E},/*"6",6*/ 16 | 17 | {0x00,0x38,0x38,0x08,0xC8,0xF8,0x38,0x08,0x00,0x00,0x00,0x3F,0x3F,0x00,0x00,0x00},/*"7",7*/ 18 | 19 | {0x00,0x70,0xF8,0x88,0x08,0x88,0xF8,0x70,0x00,0x1C,0x3E,0x23,0x21,0x23,0x3E,0x1C},/*"8",8*/ 20 | 21 | {0x00,0xE0,0xF0,0x18,0x08,0x18,0xF0,0xE0,0x00,0x00,0x31,0x33,0x22,0x33,0x1F,0x0F},/*"9",9*/ 22 | 23 | 24 | -------------------------------------------------------------------------------- /取模软件/shuzi.TXT_index.TXT: -------------------------------------------------------------------------------- 1 | 0(0) 1(1) 2(2) 3(3) 4(4) 5(5) 6(6) 7(7) 8(8) 9(9) 2 | -------------------------------------------------------------------------------- /字库制作软件/DSET.ini: -------------------------------------------------------------------------------- 1 | [Set] 2 | width=16 3 | height=16 4 | rad=5 5 | HW=1 6 | BM=4 7 | -------------------------------------------------------------------------------- /字库制作软件/qtintf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/字库制作软件/qtintf.dll -------------------------------------------------------------------------------- /字库制作软件/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/字库制作软件/readme.txt -------------------------------------------------------------------------------- /字库制作软件/register.ini: -------------------------------------------------------------------------------- 1 | [register] 2 | name=unregister 3 | sn=WEXUX-D-VAC--WBCX-UOSG 4 | -------------------------------------------------------------------------------- /字库制作软件/ts3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/字库制作软件/ts3.exe -------------------------------------------------------------------------------- /字库制作软件/ts3/register.ini: -------------------------------------------------------------------------------- 1 | [register] 2 | name=unregister 3 | sn=WEXUX-D-VAC--WBCX-UOSG 4 | -------------------------------------------------------------------------------- /字库制作软件/ts3/ts3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/字库制作软件/ts3/ts3.exe -------------------------------------------------------------------------------- /字库制作软件/多国文字点阵字库生成器 3.8 注册机.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/字库制作软件/多国文字点阵字库生成器 3.8 注册机.rar -------------------------------------------------------------------------------- /字库制作软件/点阵字库生成器使用说明.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/字库制作软件/点阵字库生成器使用说明.pdf -------------------------------------------------------------------------------- /屏幕颜色获取软件/ColorPix.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/屏幕颜色获取软件/ColorPix.exe -------------------------------------------------------------------------------- /屏幕颜色获取软件/cPix.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | X=57 3 | Y=358 4 | onTop=1 5 | [Magnifier] 6 | Zoom=4 7 | ShowMag=1 8 | [Options] 9 | MinTray=0 10 | RunStartup=0 11 | -------------------------------------------------------------------------------- /汉字内码查询 反查询/汉字内码查询.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PineconePi/PineconePi_ToolBox/50e846e9d1ce0adda9aca63531a35c92b046ee69/汉字内码查询 反查询/汉字内码查询.exe --------------------------------------------------------------------------------